コード例 #1
0
        public void TestGetServer_ForEmptyAccount_ReturnsNullObject()
        {
            var tpcFactory      = Substitute.For <ITfProjectCollectionFactory>();
            var systemUnderTest = new TfProjectCollectionCache(tpcFactory);

            var tpc = systemUnderTest.GetProjectCollection("");

            Assert.That(tpc, Is.InstanceOf <NullTeamProjectCollection>());
            tpcFactory.DidNotReceive().Create(Arg.Any <string>());
        }
コード例 #2
0
        public void TestGetServer_ForAccountNotInCache_CallsServerFactoryWithUri()
        {
            const string vstsAccount     = "vsts";
            var          serverUri       = VstsServerURL.GetVstsServerURL(vstsAccount);
            var          tpcFactory      = Substitute.For <ITfProjectCollectionFactory>();
            var          systemUnderTest = new TfProjectCollectionCache(tpcFactory);

            systemUnderTest.GetProjectCollection(vstsAccount);

            tpcFactory.Received().Create(serverUri);
        }
コード例 #3
0
        public void TestGetServer_ForAccountInCache_DoesNotCallServerFactory()
        {
            const string vstsAccount       = "test-account";
            var          expectedServerUrl = VstsServerURL.GetVstsServerURL(vstsAccount);
            var          tpcFactory        = Substitute.For <ITfProjectCollectionFactory>();
            var          systemUnderTest   = new TfProjectCollectionCache(tpcFactory);

            systemUnderTest.GetProjectCollection(vstsAccount);
            // Check that the factory was called once by now...
            tpcFactory.Received().Create(expectedServerUrl);
            Assert.That(tpcFactory.ReceivedCalls().Count(), Is.EqualTo(1));

            systemUnderTest.GetProjectCollection(vstsAccount);

            Assert.That(tpcFactory.ReceivedCalls().Count(), Is.EqualTo(1));
        }
コード例 #4
0
        public void TestGetServer_ForAccountInCache_ReturnsCachedValue()
        {
            const string vstsAccount = "omnipave";
            var          serverUri   = VstsServerURL.GetVstsServerURL(vstsAccount);
            var          tpcFactory  = Substitute.For <ITfProjectCollectionFactory>();
            var          expected    = Substitute.For <ITfProjectCollection>();

            tpcFactory.Create(serverUri).Returns(expected);
            var systemUnderTest = new TfProjectCollectionCache(tpcFactory);

            systemUnderTest.GetProjectCollection(vstsAccount);
            // Check that the factory was called once by now...
            tpcFactory.Received().Create(serverUri);
            Assert.That(tpcFactory.ReceivedCalls().Count(), Is.EqualTo(1));

            var actual = systemUnderTest.GetProjectCollection(vstsAccount);

            Assert.That(actual, Is.EqualTo(expected));
        }