forked from 2do2go/json-sql
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path5_union.js
256 lines (226 loc) · 5.76 KB
/
5_union.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
'use strict';
var jsonSql = require('../lib')();
var expect = require('chai').expect;
describe('Union, except, intersect', function() {
describe('queries', function() {
it('should throw error without `queries` property', function() {
expect(function() {
jsonSql.build({
type: 'union'
});
}).to.throw('`queries` property is not set in `union` clause');
});
it('should throw error with non-array value', function() {
expect(function() {
jsonSql.build({
type: 'union',
queries: 'wrong'
});
}).to.throw('`queries` property should have type "array" in `union` clause');
});
it('should throw error with value length < 2', function() {
expect(function() {
jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}]
});
}).to.throw('`queries` property should not have length less than 2 in `union` clause');
});
it('should be ok with value length = 2', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" union select * from "vipUsers";');
expect(result.values).to.be.eql({});
});
});
describe('type & all combinations', function() {
it('should be ok with `type` = "union", `all` = true', function() {
var result = jsonSql.build({
type: 'union',
all: true,
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" union all select * from ' +
'"vipUsers";');
expect(result.values).to.be.eql({});
});
it('should be ok with `type` = "except"', function() {
var result = jsonSql.build({
type: 'except',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" except select * from "vipUsers";');
expect(result.values).to.be.eql({});
});
it('should be ok with `type` = "except", `all` = true', function() {
var result = jsonSql.build({
type: 'except',
all: true,
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" except all select * from ' +
'"vipUsers";');
expect(result.values).to.be.eql({});
});
it('should be ok with `type` = "intersect"', function() {
var result = jsonSql.build({
type: 'intersect',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" intersect select * from ' +
'"vipUsers";');
expect(result.values).to.be.eql({});
});
it('should be ok with `type` = "intersect", `all` = true', function() {
var result = jsonSql.build({
type: 'intersect',
all: true,
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
});
expect(result.query).to.be.equal('select * from "users" intersect all select * from ' +
'"vipUsers";');
expect(result.values).to.be.eql({});
});
it('should be ok with `type` = "union" subquery', function() {
var result = jsonSql.build({
query: {
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}]
}
});
expect(result.query).to.be.equal('select * from (select * from "users" union select * ' +
'from "vipUsers");');
expect(result.values).to.be.eql({});
});
});
describe('sort', function() {
it('should be ok with string value', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
sort: 'age'
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" order by "age";'
);
expect(result.values).to.be.eql({});
});
it('should be ok with array value', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
sort: ['age', 'gender']
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" order by "age", "gender";'
);
expect(result.values).to.be.eql({});
});
it('should be ok with object value', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
sort: {
age: 1,
gender: -1
}
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" order by "age" asc, "gender" desc;'
);
expect(result.values).to.be.eql({});
});
});
describe('limit, offset', function() {
it('should be ok with `limit` property', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
limit: 5
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" limit 5;'
);
expect(result.values).to.be.eql({});
});
it('should be ok with `offset` property', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
offset: 5
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" offset 5;'
);
expect(result.values).to.be.eql({});
});
it('should be ok with `limit` and `offset` properties', function() {
var result = jsonSql.build({
type: 'union',
queries: [{
table: 'users'
}, {
table: 'vipUsers'
}],
limit: 10,
offset: 20
});
expect(result.query).to.be.equal(
'select * from "users" union select * from "vipUsers" limit 10 offset 20;'
);
expect(result.values).to.be.eql({});
});
});
});