public void Should_Add_Mandatory_Arguments() { // Given var fixture = new ChocolateyInstallFixture(); // When var result = fixture.Run(); // Then Assert.Equal("install \"Cake\" -y", result.Args); }
public void Should_Find_Chocolatey_Executable_If_Tool_Path_Not_Provided() { // Given var fixture = new ChocolateyInstallFixture(); // When var result = fixture.Run(); // Then Assert.Equal("/Working/tools/choco.exe", result.Path.FullPath); }
public void Should_Add_ForceDependencies_Flag_To_Arguments_If_Set(bool forceDependencies, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.ForceDependencies = forceDependencies; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Throw_If_Chocolatey_Executable_Was_Not_Found() { // Given var fixture = new ChocolateyInstallFixture(); fixture.GivenDefaultToolDoNotExist(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "Chocolatey: Could not locate executable."); }
public void Should_Add_SideBySide_Flag_To_Arguments_If_Set(bool sideBySide, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.SideBySide = sideBySide; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_NotSilent_Flag_To_Arguments_If_Set(bool notSilent, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.NotSilent = notSilent; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_Version_To_Arguments_If_Not_Null() { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.Version = "1.0.0"; // When var result = fixture.Run(); // Then Assert.Equal("install \"Cake\" -y --version \"1.0.0\"", result.Args); }
public void Should_Add_IgnoreChecksums_Flag_To_Arguments_If_Set(bool ignoreChecksums, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.IgnoreChecksums = ignoreChecksums; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_Source_To_Arguments_If_Set() { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.Source = "A"; // When var result = fixture.Run(); // Then Assert.Equal("install \"Cake\" -y -s \"A\"", result.Args); }
public void Should_Add_AllowUnofficial_Flag_To_Arguments_If_Set(bool allowUnofficial, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.AllowUnofficial = allowUnofficial; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_CacheLocation_Flag_To_Arguments_If_Set(string cacheLocation, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.CacheLocation = cacheLocation; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_ExecutionTimeout_To_Arguments_If_Set(int executionTimeout, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.ExecutionTimeout = executionTimeout; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Throw_If_Target_Package_Id_Is_Null() { // Given var fixture = new ChocolateyInstallFixture(); fixture.PackageId = null; // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsArgumentNullException(result, "packageId"); }
public void Should_Add_SkipPowerShell_Flag_To_Arguments_If_Set(bool skipPowerShell, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.SkipPowerShell = skipPowerShell; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Throw_If_Settings_Are_Null() { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings = null; // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsArgumentNullException(result, "settings"); }
public void Should_Add_Password_To_Arguments_If_Set(string password, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.Password = password; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Add_OverrideArguments_Flag_To_Arguments_If_Set(bool overrideArguments, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.OverrideArguments = overrideArguments; // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Args); }
public void Should_Throw_If_Process_Was_Not_Started() { // Given var fixture = new ChocolateyInstallFixture(); fixture.GivenProcessCannotStart(); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "Chocolatey: Process was not started."); }
public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code() { // Given var fixture = new ChocolateyInstallFixture(); fixture.GivenProcessExitsWithCode(1); // When var result = Record.Exception(() => fixture.Run()); // Then Assert.IsCakeException(result, "Chocolatey: Process returned an error (exit code 1)."); }
public void Should_Use_Chocolatey_Executable_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected) { // Given var fixture = new ChocolateyInstallFixture(); fixture.Settings.ToolPath = toolPath; fixture.GivenSettingsToolPathExist(); // When var result = fixture.Run(); // Then Assert.Equal(expected, result.Path.FullPath); }