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

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

                // Then
                Assert.Equal("add \"Cake\" -Source \"/Working/NuGet/localfeed\" -NonInteractive", result.Args);
            }
Beispiel #2
0
            public void Should_Find_NuGet_Executable_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new NuGetAdderFixture();

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

                // Then
                Assert.Equal("/Working/tools/NuGet.exe", result.Path.FullPath);
            }
Beispiel #3
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsCakeException(result, "NuGet: Process was not started.");
            }
Beispiel #4
0
            public void Should_Throw_If_NuGet_Executable_Was_Not_Found()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsCakeException(result, "NuGet: Could not locate executable.");
            }
Beispiel #5
0
            public void Should_Throw_If_Settings_Are_Null()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.Settings = null;

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

                // Then
                Assert.IsArgumentNullException(result, "settings");
            }
Beispiel #6
0
            public void Should_Add_Verbosity_To_Arguments_If_Set(NuGetVerbosity verbosity, string expected)
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.Settings.Verbosity = verbosity;

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

                // Then
                Assert.Equal(expected, result.Args);
            }
Beispiel #7
0
            public void Should_Throw_If_Target_Package_Id_Is_Null()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.PackageId = null;

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

                // Then
                Assert.IsArgumentNullException(result, "packageId");
            }
Beispiel #8
0
            public void Should_Add_Expand_To_Arguments_If_True()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.Settings.Expand = true;

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

                // Then
                Assert.Equal("add \"Cake\" -Source \"/Working/NuGet/localfeed\" -Expand -NonInteractive", result.Args);
            }
Beispiel #9
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new NuGetAdderFixture();

                fixture.GivenProcessExitsWithCode(1);

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

                // Then
                Assert.IsCakeException(result, "NuGet: Process returned an error (exit code 1).");
            }
Beispiel #10
0
            public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected)
            {
                // Given
                var fixture = new NuGetAdderFixture();

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

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

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }
Beispiel #11
0
            public void Should_Add_ConfigFile_To_Arguments_If_Set()
            {
                // Given
                var fixture = new NuGetAdderFixture();

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

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

                // Then
                Assert.Equal("add \"Cake\" -Source \"/Working/NuGet/localfeed\" -ConfigFile \"/Working/nuget.config\" " +
                             "-NonInteractive", result.Args);
            }