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

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

                // Then
                Assert.Equal("/Working", result.Process.WorkingDirectory.FullPath);
            }
Esempio n. 2
0
            public void Should_Find_Light_Runner_If_Tool_Path_Not_Provided()
            {
                // Given
                var fixture = new LightFixture();

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

                // Then
                Assert.Equal("/Working/tools/light.exe", result.Path.FullPath);
            }
Esempio n. 3
0
            public void Should_Throw_If_Settings_Is_Null()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings = null;

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

                // Then
                AssertEx.IsArgumentNullException(result, "settings");
            }
Esempio n. 4
0
            public void Should_Add_RawArguments_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings.RawArguments = "-dFoo=Bar";

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

                // Then
                Assert.Equal("-dFoo=Bar \"/Working/Test.wixobj\"", result.Args);
            }
Esempio n. 5
0
            public void Should_Add_Output_Directory_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings.OutputFile = "./bin/test.msi";

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

                // Then
                Assert.Equal("-o \"/Working/bin/test.msi\" \"/Working/Test.wixobj\"", result.Args);
            }
Esempio n. 6
0
            public void Should_Add_NoLogo_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings.NoLogo = true;

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

                // Then
                Assert.Equal("-nologo \"/Working/Test.wixobj\"", result.Args);
            }
Esempio n. 7
0
            public void Should_Add_Extensions_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings.Extensions = new[] { "WixUIExtension" };

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

                // Then
                Assert.Equal("-ext WixUIExtension \"/Working/Test.wixobj\"", result.Args);
            }
Esempio n. 8
0
            public void Should_Throw_If_Object_Files_Is_Null()
            {
                // Given
                var fixture = new LightFixture();

                fixture.ObjectFiles = null;

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

                // Then
                Assert.IsArgumentNullException(result, "objectFiles");
            }
Esempio n. 9
0
            public void Should_Use_Light_Runner_From_Tool_Path_If_Provided(string toolPath, string expected)
            {
                // Given
                var fixture = new LightFixture();

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

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

                // Then
                Assert.Equal(expected, result.Path.FullPath);
            }
Esempio n. 10
0
            public void Should_Throw_If_Light_Runner_Was_Not_Found()
            {
                // Given
                var fixture = new LightFixture();

                fixture.GivenDefaultToolDoNotExist();

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

                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("Light: Could not locate executable.", result?.Message);
            }
Esempio n. 11
0
            public void Should_Throw_If_Object_Files_Is_Empty()
            {
                // Given
                var fixture = new LightFixture();

                fixture.ObjectFiles = new List <FilePath>();

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

                // Then
                Assert.IsType <ArgumentException>(result);
                Assert.Equal("objectFiles", ((ArgumentException)result)?.ParamName);
            }
Esempio n. 12
0
            public void Should_Add_Defines_To_Arguments_If_Provided()
            {
                // Given
                var fixture = new LightFixture();

                fixture.Settings.Defines = new Dictionary <string, string>();
                fixture.Settings.Defines.Add("Foo", "Bar");

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

                // Then
                Assert.Equal("-dFoo=Bar \"/Working/Test.wixobj\"", result.Args);
            }
Esempio n. 13
0
            public void Should_Throw_If_Process_Has_A_Non_Zero_Exit_Code()
            {
                // Given
                var fixture = new LightFixture();

                fixture.GivenProcessExitsWithCode(1);

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

                // Then
                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("Light: Process returned an error (exit code 1).", result?.Message);
            }
Esempio n. 14
0
            public void Should_Throw_If_Process_Was_Not_Started()
            {
                // Given
                var fixture = new LightFixture();

                fixture.GivenProcessCannotStart();

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

                // Then
                // Then
                Assert.IsType <CakeException>(result);
                Assert.Equal("Light: Process was not started.", result?.Message);
            }
Esempio n. 15
0
            public void Should_Use_Provided_Object_Files_In_Process_Arguments()
            {
                // Given
                var fixture = new LightFixture();

                fixture.ObjectFiles = new List <FilePath>();
                fixture.ObjectFiles.Add(new FilePath("./Test.wixobj"));
                fixture.ObjectFiles.Add(new FilePath("./Test2.wixobj"));

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

                // Then
                Assert.Equal("\"/Working/Test.wixobj\" \"/Working/Test2.wixobj\"", result.Args);
            }