コード例 #1
0
        public async Task EnsuresNonEmptyArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            await Assert.ThrowsAsync<ArgumentException>(() => client.Create("", "name", newDeployment));
            await Assert.ThrowsAsync<ArgumentException>(() => client.Create("owner", "", newDeployment));
        }
コード例 #2
0
        public void EnsuresNonNullArguments()
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            AssertEx.Throws<ArgumentNullException>(() => client.Create(null, "name", newDeployment));
            AssertEx.Throws<ArgumentNullException>(() => client.Create("owner", null, newDeployment));
            AssertEx.Throws<ArgumentNullException>(() => client.Create("owner", "name", null));
        }
コード例 #3
0
        public void UsesPreviewAcceptsHeader()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);

            client.Create("owner", "name", newDeployment);
            connection.Received().Post<Deployment>(Arg.Any<Uri>(),
                                                      Arg.Any<NewDeployment>(),
                                                      Arg.Is(ExpectedAcceptHeader));
        }
コード例 #4
0
        public void PassesNewDeploymentRequest()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Any<Uri>(),
                                                    newDeployment,
                                                    Arg.Any<string>());
        }
コード例 #5
0
        public void PostsToDeploymentsUrl()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = "repos/owner/name/deployments";

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl),
                                                    Arg.Any<NewDeployment>(),
                                                    Arg.Any<string>());
        }
コード例 #6
0
        public void EnsuresNonWhitespaceArguments(string whitespace)
        {
            var client = new DeploymentsClient(Substitute.For<IApiConnection>());

            Assert.Throws<ArgumentException>(() => client.Create(whitespace, "name", newDeployment));
            Assert.Throws<ArgumentException>(() => client.Create("owner", whitespace, newDeployment));
        }
コード例 #7
0
        public void SendsPreviewAcceptHeaders()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Any<Uri>(),
                                                    Arg.Any<NewDeployment>(),
                                                    Arg.Is<string>(s => s == AcceptHeaders.DeploymentApiPreview));
        }
コード例 #8
0
        public void PostsToDeploymentsUrlWithRepositoryId()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = "repositories/1/deployments";

            client.Create(1, newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(uri => uri.ToString() == expectedUrl),
                                                    newDeployment);
        }
コード例 #9
0
        public void PostsToDeploymentsUrl()
        {
            var connection = Substitute.For<IApiConnection>();
            var client = new DeploymentsClient(connection);
            var expectedUrl = "repos/owner/name/deployments";

            client.Create("owner", "name", newDeployment);

            connection.Received(1).Post<Deployment>(Arg.Is<Uri>(u => u.ToString() == expectedUrl),
                                                    newDeployment,
                                                    "application/vnd.github.ant-man-preview+json");
        }