Beispiel #1
0
            public void Should_Throw_If_TagName_Is_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.TagName = string.Empty;

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

                // Then
                Assert.IsArgumentNullException(result, "tagName");
            }
Beispiel #2
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
Beispiel #3
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\""));
            }
Beispiel #4
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>());
            }
Beispiel #5
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenProcessReturnError();

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

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Process returned an error.");
            }
Beispiel #6
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Process was not started.");
            }
Beispiel #7
0
            public void Should_Throw_If_GitReleaseManager_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new GitReleaseManagerPublisherFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Could not locate executable.");
            }
Beispiel #8
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\""));
            }
Beispiel #9
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>());
            }