-
Notifications
You must be signed in to change notification settings - Fork 83
Expand file tree
/
Copy pathParsingTests.cs
More file actions
422 lines (357 loc) · 7.96 KB
/
ParsingTests.cs
File metadata and controls
422 lines (357 loc) · 7.96 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SkiaSharp;
using System.Collections.Generic;
using System.IO;
using System.Threading.Tasks;
using Waher.Content;
using Waher.Content.Images;
using Waher.Content.Xml;
using Waher.Events;
using Waher.Runtime.Inventory;
using Waher.Script;
using Waher.Script.Content.Functions.Encoding;
using Waher.Script.Graphs;
namespace Waher.Layout.Layout2D.Test
{
[TestClass]
public class ParsingTests
{
[AssemblyInitialize]
public static void AssemblyInitialize(TestContext _)
{
Types.Initialize(
typeof(ParsingTests).Assembly,
typeof(InternetContent).Assembly,
typeof(ImageCodec).Assembly,
typeof(XML).Assembly,
typeof(Log).Assembly,
typeof(Expression).Assembly,
typeof(Graph).Assembly,
typeof(QrEncode).Assembly,
typeof(Layout2DDocument).Assembly);
}
protected Task Test(string FileName)
{
return this.Test(FileName, new Variables());
}
protected Task Test(string FileName, params Variable[] Variables)
{
return this.Test(FileName, new Variables(Variables));
}
protected Task Test(string FileName,
params KeyValuePair<string, object>[] ContentAttachments)
{
return this.Test(FileName, [], ContentAttachments);
}
protected virtual async Task Test(string FileName, Variables Variables,
params KeyValuePair<string, object>[] ContentAttachments)
{
await Layout2DDocument.FromFile(Path.Combine("Xml", FileName + ".xml"),
true, Variables, ContentAttachments);
}
[TestMethod]
public async Task Test_01_Lengths()
{
await this.Test("Test_01_Lengths");
}
[TestMethod]
public async Task Test_02_Circle()
{
await this.Test("Test_02_Circle");
}
[TestMethod]
public async Task Test_03_CircleArc()
{
await this.Test("Test_03_CircleArc");
}
[TestMethod]
public async Task Test_04_Dot()
{
await this.Test("Test_04_Dot");
}
[TestMethod]
public async Task Test_05_Ellipse()
{
await this.Test("Test_05_Ellipse");
}
[TestMethod]
public async Task Test_06_EllipseArc()
{
await this.Test("Test_06_EllipseArc");
}
[TestMethod]
public async Task Test_07_Line()
{
await this.Test("Test_07_Line");
}
[TestMethod]
public async Task Test_08_Loop()
{
await this.Test("Test_08_Loop");
}
[TestMethod]
public async Task Test_09_Polygon()
{
await this.Test("Test_09_Polygon");
}
[TestMethod]
public async Task Test_10_PolyLine()
{
await this.Test("Test_10_PolyLine");
}
[TestMethod]
public async Task Test_11_Rectangle()
{
await this.Test("Test_11_Rectangle");
}
[TestMethod]
public async Task Test_12_RoundedRectangle()
{
await this.Test("Test_12_RoundedRectangle");
}
[TestMethod]
public async Task Test_13_Spline()
{
await this.Test("Test_13_Spline");
}
[TestMethod]
public async Task Test_14_Path()
{
await this.Test("Test_14_Path");
}
[TestMethod]
public async Task Test_15_Arrow()
{
await this.Test("Test_15_Arrow");
}
[TestMethod]
public async Task Test_16_Rotate()
{
await this.Test("Test_16_Rotate");
}
[TestMethod]
public async Task Test_17_Rotate_Pivot()
{
await this.Test("Test_17_Rotate_Pivot");
}
[TestMethod]
public async Task Test_18_Translate()
{
await this.Test("Test_18_Translate");
}
[TestMethod]
public async Task Test_19_Scale()
{
await this.Test("Test_19_Scale");
}
[TestMethod]
public async Task Test_20_Scale_Pivot()
{
await this.Test("Test_20_Scale_Pivot");
}
[TestMethod]
public async Task Test_21_SkewX()
{
await this.Test("Test_21_SkewX");
}
[TestMethod]
public async Task Test_22_SkewX_Pivot()
{
await this.Test("Test_22_SkewX_Pivot");
}
[TestMethod]
public async Task Test_23_SkewY()
{
await this.Test("Test_23_SkewY");
}
[TestMethod]
public async Task Test_24_SkewY_Pivot()
{
await this.Test("Test_24_SkewY_Pivot");
}
[TestMethod]
public async Task Test_25_Horizontal()
{
await this.Test("Test_25_Horizontal");
}
[TestMethod]
public async Task Test_26_Vertical()
{
await this.Test("Test_26_Vertical");
}
[TestMethod]
public async Task Test_27_Overlays()
{
await this.Test("Test_27_Overlays");
}
[TestMethod]
public async Task Test_28_Flexible_LRTD()
{
await this.Test("Test_28_Flexible_LRTD");
}
[TestMethod]
public async Task Test_29_Flexible_RLTD()
{
await this.Test("Test_29_Flexible_RLTD");
}
[TestMethod]
public async Task Test_30_Flexible_LRDT()
{
await this.Test("Test_30_Flexible_LRDT");
}
[TestMethod]
public async Task Test_31_Flexible_RLDT()
{
await this.Test("Test_31_Flexible_RLDT");
}
[TestMethod]
public async Task Test_32_Flexible_TDLR()
{
await this.Test("Test_32_Flexible_TDLR");
}
[TestMethod]
public async Task Test_33_Flexible_TDRL()
{
await this.Test("Test_33_Flexible_TDRL");
}
[TestMethod]
public async Task Test_34_Flexible_DTLR()
{
await this.Test("Test_34_Flexible_DTLR");
}
[TestMethod]
public async Task Test_35_Flexible_DTRL()
{
await this.Test("Test_35_Flexible_DTRL");
}
[TestMethod]
public async Task Test_36_Grid()
{
await this.Test("Test_36_Grid");
}
[TestMethod]
public async Task Test_37_Images()
{
SKBitmap Bitmap = SKBitmap.Decode(Path.Combine("Images", "Icon_64x64_File.png"));
SKImage Image = SKImage.FromBitmap(Bitmap);
Variables Variables = new Variables()
{
{ "img0002", Image }
};
await this.Test("Test_37_Images", Variables,
new KeyValuePair<string, object>("img0001", Image));
}
[TestMethod]
public async Task Test_38_Labels()
{
await this.Test("Test_38_Labels");
}
[TestMethod]
public async Task Test_39_Stack()
{
await this.Test("Test_39_Stack");
}
[TestMethod]
public async Task Test_40_HorizontalBars()
{
await this.Test("Test_40_HorizontalBars");
}
[TestMethod]
public async Task Test_41_FlexibleLegend()
{
await this.Test("Test_41_FlexibleLegend");
}
[TestMethod]
public async Task Test_42_Pie()
{
await this.Test("Test_42_Pie");
}
[TestMethod]
public async Task Test_43_HorizontalBars()
{
await this.Test("Test_43_HorizontalBars");
}
[TestMethod]
public async Task Test_44_Paragraph_TL()
{
await this.Test("Test_44_Paragraph_TL");
}
[TestMethod]
public async Task Test_45_Paragraph_TC()
{
await this.Test("Test_45_Paragraph_TC");
}
[TestMethod]
public async Task Test_46_Paragraph_TR()
{
await this.Test("Test_46_Paragraph_TR");
}
[TestMethod]
public async Task Test_47_Paragraph_BL()
{
await this.Test("Test_47_Paragraph_BL");
}
[TestMethod]
public async Task Test_48_Paragraph_BC()
{
await this.Test("Test_48_Paragraph_BC");
}
[TestMethod]
public async Task Test_49_Paragraph_BR()
{
await this.Test("Test_49_Paragraph_BR");
}
[TestMethod]
public async Task Test_50_Paragraph_CL()
{
await this.Test("Test_50_Paragraph_CL");
}
[TestMethod]
public async Task Test_51_Paragraph_CC()
{
await this.Test("Test_51_Paragraph_CC");
}
[TestMethod]
public async Task Test_52_Paragraph_CR()
{
await this.Test("Test_52_Paragraph_CR");
}
[TestMethod]
public async Task Test_53_Paragraph_BLL()
{
await this.Test("Test_53_Paragraph_BLL");
}
[TestMethod]
public async Task Test_54_Paragraph_BLC()
{
await this.Test("Test_54_Paragraph_BLC");
}
[TestMethod]
public async Task Test_55_Paragraph_BLR()
{
await this.Test("Test_55_Paragraph_BLR");
}
[TestMethod]
public async Task Test_56_ImageScript()
{
await this.Test("Test_56_ImageScript");
}
[TestMethod]
public virtual async Task Test_57_HeightUndefined()
{
await this.Test("Test_57_HeightUndefined");
}
[TestMethod]
public async Task Test_58_Certificate()
{
await this.Test("Test_58_Certificate",
new Variable("VarA", 12),
new Variable("VarB", 13));
}
[TestMethod]
public async Task Test_59_Paragraph_IsVisible()
{
await this.Test("Test_59_Paragraph_IsVisible");
}
}
}