-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDELETE.test.js
306 lines (290 loc) · 9.07 KB
/
DELETE.test.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
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
// cqn4sql must flatten and transform where exists shortcuts into subqueries
'use strict'
const cqn4sql = require('../../lib/cqn4sql')
const cds = require('@sap/cds')
const { expect } = cds.test
describe('DELETE', () => {
let model
beforeAll(async () => {
model = cds.model = await cds.load(__dirname + '/../bookshop/db/schema').then(cds.linked)
})
it('flatten structured access in where', () => {
const { DELETE } = cds.ql
let d = DELETE.from('bookshop.Books').where({ 'dedication.text': { '=': 'foo' } })
const query = cqn4sql(d, model)
const expected = JSON.parse(
'{"DELETE":{"from":{"ref": ["bookshop.Books"], "as": "Books"},"where":[{"ref":["Books","dedication_text"]},"=",{"val":"foo"}]}}',
)
expect(query.DELETE).to.deep.equal(expected.DELETE)
})
it('DELETE with where exists expansion', () => {
const { DELETE } = cds.ql
let d = DELETE.from('bookshop.Books:author')
const query = cqn4sql(d, model)
// how to express this in CQN?
// DELETE.from({ref: ['bookshop.Authors'], as: 'author'}).where('exists ( SELECT 1 from bookshop.Books as Books where author_ID = author.ID)')
const expected = JSON.parse(`{
"DELETE": {
"from": {
"ref": [
"bookshop.Authors"
],
"as": "author"
},
"where": [
"exists",
{
"SELECT": {
"from": {
"ref": [
"bookshop.Books"
],
"as": "Books"
},
"columns": [
{
"val": 1
}
],
"where": [
{
"ref": [
"Books",
"author_ID"
]
},
"=",
{
"ref": [
"author",
"ID"
]
}
]
}
}
]
}
}`)
expect(query.DELETE).to.deep.equal(expected.DELETE)
})
it('DELETE with where exists expansion and path expression', () => {
const forNodeModel = cds.compile.for.nodejs(JSON.parse(JSON.stringify(cds.model)))
const { DELETE } = cds.ql
let d = DELETE.from('bookshop.Books:author').where(`books.title = 'Harry Potter'`)
const query = cqn4sql(d, forNodeModel)
// this is the final exists subquery
const subquery = CQL`
SELECT author.ID from bookshop.Authors as author
left join bookshop.Books as books on books.author_ID = author.ID
where exists (
SELECT 1 from bookshop.Books as Books2 where Books2.author_ID = author.ID
) and books.title = 'Harry Potter'
`
const expected = JSON.parse(`{
"DELETE": {
"from": {
"ref": [
"bookshop.Authors"
],
"as": "author2"
}
}
}`)
expected.DELETE.where = [
{
list: [
{
ref: ['author2', 'ID'],
},
],
},
'in',
subquery,
]
expect(query.DELETE).to.deep.equal(expected.DELETE)
})
it('in a list with exactly one val, dont transform to key comparison', () => {
const query = {
DELETE: {
from: {
ref: [
{
id: 'bookshop.Books',
where: [
{
ref: ['ID'],
},
'in',
{
list: [
{
val: 'b6248f67-6f8b-4816-a096-0b65c2349143',
},
],
},
],
},
'author',
],
},
},
}
const expected = {
DELETE: {
from: {
ref: ['bookshop.Authors'],
as: 'author',
},
where: [
'exists',
{
SELECT: {
from: {
ref: ['bookshop.Books'],
as: 'Books',
},
columns: [
{
val: 1,
},
],
where: [
{
ref: ['Books', 'author_ID'],
},
'=',
{
ref: ['author', 'ID'],
},
'and',
{
ref: ['Books', 'ID'],
},
'in',
{
list: [
{
val: 'b6248f67-6f8b-4816-a096-0b65c2349143',
},
],
},
],
},
},
],
},
}
const res = cqn4sql(query, model)
expect(res).to.deep.equal(expected)
})
it('DELETE with assoc filter and where exists expansion', () => {
const { DELETE } = cds.ql
let d = DELETE.from('bookshop.Reproduce[author = null and ID = 99]:accessGroup')
const query = cqn4sql(d, model)
const expected = {
DELETE: {
from: {
ref: ['bookshop.AccessGroups'],
as: 'accessGroup',
},
where: [
'exists',
{
SELECT: {
from: {
ref: ['bookshop.Reproduce'],
as: 'Reproduce',
},
columns: [
{
val: 1,
},
],
where: [
{
ref: ['Reproduce', 'accessGroup_ID'],
},
'=',
{
ref: ['accessGroup', 'ID'],
},
'and',
{
xpr: [
{
ref: ['Reproduce', 'author_ID'],
},
'=',
{
val: null,
},
],
},
'and',
{
ref: ['Reproduce', 'ID'],
},
'=',
{
val: 99,
},
],
},
},
],
},
}
expect(query.DELETE).to.deep.equal(expected.DELETE)
})
describe('with path expressions', () => {
let forNodeModel
beforeAll(() => {
// subqueries reference flat author_ID, which is not part of client csn
forNodeModel = cds.compile.for.nodejs(JSON.parse(JSON.stringify(cds.model)))
})
it('inner joins for the path expression at the leaf of scoped queries', () => {
let query = DELETE.from('bookshop.Authors:books[genre.name = null]')
const transformed = cqn4sql(query, forNodeModel)
const subquery = cds.ql`
SELECT books.ID from bookshop.Books as books
inner join bookshop.Genres as genre on genre.ID = books.genre_ID
WHERE EXISTS (
SELECT 1 from bookshop.Authors as Authors where Authors.ID = books.author_ID
) and genre.name = null`
const expected = DELETE.from('bookshop.Books').alias('books2')
expected.DELETE.where = [{ list: [{ ref: ['books2', 'ID'] }] }, 'in', subquery]
expect(transformed).to.deep.equal(expected)
})
it('inner joins for the path expression at the leaf of scoped queries, two assocs', () => {
let query = DELETE.from('bookshop.Authors:books[genre.parent.name = null]')
const transformed = cqn4sql(query, forNodeModel)
const subquery = cds.ql`
SELECT books.ID from bookshop.Books as books
inner join bookshop.Genres as genre on genre.ID = books.genre_ID
inner join bookshop.Genres as parent on parent.ID = genre.parent_ID
WHERE EXISTS (
SELECT 1 from bookshop.Authors as Authors where Authors.ID = books.author_ID
) and parent.name = null`
const expected = DELETE.from('bookshop.Books').alias('books2')
expected.DELETE.where = [{ list: [{ ref: ['books2', 'ID'] }] }, 'in', subquery]
expect(transformed).to.deep.equal(expected)
})
it('inner joins for the path expression NOT at the leaf of scoped queries, two assocs', () => {
let query = DELETE.from(`bookshop.Authors[books.title = 'bar']:books[genre.parent.name = null]`).alias('MyBook')
const transformed = cqn4sql(query, forNodeModel)
const subquery = cds.ql`
SELECT MyBook.ID from bookshop.Books as MyBook
inner join bookshop.Genres as genre on genre.ID = MyBook.genre_ID
inner join bookshop.Genres as parent on parent.ID = genre.parent_ID
WHERE EXISTS (
SELECT 1 from bookshop.Authors as Authors
inner join bookshop.Books as books on books.author_ID = Authors.ID
where Authors.ID = MyBook.author_ID and books.title = 'bar'
) and parent.name = null`
const expected = DELETE.from('bookshop.Books').alias('MyBook2')
expected.DELETE.where = [{ list: [{ ref: ['MyBook2', 'ID'] }] }, 'in', subquery]
expect(transformed).to.deep.equal(expected)
})
})
})