-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
mustachejs.spec.ts
264 lines (260 loc) · 4.57 KB
/
mustachejs.spec.ts
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
import * as mustache from 'mustache'
import { Scope, render } from './index'
class ClassWithToString {
public toString(): string {
return 'Hello world'
}
}
interface ITestCase {
readonly description: string
readonly template: string
readonly scope: Scope
}
const testCases: ITestCase[] = [
{
description: 'empty template',
template: '',
scope: {},
},
{
description: 'empty value interpolation',
template: '{{a}}',
scope: {
a: '',
},
},
{
description: 'numerical string value interpolation',
template: '{{a}}',
scope: {
a: '1',
},
},
{
description: 'string value interpolation',
template: '{{a}}',
scope: {
a: 'a',
},
},
{
description: 'numerical value interpolation',
template: '{{a}}',
scope: {
a: 11,
},
},
{
description: 'empty string interpolation',
template: '{{a}}',
scope: {
a: ' ',
},
},
{
description: 'space around variable in the template',
template: ' {{a}} ',
scope: {
a: '',
},
},
{
description: 'space around variable and in the value',
template: ' {{a}} ',
scope: {
a: ' ',
},
},
{
description: 'two variables but one is missing from the scope',
template: ' {{a}} {{b}} ',
scope: {
a: ' ',
},
},
{
description: 'two values',
template: ' {{a}} {{b}} ',
scope: {
a: 'a',
b: 'b',
},
},
{
description: 'more than one interpolation',
template: ' {{a}} {{a}} {{a}}',
scope: {
a: 'a',
},
},
{
description: 'more than one interpolation with a value of dash',
template: ' {{a}} {{a}} {{a}}',
scope: {
a: '-',
},
},
{
description: 'numerical path',
template: '{{1}}',
scope: {
'1': '-',
},
},
{
description: 'an invalid javascript id as path',
template: '{{1a}}',
scope: {
'1a': '-',
},
},
{
description: 'a null value',
template: '{{a}}',
scope: {
a: null,
},
},
{
description: 'a numerical and null value',
template: '{{a}},{{b}}',
scope: {
a: 123,
b: null,
},
},
{
description: 'an empty data object (all keys missing)',
template: '{{a}}',
scope: {},
},
{
description: 'boolean value',
template: '{{a}}',
scope: {
a: true,
},
},
{
description: 'boolean false value',
template: '{{a}}',
scope: {
a: false,
},
},
{
description: 'NaN value',
template: '{{a}}',
scope: {
a: NaN,
},
},
{
description: 'POSITIVE_INFINITY value',
template: '{{a}}',
scope: {
a: Number.POSITIVE_INFINITY,
},
},
{
description: 'NEGATIVE_INFINITY value',
template: '{{a}}',
scope: {
a: Number.NEGATIVE_INFINITY,
},
},
{
description: 'a value of 0',
template: '{{a}}',
scope: {
a: 0,
},
},
{
description: 'a real numerical value',
template: '{{a}}',
scope: {
a: 0.1,
},
},
{
description: 'EPSILON value',
template: '{{a}}',
scope: {
a: Number.EPSILON,
},
},
{
description: '$ as path',
template: '{{$}}',
scope: {
$: 'test',
},
},
{
description: 'underline path',
template: '{{_}}',
scope: {
_: 'test',
},
},
{
description: 'empty spaces before path',
template: '{{ a}}',
scope: {
a: 'test',
},
},
{
description: 'empty spaces after path',
template: '{{a }}',
scope: {
a: 'test',
},
},
{
description: 'empty spaces around the path',
template: '{{ a }}',
scope: {
a: 'test',
},
},
{
description: '"var" as path',
template: '{{var}}',
scope: {
var: 'test',
},
},
{
description: 'nested values',
template: '{{foo.bar}}',
scope: {
foo: {
bar: 'baz',
},
},
},
{
description: 'keys as indexes to an array',
template: 'I like {{0}}, {{1}} and {{2}}',
scope: ['orange', 'apple', 'lemon'],
},
{
description: 'An object with toString()',
template: '{{obj}}',
scope: {
obj: new ClassWithToString(),
},
},
]
describe('MustacheJS compatibility', () => {
testCases.forEach((testCase) => {
const { description, template, scope } = testCase
it(`shows the same behaviour as mustache for ${description}`, () => {
const micromustacheOutput = render(template, scope)
const mustacheOutput = mustache.render(template, scope)
expect(micromustacheOutput).toBe(mustacheOutput)
})
})
})