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
|
// 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 WixBuildTools.TestSupport
{
using System;
using System.Collections.Generic;
using System.Linq;
using System.Xml.Linq;
using Xunit;
public class WixAssert : Assert
{
public static void CompareLineByLine(string[] expectedLines, string[] actualLines)
{
var lineNumber = 0;
for (; lineNumber < expectedLines.Length && lineNumber < actualLines.Length; ++lineNumber)
{
WixAssert.StringEqual($"{lineNumber}: {expectedLines[lineNumber]}", $"{lineNumber}: {actualLines[lineNumber]}");
}
var additionalExpectedLines = expectedLines.Length > lineNumber ? String.Join(Environment.NewLine, expectedLines.Skip(lineNumber).Select((s, i) => $"{lineNumber + i}: {s}")) : $"Missing {actualLines.Length - lineNumber} lines";
var additionalActualLines = actualLines.Length > lineNumber ? String.Join(Environment.NewLine, actualLines.Skip(lineNumber).Select((s, i) => $"{lineNumber + i}: {s}")) : $"Missing {expectedLines.Length - lineNumber} lines";
WixAssert.StringEqual(additionalExpectedLines, additionalActualLines);
}
public static void CompareXml(XContainer xExpected, XContainer xActual)
{
var expecteds = xExpected.Descendants().Select(x => $"{x.Name.LocalName}:{String.Join(",", x.Attributes().OrderBy(a => a.Name.LocalName).Select(a => $"{a.Name.LocalName}={a.Value}"))}");
var actuals = xActual.Descendants().Select(x => $"{x.Name.LocalName}:{String.Join(",", x.Attributes().OrderBy(a => a.Name.LocalName).Select(a => $"{a.Name.LocalName}={a.Value}"))}");
CompareLineByLine(expecteds.OrderBy(s => s).ToArray(), actuals.OrderBy(s => s).ToArray());
}
public static void CompareXml(string expectedPath, string actualPath)
{
var expectedDoc = XDocument.Load(expectedPath, LoadOptions.PreserveWhitespace | LoadOptions.SetBaseUri | LoadOptions.SetLineInfo);
var actualDoc = XDocument.Load(actualPath, LoadOptions.PreserveWhitespace | LoadOptions.SetBaseUri | LoadOptions.SetLineInfo);
CompareXml(expectedDoc, actualDoc);
}
public static void Succeeded(int hr, string format, params object[] formatArgs)
{
if (0 > hr)
{
throw new SucceededException(hr, String.Format(format, formatArgs));
}
}
public static void StringCollectionEmpty(IList<string> collection)
{
if (collection.Count > 0)
{
Assert.True(false, $"The collection was expected to be empty, but instead was [{Environment.NewLine}\"{String.Join($"\", {Environment.NewLine}\"", collection)}\"{Environment.NewLine}]");
}
}
public static void StringEqual(string expected, string actual, bool ignoreCase = false)
{
var comparer = ignoreCase ? StringObjectEqualityComparer.InvariantCultureIgnoreCase : StringObjectEqualityComparer.InvariantCulture;
Assert.Equal<object>(expected, actual, comparer);
}
public static void NotStringEqual(string expected, string actual, bool ignoreCase = false)
{
var comparer = ignoreCase ? StringObjectEqualityComparer.InvariantCultureIgnoreCase : StringObjectEqualityComparer.InvariantCulture;
Assert.NotEqual<object>(expected, actual, comparer);
}
private class StringObjectEqualityComparer : IEqualityComparer<object>
{
public static readonly StringObjectEqualityComparer InvariantCultureIgnoreCase = new StringObjectEqualityComparer(true);
public static readonly StringObjectEqualityComparer InvariantCulture = new StringObjectEqualityComparer(false);
private readonly StringComparer stringComparer;
public StringObjectEqualityComparer(bool ignoreCase)
{
this.stringComparer = ignoreCase ? StringComparer.InvariantCultureIgnoreCase : StringComparer.InvariantCulture;
}
public new bool Equals(object x, object y)
{
return this.stringComparer.Equals((string)x,(string)y);
}
public int GetHashCode(object obj)
{
return this.stringComparer.GetHashCode((string)obj);
}
}
}
}
|