Subversion Repository Public Repository

litesoft

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
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
// This Source Code is in the Public Domain per: http://unlicense.org
package org.litesoft.orsup.selection;

import junit.framework.*;

import org.litesoft.*;
import org.litesoft.orsup.selection.nonpublic.*;

public class WhereClauseFactoryTest extends TestCasePlus
{
    public static Test suite()
    {
        return new TestSuite( WhereClauseFactoryTest.class );
    }

    public WhereClauseFactoryTest( String name )
    {
        super( name );
    }

    public static void main( String[] args )
    {
        junit.textui.TestRunner.run( suite() );
    }

    static class WCtableID implements SimpleFromIdentifier
    {
        @Override
        public String getTableName()
        {
            return "TheTable";
        }

        @Override
        public String getIdentifierName()
        {
            return "zTable";
        }
    }

    static class TestingColumnDefinition extends AbstractColumnDefinition
    {
        protected TestingColumnDefinition( String pName, boolean pAddSearchColumn, Class pColumnType )
        {
            super( pName + "Attr", pName + "Col", pAddSearchColumn ? pName + "Col_SC" : pName + "Col", pColumnType );
        }

        protected TestingColumnDefinition( String pName, Class pColumnType )
        {
            super( pName + "Attr", pName + "Col", pColumnType );
        }
    }

    static class CDstring extends TestingColumnDefinition
    {
        CDstring( String pName, boolean pAddSearchColumn )
        {
            super( pName, pAddSearchColumn, String.class );
        }

        CDstring( String pName )
        {
            this( pName, false );
        }
    }

    static class CDinteger extends TestingColumnDefinition
    {
        CDinteger( String pName )
        {
            super( pName, Integer.class );
        }
    }

    private WhereClauseFactory F = WhereClauseFactory.INSTANCE;

    private CDstring TheString = new CDstring( "TheStr" );
    private CDstring TheString_SC = new CDstring( "TheStr", true );
    private CDinteger TheInteger = new CDinteger( "TheInt" );
    private CDinteger TheInteger2 = new CDinteger( "TheInt2" );

    private WhereClause wcStrNull = F.isNull( TheString );
    private WhereClause wcStrNotNull = F.isNotNull( TheString );
    private WhereClause wcStrEqual = F.isEqual( TheString, "gas" );
    private WhereClause wcIntEqual = F.isEqual( TheInteger, 5 );
    private WhereClause wcIntEqual2 = F.isEqual( TheInteger2, 6 );
    private WhereClause wcStrNotEqual = F.isNotEqual( TheString, "gas" );
    private WhereClause wcintNotEqual = F.isNotEqual( TheInteger, 5 );

    private SingleColumnSelect zSingleColumnSelect = new SingleColumnSelect( TheInteger, new WCtableID(), wcStrNotNull );

    public void test_isNull()
            throws Exception
    {
        WhereClause wc = F.isNull( TheString );

        Assert.assertEquals( "Where TheStrAttr == null", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol IS NULL", wc.toSQL() );

        wc = F.isNull( TheString_SC );

        Assert.assertEquals( "Where TheStrAttr == null", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol_SC IS NULL", wc.toSQL() );
    }

    public void test_isNotNull()
            throws Exception
    {
        WhereClause wc = F.isNotNull( TheString );

        Assert.assertEquals( "Where TheStrAttr != null", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol IS NOT NULL", wc.toSQL() );
    }

    public void test_isEqual_Null()
            throws Exception
    {
        WhereClause wc = F.isEqual( TheString, null );

        Assert.assertEquals( wcStrNull.toString(), wc.toString() );
        Assert.assertEquals( wcStrNull.toSQL(), wc.toSQL() );
    }

    public void test_isNotEqual_Null()
            throws Exception
    {
        WhereClause wc = F.isNotEqual( TheString, null );

        Assert.assertEquals( wcStrNotNull.toString(), wc.toString() );
        Assert.assertEquals( wcStrNotNull.toSQL(), wc.toSQL() );
    }

    public void test_isEqual()
            throws Exception
    {
        WhereClause wc = F.isEqual( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr == \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol = 'gas'", wc.toSQL() );
    }

    public void test_isNotEqual()
            throws Exception
    {
        WhereClause wc = F.isNotEqual( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr != \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol <> 'gas') OR (TheStrCol IS NULL)", wc.toSQL() );
    }

    public void test_isEqual_int()
            throws Exception
    {
        WhereClause wc = F.isEqual( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr == 5", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol = 5", wc.toSQL() );
    }

    public void test_isNotEqual_int()
            throws Exception
    {
        WhereClause wc = F.isNotEqual( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr != 5", wc.toString() );
        Assert.assertEquals( "WHERE (TheIntCol <> 5) OR (TheIntCol IS NULL)", wc.toSQL() );
    }

    public void test_isGreaterThan_Null()
            throws Exception
    {
        try
        {
            F.isGreaterThan( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isNotGreaterThan_Null()
            throws Exception
    {
        try
        {
            F.isNotGreaterThan( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isGreaterThan()
            throws Exception
    {
        WhereClause wc = F.isGreaterThan( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr > \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol > 'gas'", wc.toSQL() );
    }

    public void test_isNotGreaterThan()
            throws Exception
    {
        WhereClause wc = F.isNotGreaterThan( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr <= \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol <= 'gas'", wc.toSQL() );
    }

    public void test_isGreaterThan_int()
            throws Exception
    {
        WhereClause wc = F.isGreaterThan( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr > 5", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol > 5", wc.toSQL() );
    }

    public void test_isNotGreaterThan_int()
            throws Exception
    {
        WhereClause wc = F.isNotGreaterThan( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr <= 5", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol <= 5", wc.toSQL() );
    }

    public void test_isLessThan_Null()
            throws Exception
    {
        try
        {
            F.isLessThan( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isNotLessThan_Null()
            throws Exception
    {
        try
        {
            F.isNotLessThan( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isLessThan()
            throws Exception
    {
        WhereClause wc = F.isLessThan( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr < \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol < 'gas'", wc.toSQL() );
    }

    public void test_isNotLessThan()
            throws Exception
    {
        WhereClause wc = F.isNotLessThan( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr >= \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol >= 'gas'", wc.toSQL() );
    }

    public void test_isLessThan_int()
            throws Exception
    {
        WhereClause wc = F.isLessThan( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr < 5", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol < 5", wc.toSQL() );
    }

    public void test_isNotLessThan_int()
            throws Exception
    {
        WhereClause wc = F.isNotLessThan( TheInteger, 5 );

        Assert.assertEquals( "Where TheIntAttr >= 5", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol >= 5", wc.toSQL() );
    }

    public void test_isBetween_NullLeft()
            throws Exception
    {
        try
        {
            F.isBetween( TheString, null, "kls" );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isNotBetween_NullLeft()
            throws Exception
    {
        try
        {
            F.isNotBetween( TheString, null, "kls" );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isBetween_NullRight()
            throws Exception
    {
        try
        {
            F.isBetween( TheString, "gas", null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isNotBetween_NullRight()
            throws Exception
    {
        try
        {
            F.isNotBetween( TheString, "gas", null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isBetween_EqualNull()
            throws Exception
    {
        WhereClause wc = F.isBetween( TheString, null, null );

        Assert.assertEquals( wcStrNull.toString(), wc.toString() );
        Assert.assertEquals( wcStrNull.toSQL(), wc.toSQL() );
    }

    public void test_isNotBetween_EqualNull()
            throws Exception
    {
        WhereClause wc = F.isNotBetween( TheString, null, null );

        Assert.assertEquals( wcStrNotNull.toString(), wc.toString() );
        Assert.assertEquals( wcStrNotNull.toSQL(), wc.toSQL() );
    }

    public void test_isBetween_Equal()
            throws Exception
    {
        WhereClause wc = F.isBetween( TheString, "gas", "g" + "a" + "s" );

        Assert.assertEquals( wcStrEqual.toString(), wc.toString() );
        Assert.assertEquals( wcStrEqual.toSQL(), wc.toSQL() );
    }

    public void test_isNotBetween_Equal()
            throws Exception
    {
        WhereClause wc = F.isNotBetween( TheString, "gas", "g" + "a" + "s" );

        Assert.assertEquals( wcStrNotEqual.toString(), wc.toString() );
        Assert.assertEquals( wcStrNotEqual.toSQL(), wc.toSQL() );
    }

    public void test_isBetween_Equal_int()
            throws Exception
    {
        WhereClause wc = F.isBetween( TheInteger, 5, 5 );

        Assert.assertEquals( wcIntEqual.toString(), wc.toString() );
        Assert.assertEquals( wcIntEqual.toSQL(), wc.toSQL() );
    }

    public void test_isNotBetween_Equal_int()
            throws Exception
    {
        WhereClause wc = F.isNotBetween( TheInteger, 5, 5 );

        Assert.assertEquals( wcintNotEqual.toString(), wc.toString() );
        Assert.assertEquals( wcintNotEqual.toSQL(), wc.toSQL() );
    }

    public void test_isBetween()
            throws Exception
    {
        WhereClause wc = F.isBetween( TheString, "gas", "kls" );

        Assert.assertEquals( "Where \"gas\" <= TheStrAttr <= \"kls\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol BETWEEN 'gas' AND 'kls'", wc.toSQL() );
    }

    public void test_isNotBetween()
            throws Exception
    {
        WhereClause wc = F.isNotBetween( TheString, "gas", "kls" );

        Assert.assertEquals( "Where NOT (\"gas\" <= TheStrAttr <= \"kls\")", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT BETWEEN 'gas' AND 'kls'", wc.toSQL() );
    }

    public void test_isBetween_int()
            throws Exception
    {
        WhereClause wc = F.isBetween( TheInteger, 5, 6 );

        Assert.assertEquals( "Where 5 <= TheIntAttr <= 6", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol BETWEEN 5 AND 6", wc.toSQL() );
    }

    public void test_isNotBetween_int()
            throws Exception
    {
        WhereClause wc = F.isNotBetween( TheInteger, 5, 6 );

        Assert.assertEquals( "Where NOT (5 <= TheIntAttr <= 6)", wc.toString() );
        Assert.assertEquals( "WHERE TheIntCol NOT BETWEEN 5 AND 6", wc.toSQL() );
    }

    public void test_endsWith_Null()
            throws Exception
    {
        try
        {
            F.endsWith( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_doesNotEndWith_Null()
            throws Exception
    {
        try
        {
            F.doesNotEndWith( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_endsWith()
            throws Exception
    {
        WhereClause wc = F.endsWith( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr EndsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE '%gas'", wc.toSQL() );
    }

    public void test_doesNotEndWith()
            throws Exception
    {
        WhereClause wc = F.doesNotEndWith( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr Does NOT EndsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE '%gas'", wc.toSQL() );
    }

    public void test_startsWith_Null()
            throws Exception
    {
        try
        {
            F.startsWith( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_doesNotStartWith_Null()
            throws Exception
    {
        try
        {
            F.doesNotStartWith( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_startsWith()
            throws Exception
    {
        WhereClause wc = F.startsWith( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr StartsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'gas%'", wc.toSQL() );
    }

    public void test_doesNotStartWith()
            throws Exception
    {
        WhereClause wc = F.doesNotStartWith( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr Does NOT StartsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'gas%'", wc.toSQL() );
    }

    public void test_contains_Null()
            throws Exception
    {
        try
        {
            F.contains( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_doesNotContain_Null()
            throws Exception
    {
        try
        {
            F.doesNotContain( TheString, null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_like_Null()
            throws Exception
    {
        try
        {
            F.like( TheString, (String[]) null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_isNotLike_Null()
            throws Exception
    {
        try
        {
            F.isNotLike( TheString, (String[]) null );
            Assert.fail();
        }
        catch ( IllegalArgumentException expected )
        {
        }
    }

    public void test_like()
            throws Exception
    {
        WhereClause wc = F.like( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr == \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol = 'gas'", wc.toSQL() );

        wc = F.like( TheString, "gas", "" );

        Assert.assertEquals( "Where TheStrAttr StartsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'gas%'", wc.toSQL() );

        wc = F.like( TheString, "", "gas" );

        Assert.assertEquals( "Where TheStrAttr EndsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE '%gas'", wc.toSQL() );

        wc = F.like( TheString, "", "gas", "" );

        Assert.assertEquals( "Where TheStrAttr Contains \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE '%gas%'", wc.toSQL() );

        wc = F.like( TheString, "kls", "gas" );

        Assert.assertEquals( "Where TheStrAttr matches( \"kls\", \"gas\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'kls%gas'", wc.toSQL() );

        wc = F.like( TheString, "kls", "gas", "" );

        Assert.assertEquals( "Where TheStrAttr matches( \"kls\", \"gas\", \"\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'kls%gas%'", wc.toSQL() );

        wc = F.like( TheString, "", "gas", "kls" );

        Assert.assertEquals( "Where TheStrAttr matches( \"\", \"gas\", \"kls\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE '%gas%kls'", wc.toSQL() );

        wc = F.like( TheString, "as", "gas", "ds" );

        Assert.assertEquals( "Where TheStrAttr matches( \"as\", \"gas\", \"ds\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'as%gas%ds'", wc.toSQL() );

        wc = F.like( TheString, "as", "gas", "", "ds" );

        Assert.assertEquals( "Where TheStrAttr matches( \"as\", \"gas\", \"ds\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'as%gas%ds'", wc.toSQL() );

        wc = F.like( TheString, "gas", "as", "ds", "bs" );

        Assert.assertEquals( "Where TheStrAttr matches( \"gas\", \"as\", \"ds\", \"bs\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE 'gas%as%ds%bs'", wc.toSQL() );
    }

    public void test_isNotLike()
            throws Exception
    {
        WhereClause wc = F.isNotLike( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr != \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol <> 'gas') OR (TheStrCol IS NULL)", wc.toSQL() );

        wc = F.isNotLike( TheString, "gas", "" );

        Assert.assertEquals( "Where TheStrAttr Does NOT StartsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'gas%'", wc.toSQL() );

        wc = F.isNotLike( TheString, "", "gas" );

        Assert.assertEquals( "Where TheStrAttr Does NOT EndsWith \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE '%gas'", wc.toSQL() );

        wc = F.isNotLike( TheString, "", "gas", "" );

        Assert.assertEquals( "Where TheStrAttr Does NOT Contains \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE '%gas%'", wc.toSQL() );

        wc = F.isNotLike( TheString, "kls", "gas" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"kls\", \"gas\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'kls%gas'", wc.toSQL() );

        wc = F.isNotLike( TheString, "kls", "gas", "" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"kls\", \"gas\", \"\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'kls%gas%'", wc.toSQL() );

        wc = F.isNotLike( TheString, "", "gas", "kls" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"\", \"gas\", \"kls\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE '%gas%kls'", wc.toSQL() );

        wc = F.isNotLike( TheString, "as", "gas", "ds" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"as\", \"gas\", \"ds\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'as%gas%ds'", wc.toSQL() );

        wc = F.isNotLike( TheString, "as", "gas", "", "ds" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"as\", \"gas\", \"ds\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'as%gas%ds'", wc.toSQL() );

        wc = F.isNotLike( TheString, "gas", "as", "ds", "bs" );

        Assert.assertEquals( "Where TheStrAttr Does NOT matches( \"gas\", \"as\", \"ds\", \"bs\" )", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE 'gas%as%ds%bs'", wc.toSQL() );
    }

    public void test_contains()
            throws Exception
    {
        WhereClause wc = F.contains( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr Contains \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol LIKE '%gas%'", wc.toSQL() );
    }

    public void test_doesNotContain()
            throws Exception
    {
        WhereClause wc = F.doesNotContain( TheString, "gas" );

        Assert.assertEquals( "Where TheStrAttr Does NOT Contains \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol NOT LIKE '%gas%'", wc.toSQL() );
    }

    public void test_alwaysTrue()
            throws Exception
    {
        WhereClause wc = F.alwaysTrue();

        Assert.assertEquals( "Where TRUE", wc.toString() );
        Assert.assertEquals( "WHERE TRUE", wc.toSQL() );
    }

    public void test_alwaysFalse()
            throws Exception
    {
        WhereClause wc = F.alwaysFalse();

        Assert.assertEquals( "Where FALSE", wc.toString() );
        Assert.assertEquals( "WHERE FALSE", wc.toSQL() );
    }

    public void test_andTrue()
            throws Exception
    {
        WhereClause wc = F.and( wcStrEqual, F.alwaysTrue() );

        Assert.assertEquals( "Where TheStrAttr == \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol = 'gas'", wc.toSQL() );
    }

    public void test_andFalse()
            throws Exception
    {
        WhereClause wc = F.and( wcStrEqual, F.alwaysFalse() );

        Assert.assertEquals( "Where FALSE", wc.toString() );
        Assert.assertEquals( "WHERE FALSE", wc.toSQL() );
    }

    public void test_orTrue()
            throws Exception
    {
        WhereClause wc = F.or( wcStrEqual, F.alwaysTrue() );

        Assert.assertEquals( "Where TRUE", wc.toString() );
        Assert.assertEquals( "WHERE TRUE", wc.toSQL() );
    }

    public void test_orFalse()
            throws Exception
    {
        WhereClause wc = F.or( wcStrEqual, F.alwaysFalse() );

        Assert.assertEquals( "Where TheStrAttr == \"gas\"", wc.toString() );
        Assert.assertEquals( "WHERE TheStrCol = 'gas'", wc.toSQL() );
    }

    public void test_and()
            throws Exception
    {
        WhereClause wc = F.and( wcStrEqual, wcIntEqual );

        Assert.assertEquals( "Where (TheStrAttr == \"gas\") AND (TheIntAttr == 5)", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol = 'gas') AND (TheIntCol = 5)", wc.toSQL() );
    }

    public void test_and_and()
            throws Exception
    {
        WhereClause wc = F.and( wcStrEqual, F.and( wcIntEqual, wcIntEqual2 ) );

        Assert.assertEquals( "Where (TheStrAttr == \"gas\") AND (TheIntAttr == 5) AND (TheInt2Attr == 6)", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol = 'gas') AND (TheIntCol = 5) AND (TheInt2Col = 6)", wc.toSQL() );
    }

    public void test_not_and()
            throws Exception
    {
        WhereClause wc = F.not( F.and( wcStrEqual, wcIntEqual ) );

        Assert.assertEquals( "Where NOT ((TheStrAttr == \"gas\") AND (TheIntAttr == 5))", wc.toString() );
        Assert.assertEquals( "WHERE NOT ((TheStrCol = 'gas') AND (TheIntCol = 5))", wc.toSQL() );
    }

    public void test_or()
            throws Exception
    {
        WhereClause wc = F.or( wcStrEqual, wcIntEqual );

        Assert.assertEquals( "Where (TheStrAttr == \"gas\") OR (TheIntAttr == 5)", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol = 'gas') OR (TheIntCol = 5)", wc.toSQL() );
    }

    public void test_or_or()
            throws Exception
    {
        WhereClause wc = F.or( wcStrEqual, F.or( wcIntEqual, wcIntEqual2 ) );

        Assert.assertEquals( "Where (TheStrAttr == \"gas\") OR (TheIntAttr == 5) OR (TheInt2Attr == 6)", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol = 'gas') OR (TheIntCol = 5) OR (TheInt2Col = 6)", wc.toSQL() );
    }

    public void test_and_or()
            throws Exception
    {
        WhereClause wc = F.and( wcStrEqual, F.or( wcIntEqual, wcIntEqual2 ) );

        Assert.assertEquals( "Where (TheStrAttr == \"gas\") AND ((TheIntAttr == 5) OR (TheInt2Attr == 6))", wc.toString() );
        Assert.assertEquals( "WHERE (TheStrCol = 'gas') AND ((TheIntCol = 5) OR (TheInt2Col = 6))", wc.toSQL() );
    }

    public void test_isIn()
            throws Exception
    {
        WhereClause wc = F.isIn( TheInteger2, zSingleColumnSelect );

        Assert.assertEquals( "Where TheInt2Attr IsIn (Select TheIntAttr From zTable Where TheStrAttr != null)", wc.toString() );
        Assert.assertEquals( "WHERE TheInt2Col IN (SELECT TheIntCol FROM TheTable WHERE TheStrCol IS NOT NULL)", wc.toSQL() );
    }

    public void test_isNotIn()
            throws Exception
    {
        WhereClause wc = F.isNotIn( TheInteger2, zSingleColumnSelect );

        Assert.assertEquals( "Where TheInt2Attr IsNotIn (Select TheIntAttr From zTable Where TheStrAttr != null)", wc.toString() );
        Assert.assertEquals( "WHERE TheInt2Col NOT IN (SELECT TheIntCol FROM TheTable WHERE TheStrCol IS NOT NULL)", wc.toSQL() );
    }

    public void test_isAnyOf()
            throws Exception
    {
        WhereClause wc = F.isAnyOf( TheInteger2 );

        Assert.assertEquals( "Where FALSE", wc.toString() );
        Assert.assertEquals( "WHERE FALSE", wc.toSQL() );

        wc = F.isAnyOf( TheInteger2, "gas" );

        Assert.assertEquals( "Where TheInt2Attr == gas", wc.toString() );
        Assert.assertEquals( "WHERE TheInt2Col = gas", wc.toSQL() );

        wc = F.isAnyOf( TheInteger2, "gas", "drs" );

        Assert.assertEquals( "Where TheInt2Attr isAnyOf (gas,drs)", wc.toString() );
        Assert.assertEquals( "WHERE TheInt2Col IN (gas,drs)", wc.toSQL() );
    }

    public void test_isNotAnyOf()
            throws Exception
    {
        WhereClause wc = F.isNotAnyOf( TheInteger2 );

        Assert.assertEquals( "Where TRUE", wc.toString() );
        Assert.assertEquals( "WHERE TRUE", wc.toSQL() );

        wc = F.isNotAnyOf( TheInteger2, "gas" );

        Assert.assertEquals( "Where TheInt2Attr != gas", wc.toString() );
        Assert.assertEquals( "WHERE (TheInt2Col <> gas) OR (TheInt2Col IS NULL)", wc.toSQL() );

        wc = F.isNotAnyOf( TheInteger2, "gas", "drs" );

        Assert.assertEquals( "Where TheInt2Attr isNotAnyOf (gas,drs)", wc.toString() );
        Assert.assertEquals( "WHERE TheInt2Col NOT IN (gas,drs)", wc.toSQL() );
    }
}

Commits for litesoft/trunk/Java/core/Server/src/org/litesoft/orsup/selection/WhereClauseFactoryTest.java

Diff revisions: vs.
Revision Author Commited Message
947 Diff Diff GeorgeS picture GeorgeS Fri 06 Jun, 2014 23:36:56 +0000

Correct Spelling of package!

50 Diff Diff GeorgeS picture GeorgeS Tue 13 Apr, 2010 11:51:38 +0000
49 Diff Diff GeorgeS picture GeorgeS Mon 12 Apr, 2010 02:59:10 +0000

License Text

24 Diff Diff GeorgeS picture GeorgeS Wed 24 Feb, 2010 01:51:38 +0000
2 GeorgeS picture GeorgeS Sun 07 Feb, 2010 12:50:58 +0000