-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathVerifyTests.cs
168 lines (144 loc) · 5.59 KB
/
VerifyTests.cs
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
/*
Licensed under LGPLv3
Derived from wimlib's original header files
Copyright (C) 2012-2018 Eric Biggers
C# Wrapper written by Hajin Jang
Copyright (C) 2017-present Hajin Jang
This file is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the Free
Software Foundation; either version 3 of the License, or (at your option) any
later version.
This file is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
details.
You should have received a copy of the GNU Lesser General Public License
along with this file; if not, see http://www.gnu.org/licenses/.
*/
using Microsoft.VisualStudio.TestTools.UnitTesting;
using System;
using System.IO;
using System.Linq;
namespace ManagedWimLib.Tests
{
[TestClass]
[TestCategory(TestSetup.WimLib)]
public class VerifyTests
{
#region Verify
[TestMethod]
public void Verify()
{
VerifyTemplate("VerifySuccess.wim", true);
VerifyTemplate("VerifyFail.wim", false);
VerifySplitTemplate("Split.swm", "Split*.swm", true);
}
public void VerifyTemplate(string wimFileName, bool result)
{
string wimFile = Path.Combine(TestSetup.SampleDir, wimFileName);
bool[] _checked = new bool[3];
for (int i = 0; i < _checked.Length; i++)
_checked[i] = false;
CallbackStatus ProgressCallback(ProgressMsg msg, object info, object progctx)
{
Console.WriteLine($"Callback msg={msg}");
switch (msg)
{
case ProgressMsg.BeginVerifyImage:
{
VerifyImageProgress m = (VerifyImageProgress)info;
Assert.IsNotNull(m);
_checked[0] = true;
}
break;
case ProgressMsg.EndVerifyImage:
{
VerifyImageProgress m = (VerifyImageProgress)info;
Assert.IsNotNull(m);
_checked[1] = true;
}
break;
case ProgressMsg.VerifyStreams:
{
VerifyStreamsProgress m = (VerifyStreamsProgress)info;
Assert.IsNotNull(m);
Console.WriteLine($"Bytes={m.CurrentBytes}/{m.TotalBytes}, {m.CurrentStreams}/{m.TotalStreams}");
_checked[2] = true;
}
break;
}
return CallbackStatus.Continue;
}
try
{
using (Wim wim = Wim.OpenWim(wimFile, OpenFlags.None))
{
wim.RegisterCallback(ProgressCallback);
wim.VerifyWim();
}
}
catch (WimLibException)
{
if (result)
Assert.Fail();
else
return;
}
Assert.IsTrue(_checked.All(x => x));
}
public void VerifySplitTemplate(string wimFileName, string splitWildcard, bool result)
{
string wimFile = Path.Combine(TestSetup.SampleDir, wimFileName);
string splitWimFiles = Path.Combine(TestSetup.SampleDir, splitWildcard);
bool[] _checked = new bool[3];
for (int i = 0; i < _checked.Length; i++)
_checked[i] = false;
CallbackStatus ProgressCallback(ProgressMsg msg, object info, object progctx)
{
switch (msg)
{
case ProgressMsg.BeginVerifyImage:
{
VerifyImageProgress m = (VerifyImageProgress)info;
Assert.IsNotNull(info);
_checked[0] = true;
}
break;
case ProgressMsg.EndVerifyImage:
{
VerifyImageProgress m = (VerifyImageProgress)info;
Assert.IsNotNull(info);
_checked[1] = true;
}
break;
case ProgressMsg.VerifyStreams:
{
VerifyStreamsProgress m = (VerifyStreamsProgress)info;
Assert.IsNotNull(info);
_checked[2] = true;
}
break;
}
return CallbackStatus.Continue;
}
try
{
using (Wim wim = Wim.OpenWim(wimFile, OpenFlags.None))
{
wim.RegisterCallback(ProgressCallback);
wim.ReferenceResourceFile(splitWimFiles, RefFlags.GlobEnable | RefFlags.GlobErrOnNoMatch, OpenFlags.None);
wim.VerifyWim();
}
}
catch (WimLibException)
{
if (result)
Assert.Fail();
else
return;
}
Assert.IsTrue(_checked.All(x => x));
}
#endregion
}
}