-
Notifications
You must be signed in to change notification settings - Fork 28
/
delete_list.go
762 lines (702 loc) · 23.9 KB
/
delete_list.go
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
/*
* Copyright 2018 The Service Manager Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package test
import (
"encoding/json"
"fmt"
"net/http"
"strings"
"github.com/Peripli/service-manager/pkg/types"
"github.com/Peripli/service-manager/test/common"
. "github.com/onsi/ginkgo"
. "github.com/onsi/ginkgo/extensions/table"
)
type deleteOpEntry struct {
resourcesToExpectBeforeOp func() []common.Object
queryTemplate string
queryArgs func() common.Object
resourcesToExpectAfterOp func() []common.Object
resourcesNotToExpectAfterOp func() []common.Object
expectedStatusCode int
}
func DescribeDeleteListFor(ctx *common.TestContext, t TestCase) bool {
var r []common.Object
var rWithMandatoryFields common.Object
commonLabelKey := "labelKey2"
commonLabelValue := "str1"
entriesWithQuery := []TableEntry{
Entry("returns 200 for operator =",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0]}
},
queryTemplate: "%s eq '%v'",
queryArgs: func() common.Object {
return r[0]
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator !=",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s ne '%v'",
queryArgs: func() common.Object {
return common.RemoveBooleanArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator in with multiple right operands",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%[1]s in ('%[2]v','%[2]v','%[2]v')",
queryArgs: func() common.Object {
return r[0]
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator in with single right operand",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s in ('%v')",
queryArgs: func() common.Object {
return r[0]
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator notin with multiple right operands",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%[1]s notin ('%[2]v','%[2]v','%[2]v')",
queryArgs: func() common.Object {
return common.RemoveBooleanArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator notin with single right operand",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s notin ('%v')",
queryArgs: func() common.Object {
return common.RemoveBooleanArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator gt",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s gt '%v'",
queryArgs: func() common.Object {
return common.RemoveNonNumericOrDateArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for operator lt",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s lt '%v'",
queryArgs: func() common.Object {
return common.RemoveNonNumericOrDateArgs(r[1])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[1]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for greater than or equal queries",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s ge %v",
queryArgs: func() common.Object {
return common.RemoveNonNumericOrDateArgs(r[1])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 400 for greater than or equal queries when query args are non numeric",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s ge %v",
queryArgs: func() common.Object {
return common.RemoveNumericAndDateArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 200 for greater than or equal queries",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s le %v",
queryArgs: func() common.Object {
return common.RemoveNonNumericOrDateArgs(r[1])
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusOK,
}),
Entry("returns 400 for less than or equal queries when query args are non numeric",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%s le %v",
queryArgs: func() common.Object {
return common.RemoveNumericAndDateArgs(r[0])
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 200 for operator en",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], rWithMandatoryFields}
},
queryTemplate: "%s en '%v'",
queryArgs: func() common.Object {
return common.RemoveNotNullableFieldAndLabels(r[0], rWithMandatoryFields)
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], rWithMandatoryFields}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 400 when label query is duplicated",
deleteOpEntry{
queryTemplate: "%[1]s eq '%[2]v' and %[1]s eq '%[2]v'",
queryArgs: func() common.Object {
return common.Object{
"labels": common.CopyLabels(r[0]),
}
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 200 when field query is duplicated",
deleteOpEntry{
queryTemplate: "%[1]s eq '%[2]v' and %[1]s eq '%[2]v'",
queryArgs: func() common.Object {
return common.CopyFields(r[0])
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 200 for JSON fields with stripped new lines",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0]}
},
queryTemplate: "%s eq '%v'",
queryArgs: func() common.Object {
return common.RemoveNonJSONArgs(r[0])
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0]}
},
expectedStatusCode: http.StatusOK,
},
),
Entry("returns 400 when query operator is invalid",
deleteOpEntry{
queryTemplate: "%s @@ '%v'",
queryArgs: func() common.Object {
return r[0]
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 400 when query is duplicated",
deleteOpEntry{
queryTemplate: "%[1]s = '%[2]v' and %[1]s = '%[2]v'",
queryArgs: func() common.Object {
return r[0]
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 400 when operator is not properly separated with right space from operands",
deleteOpEntry{
queryTemplate: "%s ='%v'",
queryArgs: func() common.Object {
return r[0]
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 400 when operator is not properly separated with left space from operands",
deleteOpEntry{
queryTemplate: "%seq '%v'",
queryArgs: func() common.Object {
return r[0]
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 400 when field query left operands are unknown",
deleteOpEntry{
queryTemplate: "%[1]s in ('%[2]v','%[2]v')",
queryArgs: func() common.Object {
return common.Object{"unknownkey": "unknownvalue"}
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 200 when label query left operands are unknown",
deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
queryTemplate: "%[1]s in ('%[2]v','%[2]v')",
queryArgs: func() common.Object {
return common.Object{
"labels": map[string]interface{}{
"unknown": []interface{}{
"unknown",
},
}}
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusNotFound,
},
),
Entry("returns 400 when single value operator is used with multiple right value arguments",
deleteOpEntry{
queryTemplate: "%[1]s ne ('%[2]v','%[2]v','%[2]v')",
queryArgs: func() common.Object {
return r[0]
},
expectedStatusCode: http.StatusBadRequest,
},
),
Entry("returns 400 when numeric operator is used with non-numeric operands",
deleteOpEntry{
queryTemplate: "%s < '%v'",
queryArgs: func() common.Object {
return common.RemoveNumericAndDateArgs(r[0])
},
expectedStatusCode: http.StatusBadRequest,
},
),
}
attachLabel := func(obj common.Object, i int) common.Object {
patchLabelsBody := make(map[string]interface{})
patchLabels := []*types.LabelChange{
{
Operation: types.AddLabelOperation,
Key: "labelKey1",
Values: []string{fmt.Sprintf("%d", i)},
},
{
Operation: types.AddLabelOperation,
Key: commonLabelKey,
Values: []string{fmt.Sprintf("str%d", i)},
},
{
Operation: types.AddLabelOperation,
Key: "labelKey3",
Values: []string{fmt.Sprintf(`{"key%d": "val%d"}`, i, i)},
},
}
patchLabelsBody["labels"] = patchLabels
By(fmt.Sprintf("Attempting to patch resource of %s with labels as labels are declared supported", t.API))
t.PatchResource(ctx, t.StrictlyTenantScoped, t.API, obj["id"].(string), types.ObjectType(t.API), patchLabels, false)
result := ctx.SMWithOAuth.GET(t.API + "/" + obj["id"].(string)).
Expect().
Status(http.StatusOK).JSON().Object()
result.ContainsKey("labels")
r := result.Raw()
return r
}
beforeEachHelper := func() {
By(fmt.Sprintf("[BEFOREEACH]: Preparing and creating test resources"))
r = make([]common.Object, 0, 0)
rWithMandatoryFields = t.ResourceWithoutNullableFieldsBlueprint(ctx, ctx.SMWithOAuth, false)
for i := 0; i < 2; i++ {
gen := t.ResourceBlueprint(ctx, ctx.SMWithOAuth, false)
gen = attachLabel(gen, i)
stripObject(gen, t.ResourcePropertiesToIgnore...)
r = append(r, gen)
}
By(fmt.Sprintf("[BEFOREEACH]: Successfully finished preparing and creating test resources"))
}
afterEachHelper := func() {
By(fmt.Sprintf("[AFTEREACH]: Cleaning up test resources"))
ctx.CleanupAdditionalResources()
By(fmt.Sprintf("[AFTEREACH]: Sucessfully finished cleaning up test resources"))
}
verifyDeleteListOpHelperWithAuth := func(deleteListOpEntry deleteOpEntry, query string, auth *common.SMExpect) {
expectedAfterOpIDs := make([]string, 0)
unexpectedAfterOpIDs := make([]string, 0)
if deleteListOpEntry.resourcesToExpectAfterOp != nil {
expectedAfterOpIDs = common.ExtractResourceIDs(deleteListOpEntry.resourcesToExpectAfterOp())
}
if deleteListOpEntry.resourcesNotToExpectAfterOp != nil {
unexpectedAfterOpIDs = common.ExtractResourceIDs(deleteListOpEntry.resourcesNotToExpectAfterOp())
}
By("[TEST]: ======= Expectations Summary =======")
By(fmt.Sprintf("[TEST]: Deleting %s at %s", t.API, query))
By(fmt.Sprintf("[TEST]: Currently present resources: %v", r))
By(fmt.Sprintf("[TEST]: Expected %s ids after operations: %s", t.API, expectedAfterOpIDs))
By(fmt.Sprintf("[TEST]: Unexpected %s ids after operations: %s", t.API, unexpectedAfterOpIDs))
By(fmt.Sprintf("[TEST]: Expected status code %d", deleteListOpEntry.expectedStatusCode))
By("[TEST]: ====================================")
if deleteListOpEntry.resourcesToExpectBeforeOp != nil {
By(fmt.Sprintf("[TEST]: Verifying expected %s before operation are present", t.API))
beforeOpArray := auth.List(t.API)
for _, v := range beforeOpArray.Iter() {
obj := v.Object().Raw()
stripObject(obj, t.ResourcePropertiesToIgnore...)
}
for _, entity := range deleteListOpEntry.resourcesToExpectBeforeOp() {
stripObject(entity, t.ResourcePropertiesToIgnore...)
beforeOpArray.Contains(entity)
}
}
req := auth.DELETE(t.API)
if query != "" {
req = req.WithQueryString(query)
}
By(fmt.Sprintf("[TEST]: Verifying expected status code %d is returned from operation", deleteListOpEntry.expectedStatusCode))
resp := req.
Expect().
Status(deleteListOpEntry.expectedStatusCode)
if deleteListOpEntry.expectedStatusCode != http.StatusOK {
By(fmt.Sprintf("[TEST]: Verifying error and description fields are returned after operation"))
resp.JSON().Object().Keys().Contains("error", "description")
} else {
afterOpArray := auth.List(t.API)
for _, v := range afterOpArray.Iter() {
obj := v.Object().Raw()
stripObject(obj, t.ResourcePropertiesToIgnore...)
}
if deleteListOpEntry.resourcesToExpectAfterOp != nil {
By(fmt.Sprintf("[TEST]: Verifying expected %s are returned after operation", t.API))
for _, entity := range deleteListOpEntry.resourcesToExpectAfterOp() {
stripObject(entity, t.ResourcePropertiesToIgnore...)
afterOpArray.Contains(entity)
}
}
if deleteListOpEntry.resourcesNotToExpectAfterOp != nil {
By(fmt.Sprintf("[TEST]: Verifying unexpected %s are NOT returned after operation", t.API))
for _, entity := range deleteListOpEntry.resourcesNotToExpectAfterOp() {
stripObject(entity, t.ResourcePropertiesToIgnore...)
afterOpArray.NotContains(entity)
}
}
}
}
verifyDeleteListOpHelper := func(deleteListOpEntry deleteOpEntry, query string) {
if t.StrictlyTenantScoped {
verifyDeleteListOpHelperWithAuth(deleteListOpEntry, query, ctx.SMWithOAuthForTenant)
} else {
verifyDeleteListOpHelperWithAuth(deleteListOpEntry, query, ctx.SMWithOAuth)
}
}
verifyDeleteListOp := func(entry deleteOpEntry) {
if len(entry.queryTemplate) == 0 {
Fail("Query template missing")
}
// test with multi field query - meaning all fields in one query
beforeEachHelper()
args := entry.queryArgs()
labels := args["labels"]
fields := common.CopyObject(args)
delete(fields, "labels")
queryKeys := extractQueryKeys(fields)
if len(queryKeys) > 1 {
fquery := "fieldQuery=" + expandMultiFieldQuery(entry.queryTemplate, fields)
verifyDeleteListOpHelper(entry, fquery)
}
afterEachHelper()
for _, queryKey := range queryKeys {
// test with each field as separate field query
beforeEachHelper()
args := entry.queryArgs()
fields := common.CopyObject(args)
delete(fields, "labels")
queryValue := expandNextFieldQuery(entry.queryTemplate, fields, queryKey)
query := "fieldQuery=" + queryValue
verifyDeleteListOpHelper(entry, query)
afterEachHelper()
}
if labels != nil {
// test with all labels as one label query
beforeEachHelper()
multiLabelQuery, labelQueries := expandLabelQuery(labels.(map[string]interface{}), entry.queryTemplate)
verifyDeleteListOpHelper(entry, "labelQuery="+multiLabelQuery)
afterEachHelper()
for _, labelQuery := range labelQueries {
// test with each label as separate label query
beforeEachHelper()
verifyDeleteListOpHelper(entry, "labelQuery="+labelQuery)
afterEachHelper()
}
// test with all fields and all labels as one query
beforeEachHelper()
// recalculate the multi field query as each beforeEach creates new resources and field values may differ
fields := common.CopyObject(entry.queryArgs())
delete(fields, "labels")
multiFieldQuery := expandMultiFieldQuery(entry.queryTemplate, fields)
verifyDeleteListOpHelper(entry, "fieldQuery="+multiFieldQuery+"&"+"labelQuery="+multiLabelQuery)
afterEachHelper()
}
}
return Describe("DELETE LIST", func() {
Context("with no filtering", func() {
BeforeEach(beforeEachHelper)
AfterEach(afterEachHelper)
Context("with basic auth", func() {
It("returns 200", func() {
ctx.SMWithBasic.DELETE(t.API).
Expect().
Status(http.StatusUnauthorized)
})
})
Context("with bearer auth", func() {
if !t.DisableTenantResources {
Context("when authenticating with tenant scoped token", func() {
var rForTenant common.Object
BeforeEach(func() {
rForTenant = t.ResourceBlueprint(ctx, ctx.SMWithOAuthForTenant, false)
patchLabels := []*types.LabelChange{
{
Operation: types.AddLabelOperation,
Key: commonLabelKey,
Values: []string{commonLabelValue},
},
}
resourceID := rForTenant["id"].(string)
t.PatchResource(ctx, t.StrictlyTenantScoped, t.API, resourceID, types.ObjectType(t.API), patchLabels, false)
rForTenant = ctx.SMWithOAuth.GET(t.API + "/" + resourceID).
Expect().
Status(http.StatusOK).JSON().Object().Raw()
})
It("deletes only tenant specific resources label query", func() {
labelQuery := fmt.Sprintf("labelQuery=%s eq '%s'", commonLabelKey, commonLabelValue)
expectResources := func(resourcesToExpect []common.Object) {
for _, obj := range resourcesToExpect {
stripObject(obj, t.ResourcePropertiesToIgnore...)
}
array := ctx.SMWithOAuth.ListWithQuery(t.API, labelQuery)
for _, item := range array.Iter() {
obj := item.Object().Raw()
stripObject(obj, t.ResourcePropertiesToIgnore...)
}
for _, obj := range resourcesToExpect {
array.Contains(obj)
}
}
// r1 and rForTenant are both labeled
resourcesBeforeDeletion := []common.Object{r[1], rForTenant}
expectResources(resourcesBeforeDeletion)
// delete providing labelQuery matching both r1 and rForTenant, but using tenant auth
verifyDeleteListOpHelperWithAuth(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{rForTenant}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{rForTenant}
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{}
},
expectedStatusCode: http.StatusOK,
}, labelQuery, ctx.SMWithOAuthForTenant)
//only tenant resource matching the label query must be deleted
resourcesAfterDeletion := []common.Object{r[1]}
expectResources(resourcesAfterDeletion)
})
It("deletes only tenant specific resources without label query", func() {
verifyDeleteListOpHelperWithAuth(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{rForTenant}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{rForTenant}
},
resourcesToExpectAfterOp: func() []common.Object {
return []common.Object{}
},
expectedStatusCode: http.StatusOK,
}, "", ctx.SMWithOAuthForTenant)
})
Context("when authenticating with global token", func() {
It("deletes all resources", func() {
verifyDeleteListOpHelperWithAuth(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1], rForTenant}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1], rForTenant}
},
expectedStatusCode: http.StatusOK,
}, "", ctx.SMWithOAuth)
})
})
})
}
Context("with no query", func() {
It("deletes all the resources", func() {
verifyDeleteListOpHelper(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusOK,
}, "")
})
})
Context("with empty field query", func() {
It("returns 200", func() {
verifyDeleteListOpHelper(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusOK,
}, "fieldQuery=")
})
})
Context("with empty label query", func() {
It("returns 200", func() {
verifyDeleteListOpHelper(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusOK,
}, "labelQuery=")
})
})
Context("with empty field and label query", func() {
It("returns 200", func() {
verifyDeleteListOpHelper(deleteOpEntry{
resourcesToExpectBeforeOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
resourcesNotToExpectAfterOp: func() []common.Object {
return []common.Object{r[0], r[1]}
},
expectedStatusCode: http.StatusOK,
}, "fieldQuery=&labelQuery=")
})
})
})
})
DescribeTable("with non-empty query", verifyDeleteListOp, entriesWithQuery...)
})
}
func extractQueryKeys(queryArgsObj common.Object) []string {
queryKeys := make([]string, 0)
for key := range queryArgsObj {
queryKeys = append(queryKeys, key)
}
return queryKeys
}
func expandNextFieldQuery(queryTemplate string, queryArgs common.Object, currentArgKey string) string {
currentArgValue, ok := queryArgs[currentArgKey]
if !ok || currentArgValue == nil {
panic("decide what to do")
}
if m, ok := currentArgValue.(map[string]interface{}); ok {
bytes, err := json.Marshal(m)
if err != nil {
panic(err)
}
currentArgValue = string(bytes)
}
if a, ok := currentArgValue.([]interface{}); ok {
bytes, err := json.Marshal(a)
if err != nil {
panic(err)
}
currentArgValue = string(bytes)
}
return fmt.Sprintf(queryTemplate, currentArgKey, currentArgValue)
}
func expandMultiFieldQuery(queryTemplate string, queryArgs common.Object) string {
expandedMultiQuerySegments := make([]string, 0)
for queryArgKey, queryArgValue := range queryArgs {
expandedMultiQuerySegments = append(expandedMultiQuerySegments, fmt.Sprintf(queryTemplate, queryArgKey, queryArgValue))
}
return strings.Join(expandedMultiQuerySegments, " and ")
}