forked from taozhi8833998/node-sql-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathupdate.spec.js
More file actions
216 lines (207 loc) · 6.26 KB
/
Copy pathupdate.spec.js
File metadata and controls
216 lines (207 loc) · 6.26 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
const { expect } = require('chai');
const Parser = require('../src/parser').default
describe('update', () => {
const parser = new Parser();
function getParsedSql(sql, opt) {
const ast = parser.astify(sql, opt);
return parser.sqlify(ast, opt);
}
it('should parse baisc usage', () => {
const { tableList, columnList, ast } = parser.parse('UPDATE a set id = 1');
expect(tableList).to.eql(["update::null::a"]);
expect(columnList).to.eql(["update::null::id"]);
expect(ast.type).to.be.eql('update');
expect(ast.table).to.be.eql([{
"db": null,
"table": "a",
"as": null
}]);
expect(ast.set).to.eql([{
column: 'id',
table: null,
value: {
type: 'number',
value: 1
}
}]);
expect(ast.where).to.be.null;
});
it('should parse baisc usage', () => {
const { tableList, columnList, ast } = parser.parse('UPDATE a set a.id = 1');
expect(tableList).to.eql(["update::null::a"]);
expect(columnList).to.eql(["update::a::id"]);
expect(ast.type).to.be.eql('update');
expect(ast.table).to.be.eql([{
"db": null,
"table": "a",
"as": null
}]);
expect(ast.set).to.eql([{
column: 'id',
table: 'a',
value: {
type: 'number',
value: 1
}
}]);
expect(ast.where).to.be.null;
});
it('should parse function expression', () => {
const { tableList, columnList, ast } = parser.parse("UPDATE t SET col1 = concat(name, '名字')");
expect(tableList).to.eql(["update::null::t"]);
expect(columnList).to.eql(["select::null::name", "update::null::col1"]);
expect(ast.type).to.be.eql('update');
expect(ast.table).to.be.eql([
{
"db": null,
"table": "t",
"as": null
}
]);
expect(ast.set).to.eql([
{
column: "col1",
table: null,
value: {
type: "function",
name: "concat",
over: null,
args: {
type: "expr_list",
value: [
{
type: "column_ref",
table: null,
column: "name"
},
{
type: "single_quote_string",
value: "名字"
}
]
}
}
}
]);
expect(ast.where).to.be.null;
});
it('should parser set is null', () => {
const set = [
{
"column": "id",
"table": null
}
]
const value = {
"type": "number",
"value": 1
}
const ast = {
"type": "update",
"table": [
{
"db": null,
"table": "a",
"as": null
}
],
"where": null
}
expect(parser.sqlify(ast)).to.be.equal('UPDATE `a`')
ast.set = []
expect(parser.sqlify(ast)).to.be.equal('UPDATE `a` SET ')
ast.set = set
expect(parser.sqlify(ast)).to.be.equal('UPDATE `a` SET `id`')
set[0].value = value
expect(parser.sqlify(ast)).to.be.equal('UPDATE `a` SET `id` = 1')
})
it('should parse cross-table update', () => {
const { tableList, columnList, ast } = parser.parse("UPDATE Reservations r JOIN Train t ON (r.Train = t.TrainID) SET t.Capacity = t.Capacity + r.NoSeats WHERE r.ReservationID = 12");
expect(tableList).to.eql([
"update::null::Reservations",
"update::null::Train"
]);
expect(columnList).to.eql([
"select::Reservations::Train",
"select::Train::TrainID",
"select::Train::Capacity",
"select::Reservations::NoSeats",
"select::Reservations::ReservationID",
"update::Train::Capacity"
]);
expect(ast.type).to.be.eql('update');
expect(ast.table).to.be.eql([
{
"db": null,
"table": "Reservations",
"as": "r"
},
{
"db": null,
"table": "Train",
"as": "t",
"join": "INNER JOIN",
"on": {
"type": "binary_expr",
"operator": "=",
"left": {
"type": "column_ref",
"table": "r",
"column": "Train"
},
"right": {
"type": "column_ref",
"table": "t",
"column": "TrainID"
},
"parentheses": true
}
}
]);
expect(ast.set).to.eql([
{
"column": "Capacity",
"value": {
"type": "binary_expr",
"operator": "+",
"left": {
"type": "column_ref",
"table": "t",
"column": "Capacity"
},
"right": {
"type": "column_ref",
"table": "r",
"column": "NoSeats"
}
},
"table": "t"
}
]);
expect(ast.where).to.be.eql({
"type": "binary_expr",
"operator": "=",
"left": {
"type": "column_ref",
"table": "r",
"column": "ReservationID"
},
"right": {
"type": "number",
"value": 12
}
});
})
it('should support order by and limit in update sql', () => {
expect(getParsedSql('update a set id = 123 where age > 15 order by name')).to.be.equal('UPDATE `a` SET `id` = 123 WHERE `age` > 15 ORDER BY `name` ASC')
expect(getParsedSql('update a set id = 123 order by name')).to.be.equal('UPDATE `a` SET `id` = 123 ORDER BY `name` ASC')
expect(getParsedSql('update a set id = 123 limit 10')).to.be.equal('UPDATE `a` SET `id` = 123 LIMIT 10')
expect(getParsedSql('update a set id = 123 order by name limit 10')).to.be.equal('UPDATE `a` SET `id` = 123 ORDER BY `name` ASC LIMIT 10')
})
it('should support parse pg update returning', () => {
const sql = 'update account set id = 1 where name = "abc" returning id'
const ast = parser.astify(sql, { database: 'postgresql' })
const backSQL = parser.sqlify(ast)
expect(backSQL).to.be.equal("UPDATE `account` SET `id` = 1 WHERE `name` = \"abc\" RETURNING `id`")
})
});