-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparenthesis_parser_test.go
589 lines (464 loc) · 11.6 KB
/
parenthesis_parser_test.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
package parser
import (
"testing"
"github.com/Masterminds/squirrel"
"github.com/stretchr/testify/assert"
)
/*
Cases tested:
splitParentheses("(alice or bob) and carol")
splitParentheses("alice or (bob and carol)")
splitParentheses("(alice or bob) and (carol or dan)")
splitParentheses("(alice or bob) and (carol or dan) or (elen and (frank or glenn))")
splitParentheses("(alice or bob) and carol or dan or (elen and (frank or glenn))")
splitParentheses("(alice or bob) and not (carol or dan) or (elen and not (frank or glenn))")
*/
func Test_splitParentheses_case1(t *testing.T) {
terms, err := splitParentheses("(alice or bob) and carol")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
" and carol",
}
assert.Equal(t, expected, terms)
}
func Test_splitParentheses_case2(t *testing.T) {
terms, err := splitParentheses("alice or (bob and carol)")
if err != nil {
t.Error(err)
return
}
expected := []string{
"alice or ",
"(bob and carol)",
}
assert.Equal(t, expected, terms)
}
func Test_splitParentheses_case3(t *testing.T) {
terms, err := splitParentheses("(alice or bob) and (carol or dan)")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
" and ",
"(carol or dan)",
}
assert.Equal(t, expected, terms)
}
func Test_splitParentheses_case4(t *testing.T) {
terms, err := splitParentheses("(alice or bob) and (carol or dan) or (elen and (frank or glenn))")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
" and ",
"(carol or dan)",
" or ",
"(elen and (frank or glenn))",
}
assert.Equal(t, expected, terms)
}
func Test_splitParentheses_case5(t *testing.T) {
terms, err := splitParentheses("(alice or bob) and carol or dan or (elen and (frank or glenn))")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
" and carol or dan or ",
"(elen and (frank or glenn))",
}
assert.Equal(t, expected, terms)
}
func Test_splitParentheses_case6(t *testing.T) {
terms, err := splitParentheses("(alice or bob) and not (carol or dan) or (elen and not (frank or glenn))")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
" and ",
"not (carol or dan)",
" or ",
"(elen and not (frank or glenn))",
}
assert.Equal(t, expected, terms)
}
func Test_splitOr_case1(t *testing.T) {
terms, err := splitOr("(alice and bob) or carol")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice and bob)",
"carol",
}
assert.Equal(t, expected, terms)
}
func Test_splitOr_case2(t *testing.T) {
terms, err := splitOr("zero or (alice and bob) or carol or (dan and elen) or (frank and glenn)")
if err != nil {
t.Error(err)
return
}
expected := []string{
"zero",
"(alice and bob)",
"carol",
"(dan and elen)",
"(frank and glenn)",
}
assert.Equal(t, expected, terms)
}
func Test_splitAnd_case3(t *testing.T) {
terms, err := splitAnd("(alice or bob) and carol")
if err != nil {
t.Error(err)
return
}
expected := []string{
"(alice or bob)",
"carol",
}
assert.Equal(t, expected, terms)
}
func Test_splitAnd_case4(t *testing.T) {
terms, err := splitAnd("zero and (alice or bob) and carol and (dan or elen) and (frank or glenn)")
if err != nil {
t.Error(err)
return
}
expected := []string{
"zero",
"(alice or bob)",
"carol",
"(dan or elen)",
"(frank or glenn)",
}
assert.Equal(t, expected, terms)
}
/*
Cases tested:
p.Go("(alice or bob) and carol") // (a | b) & c
p.Go("alice or (bob and carol)") // a | (b & c)
p.Go("(alice or bob) and (((carol or dan) and frank) or glenn)") // (a | b) & (((c | d) & f) | g)
p.Go("not (alice or bob) and carol") // !(a | b) & c
p.Go("not (alice or bob)") // !(a | b)
p.Go("(alice or bob) and not (carol or dan) and not (elen or glenn)") // (a | b) & !(c | d) & !(e | g)
p.Go("not (alice and bob)") // !(a | b)
p.Go("(alice and bob) or not (carol and dan) or not (elen and glenn)") // (a | b) & !(c | d) & !(e | g)
*/
func Test_parenthesis_parser_case1(t *testing.T) {
StrORStrCalled := false
ExpANDStrCalled := false
StrORStr := func(a, b string) squirrel.Or {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
StrORStrCalled = true
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
ExpANDStr := func(a squirrel.Sqlizer, b string) squirrel.And {
assert.Equal(t, "carol", b)
ExpANDStrCalled = true
return squirrel.And{
a,
squirrel.Expr("col = '%s'", b),
}
}
p := parser2{
StrORStr: StrORStr,
ExpANDStr: ExpANDStr,
}
_, err := p.Go("(alice or bob) and carol")
assert.Nil(t, err)
assert.True(t, StrORStrCalled)
assert.True(t, ExpANDStrCalled)
}
func Test_parenthesis_parser_case2(t *testing.T) {
StrANDStrCalled := false
StrORExpCalled := false
StrANDStr := func(a, b string) squirrel.And {
assert.Equal(t, "bob", a)
assert.Equal(t, "carol", b)
StrANDStrCalled = true
return squirrel.And{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
StrORExp := func(a string, b squirrel.Sqlizer) squirrel.Or {
assert.Equal(t, "alice", a)
StrORExpCalled = true
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
b,
}
}
p := parser2{
StrANDStr: StrANDStr,
StrORExp: StrORExp,
}
_, err := p.Go("alice or (bob and carol)")
assert.Nil(t, err)
assert.True(t, StrANDStrCalled)
assert.True(t, StrORExpCalled)
}
func Test_parenthesis_parser_case3(t *testing.T) {
StrORStrCalled := 0
ExpANDStrCalled := false
ExpANDExpCalled := false
ExpORStrCalled := false
StrORStr := func(a, b string) squirrel.Or {
if StrORStrCalled == 0 {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
}
if StrORStrCalled == 1 {
assert.Equal(t, "carol", a)
assert.Equal(t, "dan", b)
}
StrORStrCalled++
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
ExpANDStr := func(a squirrel.Sqlizer, b string) squirrel.And {
assert.Equal(t, "frank", b)
ExpANDStrCalled = true
return squirrel.And{
a,
squirrel.Expr("col = '%s'", b),
}
}
ExpORStr := func(a squirrel.Sqlizer, b string) squirrel.Or {
assert.Equal(t, "glenn", b)
ExpORStrCalled = true
return squirrel.Or{
a,
squirrel.Expr("col = '%s'", b),
}
}
ExpANDExp := func(a, b squirrel.Sqlizer) squirrel.And {
ExpANDExpCalled = true
return squirrel.And{
a,
b,
}
}
p := parser2{
ExpANDExp: ExpANDExp,
StrORStr: StrORStr,
ExpANDStr: ExpANDStr,
ExpORStr: ExpORStr,
}
_, err := p.Go("(alice or bob) and (((carol or dan) and frank) or glenn)")
assert.Nil(t, err)
assert.Equal(t, 2, StrORStrCalled)
assert.True(t, ExpANDStrCalled)
assert.True(t, ExpANDExpCalled)
assert.True(t, ExpORStrCalled)
}
func Test_parenthesis_parser_case4(t *testing.T) {
StrORStrCalled := false
ExpANDStrCalled := false
NotExpCalled := false
StrORStr := func(a, b string) squirrel.Or {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
StrORStrCalled = true
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
ExpANDStr := func(a squirrel.Sqlizer, b string) squirrel.And {
assert.Equal(t, "carol", b)
ExpANDStrCalled = true
return squirrel.And{
a,
squirrel.Expr("col = '%s'", b),
}
}
NotExp := func(a squirrel.Sqlizer) squirrel.Sqlizer {
NotExpCalled = true
r := squirrel.Expr("col <> '%s'", a)
return r
}
p := parser2{
NotExp: NotExp,
StrORStr: StrORStr,
ExpANDStr: ExpANDStr,
}
_, err := p.Go("not (alice or bob) and carol")
assert.Nil(t, err)
assert.True(t, StrORStrCalled)
assert.True(t, ExpANDStrCalled)
assert.True(t, NotExpCalled)
}
func Test_parenthesis_parser_case5(t *testing.T) {
StrORStrCalled := false
NotExpCalled := false
StrORStr := func(a, b string) squirrel.Or {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
StrORStrCalled = true
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
NotExp := func(a squirrel.Sqlizer) squirrel.Sqlizer {
NotExpCalled = true
r := squirrel.Expr("col <> '%s'", a)
return r
}
p := parser2{
StrORStr: StrORStr,
NotExp: NotExp,
}
_, err := p.Go("not (alice or bob)")
assert.Nil(t, err)
assert.True(t, StrORStrCalled)
assert.True(t, NotExpCalled)
}
func Test_parenthesis_parser_case6(t *testing.T) {
StrORStrCalled := 0
ExpANDExpCalled := 0
NotExpCalled := 0
StrORStr := func(a, b string) squirrel.Or {
if StrORStrCalled == 0 {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
}
if StrORStrCalled == 1 {
assert.Equal(t, "carol", a)
assert.Equal(t, "dan", b)
}
if StrORStrCalled == 2 {
assert.Equal(t, "elen", a)
assert.Equal(t, "glenn", b)
}
StrORStrCalled++
return squirrel.Or{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
ExpANDExp := func(a, b squirrel.Sqlizer) squirrel.And {
ExpANDExpCalled++
return squirrel.And{
a,
b,
}
}
NotExp := func(a squirrel.Sqlizer) squirrel.Sqlizer {
NotExpCalled++
r := squirrel.Expr("col <> '%s'", a)
return r
}
p := parser2{
NotExp: NotExp,
StrORStr: StrORStr,
ExpANDExp: ExpANDExp,
}
_, err := p.Go("(alice or bob) and not (carol or dan) and not (elen or glenn)")
assert.Nil(t, err)
assert.Equal(t, 3, StrORStrCalled)
assert.Equal(t, 2, ExpANDExpCalled)
assert.Equal(t, 2, NotExpCalled)
}
func Test_parenthesis_parser_case7(t *testing.T) {
StrANDStrCalled := false
NotExpCalled := false
StrANDStr := func(a, b string) squirrel.And {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
StrANDStrCalled = true
return squirrel.And{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
NotExp := func(a squirrel.Sqlizer) squirrel.Sqlizer {
NotExpCalled = true
r := squirrel.Expr("col <> '%s'", a)
return r
}
p := parser2{
StrANDStr: StrANDStr,
NotExp: NotExp,
}
_, err := p.Go("not (alice and bob)")
assert.Nil(t, err)
assert.True(t, StrANDStrCalled)
assert.True(t, NotExpCalled)
}
func Test_parenthesis_parser_case8(t *testing.T) {
StrANDStrCalled := 0
ExpORExpCalled := 0
NotExpCalled := 0
StrANDStr := func(a, b string) squirrel.And {
if StrANDStrCalled == 0 {
assert.Equal(t, "alice", a)
assert.Equal(t, "bob", b)
}
if StrANDStrCalled == 1 {
assert.Equal(t, "carol", a)
assert.Equal(t, "dan", b)
}
if StrANDStrCalled == 2 {
assert.Equal(t, "elen", a)
assert.Equal(t, "glenn", b)
}
StrANDStrCalled++
return squirrel.And{
squirrel.Expr("col = '%s'", a),
squirrel.Expr("col = '%s'", b),
}
}
ExpORExp := func(a, b squirrel.Sqlizer) squirrel.Or {
ExpORExpCalled++
return squirrel.Or{
a,
b,
}
}
NotExp := func(a squirrel.Sqlizer) squirrel.Sqlizer {
NotExpCalled++
r := squirrel.Expr("col <> '%s'", a)
return r
}
p := parser2{
NotExp: NotExp,
StrANDStr: StrANDStr,
ExpORExp: ExpORExp,
}
_, err := p.Go("(alice and bob) or not (carol and dan) or not (elen and glenn)")
assert.Nil(t, err)
assert.Equal(t, 3, StrANDStrCalled)
assert.Equal(t, 2, ExpORExpCalled)
assert.Equal(t, 2, NotExpCalled)
}
func Test_parenthesis_parser_case9(t *testing.T) {
expected := []string{"not (alice and bob)", "(carol and dan)", "(elen and gleen)"}
actual, err := splitAnd("not (alice and bob) and (carol and dan) and (elen and gleen)")
assert.Nil(t, err)
assert.Equal(t, expected, actual)
}
func Test_parenthesis_parser_case10(t *testing.T) {
assert.True(t, isTerm("not (alice and bob)"))
}