public void Should_Throw_If_Milestone_Is_Null()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

                fixture.Milestone = string.Empty;

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

                // Then
                Assert.IsArgumentNullException(result, "milestone");
            }
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

                // When
                fixture.Close();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "close -u \"bob\" -p \"password\" -o \"repoOwner\" -r \"repo\" -m \"0.1.0\""));
            }
            public void Should_Find_GitReleaseManager_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

                // When
                fixture.Close();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == "/Working/tools/GitReleaseManager.exe"),
                    Arg.Any <ProcessSettings>());
            }
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

                fixture.GivenProcessReturnError();

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

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

                fixture.GivenProcessCannotStart();

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

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

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsCakeException(result, "GitReleaseManager: Could not locate executable.");
            }
            public void Should_Add_LogFilePath_To_Arguments_If_Set()
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

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

                // When
                fixture.Close();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "close -u \"bob\" -p \"password\" -o \"repoOwner\" -r \"repo\" -m \"0.1.0\" -l \"c:/temp/log.txt\""));
            }
            public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new GitReleaseManagerMilestoneCloserFixture();

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

                // When
                fixture.Close();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == expected),
                    Arg.Any <ProcessSettings>());
            }