summaryrefslogtreecommitdiff
path: root/src/test/wix/WixE2E/WixE2EFixture.cs
blob: 488d2fe9bfbdf14fe2258912333ceccd5067a764 (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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
// 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 WixE2E
{
    using System;
    using System.IO;
    using System.Linq;
    using System.Security.Cryptography;
    using System.Text;
    using WixInternal.TestSupport;
    using Xunit;

    public class WixE2EFixture
    {
        [Fact]
        public void CanBuildWixlibMultiFramework()
        {
            var projectPath = TestData.Get("TestData", "WixprojLibraryMultiFramework", "WixprojLibraryMultiFramework.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();
        }

        [Fact]
        public void CanBuildWixlibWithNativeDll()
        {
            var projectPath = TestData.Get("TestData", "WixprojLibraryVcxprojDll", "WixprojLibraryVcxprojDll.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();
        }

        [Fact]
        public void CanBuildModuleWithWinFormsApp()
        {
            var projectPath = TestData.Get("TestData", "WixprojModuleCsprojWinFormsNetFx", "WixprojModuleCsprojWinFormsNetFx.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();
        }

        [Fact]
        public void CanBuildPackageWithWebApp()
        {
            var projectPath = TestData.Get("TestData", "WixprojPackageCsprojWebApplicationNetCore", "WixprojPackageCsprojWebApplicationNetCore.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();
        }

        [Fact]
        public void CanBuildPackageWithNativeWindowsApp()
        {
            var projectPath = TestData.Get("TestData", "WixprojPackageVcxprojWindowsApp", "WixprojPackageVcxprojWindowsApp.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var signingStatement = result.Output.Where(s => s.Contains("warning :"))
                                                .Select(s => s.Replace(Path.GetDirectoryName(projectPath), "<projectFolder>").Replace(@"\Debug\", @"\<configuration>\").Replace(@"\Release\", @"\<configuration>\"))
                                                .ToArray();
            WixAssert.CompareLineByLine(new[]
            {
                @"<projectFolder>\WixprojPackageVcxprojWindowsApp.wixproj(18,5): warning : SignMsi = obj\<configuration>\en-US\WixprojPackageVcxprojWindowsApp.msi;obj\<configuration>\ja-JP\WixprojPackageVcxprojWindowsApp.msi"
            }, signingStatement);
        }

        [Fact]
        public void CanIncrementalBuildPackageWithNativeWindowsAppWithNoEdits()
        {
            var projectDirectory = TestData.Get("TestData", "WixprojPackageVcxprojWindowsApp");
            var projectPath = Path.Combine(projectDirectory, "WixprojPackageVcxprojWindowsApp.wixproj");
            var projectBinPath = Path.Combine(projectDirectory, "bin");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var firstBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var firstHashes = firstBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            // This should be an incremental build and not do any work.
            //
            result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var secondBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var secondHashes = secondBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            WixAssert.CompareLineByLine(firstHashes, secondHashes);
        }

        [Fact]
        public void CanIncrementalBuildPackageWithNativeWindowsAppWithEdits()
        {
            var projectDirectory = TestData.Get("TestData", "WixprojPackageVcxprojWindowsApp");
            var projectPath = Path.Combine(projectDirectory, "WixprojPackageVcxprojWindowsApp.wixproj");
            var projectBinPath = Path.Combine(projectDirectory, "bin");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var firstBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var firstRelativePaths = firstBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')}").ToArray();
            var firstHashes = firstBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            var packageWxsPath = Path.Combine(projectDirectory, "Package.wxs");
            File.SetLastWriteTime(packageWxsPath, DateTime.Now);

            // This should be an incremental build that does work because a file was updated.
            //
            result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var secondBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var secondRelativePaths = secondBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')}").ToArray();
            var secondHashes = secondBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            WixAssert.CompareLineByLine(firstRelativePaths, secondRelativePaths);
            Assert.NotEqual(firstHashes, secondHashes);
        }

        [Theory]
        [InlineData(false)]
        [InlineData(true)]
        public void CanBuildPackageWithHarvesting(bool x64)
        {
            var projectPath = TestData.Get("TestData", "WixprojPackageHarvesting", "WixprojPackageHarvesting.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath, x64);
            result.AssertSuccess();
        }

        [Theory]
        [InlineData(false)]
        [InlineData(true)]
        public void CanBuildPackageWithHeatDir(bool x64)
        {
            var projectPath = TestData.Get("TestData", "WixprojPackageHeatDir", "WixprojPackageHeatDir.wixproj");

            CleanEverything();

            var result = RestoreAndBuild(projectPath, x64);
            result.AssertSuccess();
        }

        [Fact(Skip = "Investigate if .NET Core WebApplications can be incrementally built")]
        public void CanIncrementalBuildPackageWithNetCoreWebAppWithoutEdits()
        {
            var projectDirectory = TestData.Get("TestData", "WixprojPackageCsprojWebApplicationNetCore");
            var projectPath = Path.Combine(projectDirectory, "WixprojPackageCsprojWebApplicationNetCore.wixproj");
            var projectBinPath = Path.Combine(projectDirectory, "bin");

            CleanEverything();

            var result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var firstBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var firstHashes = firstBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            //var packageWxsPath = Path.Combine(projectDirectory, "Package.wxs");
            //File.SetLastWriteTime(packageWxsPath, DateTime.Now);

            // This should be an incremental build that does work because a file was updated.
            //
            result = RestoreAndBuild(projectPath);
            result.AssertSuccess();

            var secondBuiltFiles = Directory.GetFiles(projectBinPath, "*.*", SearchOption.AllDirectories).ToArray();
            var secondHashes = secondBuiltFiles.Select(s => $"{s.Substring(projectBinPath.Length).TrimStart('\\')} with hash: {GetFileHash(s)}").ToArray();

            WixAssert.CompareLineByLine(firstHashes, secondHashes);
        }

        private static void CleanEverything()
        {
            var rootFolder = TestData.Get("TestData");
            var deleteFolders = new[] { "Debug", "bin", "obj" };

            foreach (var projectFolder in Directory.GetDirectories(rootFolder))
            {
                foreach (var deleteFolder in deleteFolders)
                {
                    var folder = Path.Combine(projectFolder, deleteFolder);

                    if (Directory.Exists(folder))
                    {
                        Directory.Delete(folder, true);
                    }
                }
            }

            foreach (var logFile in Directory.GetFiles(rootFolder, "*.binlog", SearchOption.AllDirectories))
            {
                File.Delete(logFile);
            }
        }

        private static string GetFileHash(string path)
        {
            using (var sha2 = SHA256.Create())
            {
                var bytes = File.ReadAllBytes(path);
                var hashBytes = sha2.ComputeHash(bytes);

                var sb = new StringBuilder();
                foreach (var hash in hashBytes)
                {
                    sb.AppendFormat("{0:X}", hash);
                }

                return sb.ToString();
            }
        }

        private static MsbuildRunnerResult RestoreAndBuild(string projectPath, bool x64 = true, bool suppressValidation = true)
        {
            return MsbuildRunner.Execute(projectPath, new[] { "-Restore", "-v:m", "-bl", $"-p:SuppressValidation={suppressValidation}" }, x64);
        }
    }
}