public void Should_Add_Mandatory_Arguments() { // Given var fixture = new NuGetIniterFixture(); // When var result = fixture.Run(); // Then Assert.Equal("init \"/Working/NuGet/localfeed\" \"/Working/NuGet/localfeed-destination\" -NonInteractive", result.Args); }
public void Should_Find_NuGet_Executable_If_Tool_Path_Not_Provided() { // Given var fixture = new NuGetIniterFixture(); // When var result = fixture.Run(); // Then Assert.Equal("/Working/tools/NuGet.exe", result.Path.FullPath); }
public void Should_Throw_If_NuGet_Executable_Was_Not_Found() { // Given var fixture = new NuGetIniterFixture(); fixture.GivenDefaultToolDoNotExist(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "NuGet: Could not locate executable."); }
public void Should_Throw_If_Settings_Are_Null() { // Given var fixture = new NuGetIniterFixture(); fixture.Settings = null; // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsArgumentNullException(result, "settings"); }
public void Should_Throw_If_Destination_Is_Null() { // Given var fixture = new NuGetIniterFixture(); fixture.Destination = null; // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsArgumentNullException(result, "destinationPackageSourcePath"); }
public void Should_Add_Verbosity_To_Arguments_If_Set(NuGetVerbosity verbosity, string expected) { // Given var fixture = new NuGetIniterFixture(); fixture.Settings.Verbosity = verbosity; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_Expand_To_Arguments_If_True() { // Given var fixture = new NuGetIniterFixture(); fixture.Settings.Expand = true; // When var result = fixture.Run(); // Then Assert.Equal("init \"/Working/NuGet/localfeed\" \"/Working/NuGet/localfeed-destination\" -Expand -NonInteractive", result.Args); }
public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code() { // Given var fixture = new NuGetIniterFixture(); fixture.GivenProcessExitsWithCode(1); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "NuGet: Process returned an error (exit code 1)."); }
public void Should_Throw_If_Process_Was_Not_Started() { // Given var fixture = new NuGetIniterFixture(); fixture.GivenProcessCannotStart(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "NuGet: Process was not started."); }
public void Should_Use_NuGet_Executable_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected) { // Given var fixture = new NuGetIniterFixture(); fixture.Settings.ToolPath = toolPath; fixture.GivenSettingsToolPathExist(); // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Path.FullPath); }
public void Should_Add_ConfigFile_To_Arguments_If_Set() { // Given var fixture = new NuGetIniterFixture(); fixture.Settings.ConfigFile = "./nuget.config"; // When var result = fixture.Run(); // Then Assert.Equal("init \"/Working/NuGet/localfeed\" \"/Working/NuGet/localfeed-destination\" -ConfigFile \"/Working/nuget.config\" " + "-NonInteractive", result.Args); }