Example #1
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.GivenProcessReturnError();

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

                // Then
                Assert.IsCakeException(result, "Chocolatey: Process returned an error.");
            }
Example #2
0
            public void Should_Find_Chocolatey_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                // When
                fixture.EnableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == "/Working/tools/choco.exe"),
                    Arg.Any <ProcessSettings>());
            }
Example #3
0
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                // When
                fixture.DisableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "feature disable -n \"checkSumFiles\" -y"));
            }
Example #4
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsCakeException(result, "Chocolatey: Process was not started.");
            }
Example #5
0
            public void Should_Throw_If_Chocolatey_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsCakeException(result, "Chocolatey: Could not locate executable.");
            }
Example #6
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
Example #7
0
            public void Should_Add_AllowUnofficial_Flag_To_Arguments_If_Set(bool allowUnofficial, string expected)
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.Settings.AllowUnoffical = allowUnofficial;

                // When
                fixture.DisableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == expected));
            }
Example #8
0
            public void Should_Add_CacheLocation_Flag_To_Arguments_If_Set(string cacheLocation, string expected)
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.Settings.CacheLocation = cacheLocation;

                // When
                fixture.DisableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == expected));
            }
Example #9
0
            public void Should_Add_ExecutionTimeout_To_Arguments_If_Set(int executionTimeout, string expected)
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.Settings.ExecutionTimeout = executionTimeout;

                // When
                fixture.DisableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == expected));
            }
Example #10
0
            public void Should_Add_LimitOutput_Flag_To_Arguments_If_Set(bool limitOutput, string expected)
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

                fixture.Settings.LimitOutput = limitOutput;

                // When
                fixture.EnableFeature();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == expected));
            }
Example #11
0
            public void Should_Use_Chocolatey_Executable_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new ChocolateyFeatureTogglerFixture();

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

                // When
                fixture.EnableFeature();

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