forked from pattern-lab/patternlab-node
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprocessRecursive_tests.js
More file actions
465 lines (398 loc) · 15.9 KB
/
processRecursive_tests.js
File metadata and controls
465 lines (398 loc) · 15.9 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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
'use strict';
const tap = require('tap');
const path = require('path');
const util = require('./util/test_utils.js');
const buildListItems = require('../core/lib/buildListItems');
const loadPattern = require('../core/lib/loadPattern');
const engineLoader = require('../core/lib/pattern_engines');
const processRecursive = require('../core/lib/processRecursive');
const processIterative = require('../core/lib/processIterative');
var config = require('./util/patternlab-config.json');
engineLoader.loadAllEngines(config);
const patterns_dir = './test/files/_patterns';
tap.test('processRecursive recursively includes partials', function(test) {
//assert
const patternlab = util.fakePatternLab(patterns_dir);
var fooPatternPath = path.join('00-test', '00-foo.mustache');
var fooPattern = loadPattern(fooPatternPath, patternlab);
var barPatternPath = path.join('00-test', '01-bar.mustache');
var barPattern = loadPattern(barPatternPath, patternlab);
var p1 = processIterative(fooPattern, patternlab);
var p2 = processIterative(barPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(fooPatternPath, patternlab)
.then(() => {
//assert
const expectedValue = 'bar';
test.equals(
util.sanitized(fooPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
});
tap.test(
'processRecursive - correctly replaces all stylemodifiers when multiple duplicate patterns with different stylemodifiers found',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var groupPath = path.join('00-test', '04-group.mustache');
var groupPattern = loadPattern(groupPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(groupPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(groupPath, patternlab)
.then(() => {
//assert
const expectedValue =
'<div class="test_group"> <span class="test_base test_1"> {{message}} </span> <span class="test_base test_2"> {{message}} </span> <span class="test_base test_3"> {{message}} </span> <span class="test_base test_4"> {{message}} </span> </div>';
test.equals(
util.sanitized(groupPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.only(
'processRecursive - correctly replaces multiple stylemodifier classes on same partial',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var groupPath = path.join(
'00-test',
'10-multiple-classes-numeric.mustache'
);
var groupPattern = loadPattern(groupPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(groupPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(groupPath, patternlab)
.then(() => {
//assert
const expectedValue =
'<div class="test_group"> <span class="test_base foo1"> {{message}} </span> <span class="test_base foo1 foo2"> {{message}} </span> <span class="test_base foo1 foo2"> bar </span> </div>';
test.equals(
util.sanitized(groupPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.test(
'processRecursive - correctly ignores a partial without a style modifier when the same partial later has a style modifier',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var mixedPath = path.join('00-test', '06-mixed.mustache');
var mixedPattern = loadPattern(mixedPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(mixedPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(mixedPath, patternlab)
.then(() => {
//assert. here we expect {{styleModifier}} to be in the first group, since it was not replaced by anything. rendering with data will then remove this (correctly)
const expectedValue =
'<div class="test_group"> <span class="test_base {{styleModifier}}"> {{message}} </span> <span class="test_base test_2"> {{message}} </span> <span class="test_base test_3"> {{message}} </span> <span class="test_base test_4"> {{message}} </span> </div>';
test.equals(
util.sanitized(mixedPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.test(
'processRecursive - correctly ignores bookended partials without a style modifier when the same partial has a style modifier between',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var bookendPath = path.join('00-test', '09-bookend.mustache');
var bookendPattern = loadPattern(bookendPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(bookendPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(bookendPath, patternlab)
.then(() => {
//assert. here we expect {{styleModifier}} to be in the first and last group, since it was not replaced by anything. rendering with data will then remove this (correctly)
const expectedValue =
'<div class="test_group"> <span class="test_base {{styleModifier}}"> {{message}} </span> <span class="test_base test_2"> {{message}} </span> <span class="test_base test_3"> {{message}} </span> <span class="test_base {{styleModifier}}"> {{message}} </span> </div>';
test.equals(
util.sanitized(bookendPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.test(
'processRecursive - correctly ignores a partial without a style modifier when the same partial later has a style modifier and pattern parameters',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var mixedPath = path.join('00-test', '07-mixed-params.mustache');
var mixedPattern = loadPattern(mixedPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(mixedPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(mixedPath, patternlab)
.then(() => {
//assert. here we expect {{styleModifier}} to be in the first span, since it was not replaced by anything. rendering with data will then remove this (correctly)
const expectedValue =
'<div class="test_group"> <span class="test_base {{styleModifier}}"> {{message}} </span> <span class="test_base test_2"> 2 </span> <span class="test_base test_3"> 3 </span> <span class="test_base test_4"> 4 </span> </div>';
test.equals(
util.sanitized(mixedPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.test(
'processRecursive - correctly ignores bookended partials without a style modifier when the same partial has a style modifier and pattern parameters between',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var bookendPath = path.join('00-test', '08-bookend-params.mustache');
var bookendPattern = loadPattern(bookendPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(bookendPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(bookendPath, patternlab)
.then(() => {
//assert. here we expect {{styleModifier}} to be in the first and last span, since it was not replaced by anything. rendering with data will then remove this (correctly)
const expectedValue =
'<div class="test_group"> <span class="test_base {{styleModifier}}"> {{message}} </span> <span class="test_base test_2"> 2 </span> <span class="test_base test_3"> 3 </span> <span class="test_base {{styleModifier}}"> {{message}} </span> </div>';
test.equals(
util.sanitized(bookendPattern.extendedTemplate),
util.sanitized(expectedValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap.test(
'processRecursive - does not pollute previous patterns when a later one is found with a styleModifier',
function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '03-styled-atom.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var anotherPath = path.join('00-test', '12-another-styled-atom.mustache');
var anotherPattern = loadPattern(anotherPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(anotherPattern, patternlab);
Promise.all([p1, p2])
.then(() => {
//act
processRecursive(anotherPath, patternlab)
.then(() => {
//assert
const expectedCleanValue =
'<span class="test_base {{styleModifier}}"> {{message}} </span>';
const expectedSetValue =
'<span class="test_base test_1"> {{message}} </span>';
//this is the "atom" - it should remain unchanged
test.equals(
util.sanitized(atomPattern.template),
util.sanitized(expectedCleanValue)
);
test.equals(
util.sanitized(atomPattern.extendedTemplate),
util.sanitized(expectedCleanValue)
);
// this is the style modifier pattern, which should resolve correctly
test.equals(
util.sanitized(anotherPattern.template),
'{{> test-styled-atom:test_1 }}'
);
test.equals(
util.sanitized(anotherPattern.extendedTemplate),
util.sanitized(expectedSetValue)
);
test.end();
})
.catch(test.threw);
})
.catch(test.threw);
}
);
tap
.test('processRecursive - ensure deep-nesting works', function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
var atomPath = path.join('00-test', '01-bar.mustache');
var atomPattern = loadPattern(atomPath, patternlab);
var templatePath = path.join('00-test', '00-foo.mustache');
var templatePattern = loadPattern(templatePath, patternlab);
var pagesPath = path.join('00-test', '14-inception.mustache');
var pagesPattern = loadPattern(pagesPath, patternlab);
var p1 = processIterative(atomPattern, patternlab);
var p2 = processIterative(templatePattern, patternlab);
var p3 = processIterative(pagesPattern, patternlab);
return Promise.all([
p1,
p2,
p3,
processRecursive(atomPath, patternlab),
processRecursive(templatePath, patternlab),
processRecursive(pagesPath, patternlab),
]).then(() => {
//act
return test.test(
'processRecursive - ensure deep-nesting works2',
function(tt) {
//assert
const expectedCleanValue = 'bar';
const expectedSetValue = 'bar';
//this is the "atom" - it should remain unchanged
tt.equals(util.sanitized(atomPattern.template), expectedCleanValue);
tt.equals(
util.sanitized(atomPattern.extendedTemplate),
expectedCleanValue
);
//this is the "template pattern" - it should have an updated extendedTemplate but an unchanged template
tt.equals(
util.sanitized(templatePattern.template),
'{{> test-bar }}'
);
tt.equals(
util.sanitized(templatePattern.extendedTemplate),
expectedSetValue
);
//this is the "pages pattern" - it should have an updated extendedTemplate equal to the template pattern but an unchanged template
tt.equals(util.sanitized(pagesPattern.template), '{{> test-foo }}');
tt.equals(
util.sanitized(pagesPattern.extendedTemplate),
expectedSetValue
);
tt.end();
test.end();
}
);
});
})
.catch(tap.threw);
tap.test('hidden patterns can be called by their nice names', function(test) {
//arrange
const patternlab = util.fakePatternLab(patterns_dir);
//act
var hiddenPatternPath = path.join('00-test', '_00-hidden-pattern.mustache');
var hiddenPattern = loadPattern(hiddenPatternPath, patternlab);
var testPatternPath = path.join(
'00-test',
'15-hidden-pattern-tester.mustache'
);
var testPattern = loadPattern(testPatternPath, patternlab);
var p1 = processIterative(hiddenPattern, patternlab);
var p2 = processIterative(testPattern, patternlab);
Promise.all([p1, p2]).then(() => {
//act
processRecursive(hiddenPatternPath, patternlab).then(() => {
processRecursive(testPatternPath, patternlab).then(() => {
testPattern.render().then(results => {
//assert
test.equals(
util.sanitized(results),
util.sanitized(
"Hello there! Here's the hidden atom: [This is the hidden atom]"
),
'hidden pattern rendered output not as expected'
);
test.end();
});
});
});
});
});
tap.test('parses pattern title correctly when frontmatter present', function(
test
) {
//arrange
var pl = util.fakePatternLab(patterns_dir);
var testPatternPath = path.join('00-test', '01-bar.mustache');
var testPattern = loadPattern(testPatternPath, pl);
//act
Promise.all([
processIterative(testPattern, pl),
processRecursive(testPatternPath, pl),
])
.then(results => {
//assert
test.equals(
results[0].patternName,
'An Atom Walks Into a Bar',
'patternName not overridden'
);
test.end();
})
.catch(test.threw);
});
tap.test(
'parses pattern extra frontmatter correctly when frontmatter present',
function(test) {
//arrange
var pl = util.fakePatternLab(patterns_dir);
var testPatternPath = path.join('00-test', '01-bar.mustache');
var testPattern = loadPattern(testPatternPath, pl);
//act
Promise.all([
processIterative(testPattern, pl),
processRecursive(testPatternPath, pl),
])
.then(results => {
//assert
test.equals(results[0].allMarkdown.joke, 'bad', 'extra key not added');
test.end();
})
.catch(test.threw);
}
);