aboutsummaryrefslogtreecommitdiff
path: root/src/internal/WixInternal.TestSupport/Builder.cs
blob: 78804826ad30c002c7abaa1221ae23f3b47362cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
// Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information.

namespace WixInternal.TestSupport
{
    using System;
    using System.Collections.Generic;
    using System.IO;

    public class Builder
    {
        public Builder(string sourceFolder, Type extensionType = null, string[] bindPaths = null, string outputFile = null)
        {
            this.SourceFolder = sourceFolder;
            this.ExtensionType = extensionType;
            this.BindPaths = bindPaths;
            this.OutputFile = outputFile ?? "test.msi";
        }

        public string[] BindPaths { get; set; }

        public Type ExtensionType { get; set; }

        public string OutputFile { get; set; }

        public string SourceFolder { get; }

        public string[] BuildAndQuery(Action<string[]> buildFunc, params string[] tables)
        {
            return this.BuildAndQuery(buildFunc, validate: false, tables);
        }

        public string[] BuildAndQuery(Action<string[]> buildFunc, bool validate, params string[] tables)
        {
            var sourceFiles = Directory.GetFiles(this.SourceFolder, "*.wxs");
            var wxlFiles = Directory.GetFiles(this.SourceFolder, "*.wxl");

            using (var fs = new DisposableFileSystem())
            {
                var intermediateFolder = fs.GetFolder();
                var outputPath = Path.Combine(intermediateFolder, "bin", this.OutputFile);

                var args = new List<string>
                {
                    "build",
                    "-o", outputPath,
                    "-intermediateFolder", intermediateFolder,
                };

                if (this.ExtensionType != null)
                {
                    args.Add("-ext");
                    args.Add(Path.GetFullPath(new Uri(this.ExtensionType.Assembly.CodeBase).LocalPath));
                }

                args.AddRange(sourceFiles);

                foreach (var wxlFile in wxlFiles)
                {
                    args.Add("-loc");
                    args.Add(wxlFile);
                }

                foreach (var bindPath in this.BindPaths)
                {
                    args.Add("-bindpath");
                    args.Add(bindPath);
                }

                buildFunc(args.ToArray());

                if (validate)
                {
                    args = new List<string>
                    {
                        "msi",
                        "validate",
                        "-intermediateFolder", intermediateFolder,
                        outputPath,
                    };

                    buildFunc(args.ToArray());
                }

                return Query.QueryDatabase(outputPath, tables);
            }
        }

        public void BuildAndDecompileAndBuild(Action<string[]> buildFunc, Action<string[]> decompileFunc, string decompilePath)
        {
            var sourceFiles = Directory.GetFiles(this.SourceFolder, "*.wxs");
            var wxlFiles = Directory.GetFiles(this.SourceFolder, "*.wxl");

            using (var fs = new DisposableFileSystem())
            {
                var intermediateFolder = fs.GetFolder();
                var outputFolder = Path.Combine(intermediateFolder, "bin");
                var decompileExtractFolder = Path.Combine(intermediateFolder, "decompiled", "extract");
                var decompileIntermediateFolder = Path.Combine(intermediateFolder, "decompiled", "obj");
                var decompileBuildFolder = Path.Combine(intermediateFolder, "decompiled", "bin");
                var outputPath = Path.Combine(outputFolder, this.OutputFile);
                var decompileBuildPath = Path.Combine(decompileBuildFolder, this.OutputFile);

                // First build.
                var firstBuildArgs = new List<string>
                {
                    "build",
                    "-o", outputPath,
                    "-intermediateFolder", intermediateFolder,
                };

                if (this.ExtensionType != null)
                {
                    firstBuildArgs.Add("-ext");
                    firstBuildArgs.Add(Path.GetFullPath(new Uri(this.ExtensionType.Assembly.CodeBase).LocalPath));
                }

                firstBuildArgs.AddRange(sourceFiles);

                foreach (var wxlFile in wxlFiles)
                {
                    firstBuildArgs.Add("-loc");
                    firstBuildArgs.Add(wxlFile);
                }

                foreach (var bindPath in this.BindPaths)
                {
                    firstBuildArgs.Add("-bindpath");
                    firstBuildArgs.Add(bindPath);
                }

                buildFunc(firstBuildArgs.ToArray());

                // Decompile built output.
                var decompileArgs = new List<string>
                {
                    "msi", "decompile",
                    outputPath,
                    "-intermediateFolder", decompileIntermediateFolder,
                    "-x", decompileExtractFolder,
                    "-o", decompilePath
                };

                if (this.ExtensionType != null)
                {
                    decompileArgs.Add("-ext");
                    decompileArgs.Add(Path.GetFullPath(new Uri(this.ExtensionType.Assembly.CodeBase).LocalPath));
                }

                decompileFunc(decompileArgs.ToArray());

                // Build decompiled output.
                var secondBuildArgs = new List<string>
                {
                    "build",
                    decompilePath,
                    "-o", decompileBuildPath,
                    "-intermediateFolder", decompileIntermediateFolder
                };

                if (this.ExtensionType != null)
                {
                    secondBuildArgs.Add("-ext");
                    secondBuildArgs.Add(Path.GetFullPath(new Uri(this.ExtensionType.Assembly.CodeBase).LocalPath));
                }

                secondBuildArgs.Add("-bindpath");
                secondBuildArgs.Add(outputFolder);

                secondBuildArgs.Add("-bindpath");
                secondBuildArgs.Add(decompileExtractFolder);

                buildFunc(secondBuildArgs.ToArray());
            }
        }
    }
}