Пример #1
0
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                // When
                fixture.Publish();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "publish -u \"bob\" -p \"password\" -o \"repoOwner\" -r \"repo\" -t \"0.1.0\""));
            }
Пример #2
0
            public void Should_Throw_If_GitReleaseManager_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenDefaultToolDoNotExist();

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Could not locate executable.");
            }
Пример #3
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings = null;

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
Пример #4
0
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish -u \"bob\" -p \"password\" " +
                             "-o \"repoOwner\" -r \"repo\" -t \"0.1.0\"",
                             result.Args);
            }
Пример #5
0
            public void Should_Throw_If_TagName_Is_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.TagName = string.Empty;

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsArgumentNullException(result, "tagName");
            }
Пример #6
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenProcessExitsWithCode(1);

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Process returned an error (exit code 1).");
            }
Пример #7
0
            public void Should_Find_GitReleaseManager_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal(
                    "/Working/tools/GitReleaseManager.exe",
                    result.Path.FullPath);
            }
Пример #8
0
            public void Should_Throw_If_Repository_Is_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Repository = string.Empty;

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                AssertEx.IsArgumentNullException(result, "repository");
            }
Пример #9
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenProcessCannotStart();

                // When
                var result = Record.Exception(() => fixture.Run());

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Process was not started.");
            }
Пример #10
0
            public void Should_Find_GitReleaseManager_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                // When
                fixture.Publish();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == "/Working/tools/GitReleaseManager.exe"),
                    Arg.Any <ProcessSettings>());
            }
Пример #11
0
            public void Should_Throw_If_Owner_Is_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Owner = string.Empty;

                // When
                var result = Record.Exception(() => fixture.Publish());

                // Then
                Assert.IsArgumentNullException(result, "owner");
            }
Пример #12
0
            public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected)
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings.ToolPath = toolPath;
                fixture.GivenSettingsToolPathExist();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }
Пример #13
0
            public void Should_Add_LogFilePath_To_Arguments_If_Set()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings.LogFilePath = @"/temp/log.txt";

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish -u \"bob\" -p \"password\" -o " +
                             "\"repoOwner\" -r \"repo\" -t \"0.1.0\" " +
                             "-l \"/temp/log.txt\"", result.Args);
            }
Пример #14
0
            public void Should_Add_TargetDirectory_To_Arguments_If_Set()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings.TargetDirectory = @"/temp";

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish -u \"bob\" -p \"password\" " +
                             "-o \"repoOwner\" -r \"repo\" -t \"0.1.0\" " +
                             "-d \"/temp\"", result.Args);
            }
Пример #15
0
            public void Should_Add_Mandatory_Arguments_When_Using_Token()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.UseToken();

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish --token \"token\" " +
                             "-o \"repoOwner\" -r \"repo\" -t \"0.1.0\"",
                             result.Args);
            }
Пример #16
0
            public void Should_Add_NoLogo_To_Arguments_If_Set()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings.NoLogo = true;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish -u \"bob\" -p \"password\" -o " +
                             "\"repoOwner\" -r \"repo\" -t \"0.1.0\" " +
                             "--no-logo", result.Args);
            }
Пример #17
0
            public void Should_Add_LogFilePath_To_Arguments_If_Set()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings.LogFilePath = @"c:/temp/log.txt";

                // When
                fixture.Publish();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "publish -u \"bob\" -p \"password\" -o \"repoOwner\" -r \"repo\" -t \"0.1.0\" -l \"c:/temp/log.txt\""));
            }
Пример #18
0
            public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenCustomToolPathExist(expected);
                fixture.Settings.ToolPath = toolPath;

                // When
                fixture.Publish();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == expected),
                    Arg.Any <ProcessSettings>());
            }
Пример #19
0
            public void Should_All_NoLogo_To_Arguments_If_Set_When_Using_Token()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.UseToken();
                fixture.Settings.NoLogo = true;

                // When
                var result = fixture.Run();

                // Then
                Assert.Equal("publish --token \"token\" -o " +
                             "\"repoOwner\" -r \"repo\" -t \"0.1.0\" " +
                             "--no-logo", result.Args);
            }