-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexp-parser.js
262 lines (225 loc) · 7.15 KB
/
exp-parser.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
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
describe('Expression Parser', function () {
var ExpParser = require('vue/src/exp-parser'),
utils = require('vue/src/utils'),
oldWarn = utils.warn
var warnSpy = {
warned: false,
swapWarn: function () {
utils.warn = function () {
warnSpy.warned = true
}
},
resetWarn: function () {
utils.warn = oldWarn
warnSpy.warned = false
}
}
var testCases = [
{
// string concat
exp: 'a + b',
vm: {
a: 'hello',
b: 'world'
},
expectedValue: 'helloworld'
},
{
// math
exp: 'a - b * 2 + 45',
vm: {
a: 100,
b: 23
},
expectedValue: 100 - 23 * 2 + 45
},
{
// boolean logic
exp: '(a && b) ? c : d || e',
vm: {
a: true,
b: false,
c: null,
d: false,
e: 'worked'
},
expectedValue: 'worked'
},
{
// inline string
exp: "a + 'hello'",
vm: {
a: 'inline '
},
expectedValue: 'inline hello'
},
{
// complex with nested values
exp: "todo.title + ' : ' + (todo.done ? 'yep' : 'nope')",
paths: ['todo.title', 'todo.done'],
vm: {
todo: {
title: 'write tests',
done: false
}
},
expectedValue: 'write tests : nope'
},
{
// expression with no data variables
exp: "'a' + 'b'",
vm: {},
expectedValue: 'ab'
},
{
// values with same variable name inside strings
exp: "'\"test\"' + test + \"'hi'\" + hi",
vm: {
test: 1,
hi: 2
},
expectedValue: '"test"1\'hi\'2'
},
{
// expressions with inline object literals
exp: "sortRows({ column: 'name', test: 'haha', durrr: 123 })",
vm: {
sortRows: function (params) {
return params.column + params.durrr
}
},
expectedValue: 'name123'
}
]
testCases.forEach(describeCase)
describe('XSS protection', function () {
var cases = [
{
xss: true,
exp: "constructor.constructor('alert(1)')()",
vm: {}
},
{
xss: true,
exp: "\"\".toString.constructor.constructor('alert(1)')()",
vm: {}
},
{
xss: true,
exp: "\"\".toString['cons' + 'tructor']['cons' + 'tructor']('alert(1)')()",
vm: {}
},
{
xss: true,
exp: "\"\".toString['\\u0063ons' + 'tructor']['\\u0063ons' + 'tructor']('alert(1)')()",
vm: {}
}
]
cases.forEach(describeCase)
})
describe('scope trace', function () {
it('should determine the correct scope for variables', function () {
var bindingsCreated = {}
var getter = ExpParser.parse('a + b', mockCompiler({
parent: {
bindings: {},
createBinding: function (key) {
assert.strictEqual(key, 'a')
bindingsCreated[key] = true
},
hasKey: function (key) {
return key === 'a'
},
parent: {
bindings: {},
createBinding: function (key) {
assert.strictEqual(key, 'b')
bindingsCreated[key] = true
},
hasKey: function (key) {
return key === 'b'
}
}
}
}))
var getterString = getter.toString()
assert.ok(getterString.indexOf('this.$parent.a') > -1)
assert.ok(getterString.indexOf('this.$parent.$parent.b') > -1)
})
})
// extra case for invalid expressions
describe('invalid expression', function () {
before(warnSpy.swapWarn)
it('should capture the error and warn', function () {
ExpParser.parse('a + "fsef', mockCompiler())
assert.ok(warnSpy.warned)
})
after(warnSpy.resetWarn)
})
describe('.eval() with extra data', function () {
it('should be able to eval an epxression with temporary additional data', function () {
var res = ExpParser.eval('a + b', mockCompiler(), { a: 1, b: 2 })
assert.strictEqual(res, 3)
})
})
function describeCase (testCase) {
describe(testCase.exp, function () {
function createBinding (path) {
caughtMissingPaths.push(path)
}
var caughtMissingPaths = [],
compilerMock = {
createBinding: createBinding,
hasKey: function () {},
vm: testCase.vm
},
vars = testCase.paths || Object.keys(testCase.vm),
getter
if (testCase.xss) {
before(warnSpy.swapWarn)
after(warnSpy.resetWarn)
}
before(function () {
getter = ExpParser.parse(testCase.exp, compilerMock)
})
if (!testCase.xss) {
it('should get correct paths', function () {
if (!vars.length) return
assert.strictEqual(caughtMissingPaths.length, vars.length)
for (var i = 0; i < vars.length; i++) {
assert.strictEqual(vars[i], caughtMissingPaths[i])
}
})
it('getter function should return expected value', function () {
var value = getter.call(testCase.vm)
assert.strictEqual(value, testCase.expectedValue)
})
} else {
it('should return undefined getter', function () {
assert.strictEqual(getter, undefined)
})
it('should have warned', function () {
assert.ok(warnSpy.warned)
})
}
})
}
function noop () {}
function mockCompiler (opts) {
var mock = {
createBinding: noop,
hasKey: noop,
vm: {
$compiler: {
bindings: {},
createBinding: noop
},
$data: {}
}
}
for (var key in opts) {
mock[key] = opts[key]
}
return mock
}
})