Пример #1
0
            public void Should_Set_Working_Directory()
            {
                // Given
                var fixture = new InnoSetupFixture();

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

                // Then
                Assert.Equal("/Working", result.Process.WorkingDirectory.FullPath);
            }
Пример #2
0
            public void Should_Find_InnoSetup_Runner_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

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

                // Then
                Assert.Equal("/Working/tools/iscc.exe", result.Path.FullPath);
            }
Пример #3
0
            public void Should_Throw_If_Settings_Is_Null()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings = null;

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

                // Then
                AssertEx.IsArgumentNullException(result, "settings");
            }
Пример #4
0
            public void Should_Add_QuietModeWithProgress_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings.QuietMode = InnoSetupQuietMode.QuietWithProgress;

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

                // Then
                Assert.Equal("/Qp \"/Working/Test.iss\"", result.Args);
            }
Пример #5
0
            public void Should_Add_OutputBaseFilename_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings.OutputBaseFilename = "Test-setup";

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

                // Then
                Assert.Equal("/F\"Test-setup\" \"/Working/Test.iss\"", result.Args);
            }
Пример #6
0
            public void Should_Add_OutputDir_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings.OutputDirectory = "SetupOutput";

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

                // Then
                Assert.Equal("/O\"/Working/SetupOutput\" \"/Working/Test.iss\"", result.Args);
            }
Пример #7
0
            public void Should_Add_OutputOff_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings.EnableOutput = false;

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

                // Then
                Assert.Equal("/O- \"/Working/Test.iss\"", result.Args);
            }
Пример #8
0
            public void Should_Throw_If_Script_File_Is_Null()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.ScriptPath = null;

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

                // Then
                AssertEx.IsArgumentNullException(result, "scriptFile");
            }
Пример #9
0
            public void Should_Use_InnoSetup_Runner_From_Tool_Path_If_Provided_On_Windows(string toolPath, string expected)
            {
                // Given
                var fixture = new InnoSetupFixture();

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

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

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }
Пример #10
0
            public void Should_Throw_If_InnoSetup_Runner_Was_Not_Found()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("InnoSetup: Could not locate executable.", result?.Message);
            }
Пример #11
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenProcessExitsWithCode(1);

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("InnoSetup: Process returned an error (exit code 1).", result?.Message);
            }
Пример #12
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("InnoSetup: Process was not started.", result?.Message);
            }
Пример #13
0
            public void Should_Find_InnoSetup_Runner_In_Installation_Path_If_Tool_Path_Not_Provided_x64()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenDefaultToolDoNotExist();
                fixture.GivenToolIsInstalledX64();

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

                // Then
                Assert.Equal(fixture.InstalledToolPath.FullPath, result.Path.FullPath);
            }
            public void Should_Use_Newest_InnoSetup_Version_If_Version_And_Tool_Path_Are_Not_Provided(bool is64Bit)
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenDefaultToolDoNotExist();
                fixture.GivenToolIsInstalled(is64Bit, InnoSetupVersion.InnoSetup5);
                fixture.GivenToolIsInstalled(is64Bit, InnoSetupVersion.InnoSetup6);

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

                // Then
                Assert.Equal(fixture.InstalledToolPaths[InnoSetupVersion.InnoSetup6].FullPath, result.Path.FullPath);
            }
            public void Should_Use_Provided_InnoSetup_Version_When_Tool_Path_Is_Not_Provided(bool is64Bit, InnoSetupVersion version)
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.GivenDefaultToolDoNotExist();
                fixture.GivenToolIsInstalled(is64Bit, InnoSetupVersion.InnoSetup5);
                fixture.GivenToolIsInstalled(is64Bit, InnoSetupVersion.InnoSetup6);
                fixture.Settings.Version = version;

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

                // Then
                Assert.Equal(fixture.InstalledToolPaths[version].FullPath, result.Path.FullPath);
            }
Пример #16
0
            public void Should_Add_Defines_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new InnoSetupFixture();

                fixture.Settings.Defines = new Dictionary <string, string>();
                fixture.Settings.Defines.Add("Foo", "Bar");
                fixture.Settings.Defines.Add("Test", null);
                fixture.Settings.Defines.Add("Test2", string.Empty);
                fixture.Settings.Defines.Add("Test3", "hello world");

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

                // Then
                Assert.Equal("/DFoo=\"Bar\" /DTest /DTest2 /DTest3=\"hello world\" \"/Working/Test.iss\"", result.Args);
            }