-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathescape-tests.js
73 lines (54 loc) · 2.41 KB
/
escape-tests.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
'use strict'
var helper = require(__dirname + '/test-helper')
function createClient (callback) {
var client = new Client(helper.config)
client.connect(function (err) {
return callback(client)
})
}
var testLit = function (testName, input, expected) {
test(testName, function () {
var client = new Client(helper.config)
var actual = client.escapeLiteral(input)
assert.equal(expected, actual)
})
}
var testIdent = function (testName, input, expected) {
test(testName, function () {
var client = new Client(helper.config)
var actual = client.escapeIdentifier(input)
assert.equal(expected, actual)
})
}
testLit('escapeLiteral: no special characters',
'hello world', "'hello world'")
testLit('escapeLiteral: contains double quotes only',
'hello " world', "'hello \" world'")
testLit('escapeLiteral: contains single quotes only',
'hello \' world', "'hello \'\' world'")
testLit('escapeLiteral: contains backslashes only',
'hello \\ world', " E'hello \\\\ world'")
testLit('escapeLiteral: contains single quotes and double quotes',
'hello \' " world', "'hello '' \" world'")
testLit('escapeLiteral: contains double quotes and backslashes',
'hello \\ " world', " E'hello \\\\ \" world'")
testLit('escapeLiteral: contains single quotes and backslashes',
'hello \\ \' world', " E'hello \\\\ '' world'")
testLit('escapeLiteral: contains single quotes, double quotes, and backslashes',
'hello \\ \' " world', " E'hello \\\\ '' \" world'")
testIdent('escapeIdentifier: no special characters',
'hello world', '"hello world"')
testIdent('escapeIdentifier: contains double quotes only',
'hello " world', '"hello "" world"')
testIdent('escapeIdentifier: contains single quotes only',
'hello \' world', '"hello \' world"')
testIdent('escapeIdentifier: contains backslashes only',
'hello \\ world', '"hello \\ world"')
testIdent('escapeIdentifier: contains single quotes and double quotes',
'hello \' " world', '"hello \' "" world"')
testIdent('escapeIdentifier: contains double quotes and backslashes',
'hello \\ " world', '"hello \\ "" world"')
testIdent('escapeIdentifier: contains single quotes and backslashes',
'hello \\ \' world', '"hello \\ \' world"')
testIdent('escapeIdentifier: contains single quotes, double quotes, and backslashes',
'hello \\ \' " world', '"hello \\ \' "" world"')