public void Should_Find_Homebrew_Runner_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

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

                // Then
                Assert.Equal("/Working/tools/brew", result.Path.FullPath);
            }
            public void Should_Set_Working_Directory()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

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

                // Then
                Assert.Equal("/Working", result.Process.WorkingDirectory.FullPath);
            }
            public void Should_Add_Formula_If_Provided()
            {
                // Given
                var fixure = new HomebrewUninstallRunnerFixture();

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

                // Then
                Assert.Equal("uninstall cake", result.Args);
            }
            public void Should_Add_Ignore_Dependencies_If_Provided()
            {
                // Given
                var fixure = new HomebrewUninstallRunnerFixture();

                fixure.Settings.IgnoreDependencies = true;

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

                // Then
                Assert.Equal("uninstall cake --ignore-dependencies", result.Args);
            }
            public void Should_Add_Force_If_Provided()
            {
                // Given
                var fixure = new HomebrewUninstallRunnerFixture();

                fixure.Settings.Force = true;

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

                // Then
                Assert.Equal("uninstall cake --force", result.Args);
            }
            public void Should_Throw_If_Settings_Is_Null()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsType <ArgumentNullException>(result);
            }
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("brew: Process was not started.", result?.Message);
            }
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

                fixture.GivenProcessExitsWithCode(1);

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("brew: Process returned an error (exit code 1).", result?.Message);
            }
            public void Should_Throw_If_Homebrew_Runner_Was_Not_Found()
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("brew: Could not locate executable.", result?.Message);
            }
            public void Should_Use_Homebrew_Runner_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new HomebrewUninstallRunnerFixture();

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

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

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }