-
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathtest-loops.js
141 lines (117 loc) · 3.4 KB
/
test-loops.js
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
const test = require('ava')
const join = require('path').join
const readSync = require('fs').readFileSync
const posthtml = require('posthtml')
const expressions = require('../lib')
const fixture = (file) => {
return readSync(join(__dirname, 'fixtures', `${file}.html`), 'utf8')
}
const expect = (file) => {
return readSync(join(__dirname, 'expect', `${file}.html`), 'utf8')
}
function process (t, name, options, log = false) {
return posthtml([expressions(options)])
.process(fixture(name))
.then((result) => {
log && console.log(result.html)
return clean(result.html)
})
.then((html) => {
t.is(html, expect(name).trim())
})
}
function error (name, cbErr, cbSuccess, pluginOptions) {
return posthtml([expressions(pluginOptions)])
.process(fixture(name))
.then(cbSuccess)
.catch(cbErr)
}
function clean (html) {
return html.replace(/[^\S\r\n]+$/gm, '').trim()
}
test('Loops', (t) => {
return process(t, 'loop', { locals: { items: [1, 2, 3] } })
})
test('Loops - {Object}', (t) => {
return process(t, 'loop_object', {
locals: { items: { a: 'b', c: 'd' } }
})
})
test('Loops - nested', (t) => {
return process(t, 'loop_nested', {
locals: { items: { c1: [1, 2, 3], c2: [4, 5, 6] } }
})
})
test('Loops - locals included', (t) => {
return process(t, 'loop_locals', {
locals: { items: [1, 2, 3], foo: 'bar' }
})
})
test('Loops - conditional included', (t) => {
return process(t, 'loop_conditional', {
locals: { items: [1, 2, 3] }
})
})
test('Loops - conditional and locals included', (t) => {
return process(t, 'loop_conditional_locals', {
locals: {
pages: [
{ path: '/page1', title: 'Page 1' },
{ path: '/page2', title: 'Page 2' },
{ path: '/page3', title: 'Page 3' }
],
current_path: '/page1'
}
})
})
test('Loops - conflicting locals', (t) => {
return process(t, 'loop_conflict', {
locals: { items: [1, 2, 3], item: 'bar' }
})
})
test('Loops - custom tag', (t) => {
return process(t, 'loop_customtag', {
loopTags: ['for', 'each'],
locals: { items: [1, 2, 3] }
})
})
test('Loops - no loop attribute', (t) => {
return error('loop_no_attr', (err) => {
t.is(err.message, 'the "each" tag must have a "loop" attribute')
})
})
test('Loops - no array or object passed', (t) => {
return error('loop_no_collection', (err) => {
t.is(err.toString(), 'Error: You must provide an array or object to loop through')
})
})
test('Loops - no array or object passed with disabled strict mode', (t) => {
return error('loop_no_collection', () => {}, (response) => {
t.truthy(response)
}, { strictMode: false })
})
test('Loops - no loop arguments', (t) => {
return error('loop_no_args', (err) => {
t.truthy(err.toString() === 'Error: You must provide at least one loop argument')
})
})
test('Loops - no "in" keyword', (t) => {
return error('loop_no_in', (err) => {
t.truthy(err.toString() === "Error: Loop statement lacking 'in' keyword")
})
})
test('Loops - expression error', (t) => {
return error('loop_expression_error', (err) => {
t.is(err.message, 'SyntaxError: Invalid or unexpected token')
})
})
test('Loops - metadata', (t) => {
return process(t, 'loop_metadata', {
locals: { items: [1, 2, 3] }
})
})
test('Loops - nested metadata', (t) => {
return process(t, 'loop_nested_metadata', {
locals: { items: { foo: [1, 2], bar: [3, 4] } }
})
})