Esempio n. 1
0
            public void Should_Throw_If_Encounter_Unexpected_Output()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.GivenUnexpectedOutput();

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

                // Then
                Assert.IsCakeException(result, "Set command returned unexpected response.");
            }
Esempio n. 2
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsCakeException(result, "NuGet: Process was not started.");
            }
Esempio n. 3
0
            public void Should_Throw_If_NuGet_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsCakeException(result, "NuGet: Could not locate executable.");
            }
Esempio n. 4
0
            public void Should_Add_Mandatory_Arguments()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                // When
                fixture.SetProxy();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "config -Set http_proxy=http://a.com -NonInteractive"));
            }
Esempio n. 5
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
Esempio n. 6
0
            public void Should_Find_NuGet_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                // When
                fixture.SetProxy();

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

                fixture.GivenProcessReturnError();

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

                // Then
                Assert.IsCakeException(result, "NuGet: Process returned an error.");
            }
Esempio n. 8
0
            public void Should_Add_ConfigFile_To_Arguments_If_Set()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.Settings.ConfigFile = "./nuget.config";

                // When
                fixture.SetProxy();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "config -Set http_proxy=http://a.com -ConfigFile \"/Working/nuget.config\" -NonInteractive"));
            }
Esempio n. 9
0
            public void Should_Add_Verbosity_To_Arguments_If_Set(NuGetVerbosity verbosity, string expected)
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.Settings.Verbosity = verbosity;

                // When
                fixture.SetProxy();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == expected));
            }
Esempio n. 10
0
            public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

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

                // When
                fixture.SetProxy();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Is <FilePath>(p => p.FullPath == expected),
                    Arg.Any <ProcessSettings>());
            }
Esempio n. 11
0
            public void Should_Add_UP_To_Arguments_If_Set()
            {
                // Given
                var fixture = new NuGetSetProxyFixture();

                fixture.Username = "******";
                fixture.Password = "******";

                // When
                fixture.SetProxy();

                // Then
                fixture.ProcessRunner.Received(1).Start(
                    Arg.Any <FilePath>(), Arg.Is <ProcessSettings>(p =>
                                                                   p.Arguments.Render() == "config -Set http_proxy=http://a.com -Set http_proxy.user=Admin -Set http_proxy.password=Pass1 -NonInteractive"));
            }