@@ -79,38 +79,66 @@ public function testTransform()
79
79
$ this ->assertCount (1 , $ sqlFilter ->getParams ());
80
80
$ this ->assertSame ('Sample string ' , $ sqlFilter ->getParams ()[0 ]);
81
81
82
- // Test with a complex filter and only one property
83
- // Sample complex filters with only one property would be
84
- // "<10+>2" : Lower than 10 and greater than 2
85
- // "'Handball'-'Football'" : Equals to 'Hand ball' or 'Foot ball'
86
- // "'*ball*'+'*tennis*'" : Like 'ball' and like 'tennis'
82
+ // Test with a key which has a bad type
83
+ try {
84
+ $ this ->filterConverter ->transform (0.26 , '>10 ' );
85
+ $ this ->fail ('Must have thrown a ConverterException ! ' );
86
+ } catch (ConverterException $ cex ) {
87
+ $ this ->assertSame ('Invalid filter key type ! ' , $ cex ->getMessage ());
88
+ }
89
+ }
90
+
91
+
92
+ /**
93
+ * Test method for {@link SqlFilterConverter#transform(Object, String)}.
94
+ *
95
+ * @group SqlFilterConverterTest.testTransformAnd
96
+ */
97
+ public function testTransformAnd ()
98
+ {
99
+ // Test with integers
87
100
$ sqlFilter = $ this ->filterConverter ->transform ('property ' , '<10+>2 ' );
88
101
$ this ->assertSame ('property < ? AND property > ? ' , $ sqlFilter ->getExpression ());
89
102
$ this ->assertCount (2 , $ sqlFilter ->getParams ());
90
103
$ this ->assertSame (10 , $ sqlFilter ->getParams ()[0 ]);
91
104
$ this ->assertSame (2 , $ sqlFilter ->getParams ()[1 ]);
92
105
93
- $ sqlFilter = $ this ->filterConverter ->transform ('property ' , '>10-<2 ' );
94
- $ this ->assertSame ('(property > ? OR property < ?) ' , $ sqlFilter ->getExpression ());
106
+ // Test with floats
107
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , '<5.3+>3.4 ' );
108
+ $ this ->assertSame ('property < ? AND property > ? ' , $ sqlFilter ->getExpression ());
95
109
$ this ->assertCount (2 , $ sqlFilter ->getParams ());
96
- $ this ->assertSame (10 , $ sqlFilter ->getParams ()[0 ]);
97
- $ this ->assertSame (2 , $ sqlFilter ->getParams ()[1 ]);
110
+ $ this ->assertSame (5.3 , $ sqlFilter ->getParams ()[0 ]);
111
+ $ this ->assertSame (3.4 , $ sqlFilter ->getParams ()[1 ]);
112
+
113
+ // Test with strings
114
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , "Handball+Football " );
115
+ $ this ->assertSame ('property = ? AND property = ? ' , $ sqlFilter ->getExpression ());
116
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
117
+ $ this ->assertSame ('Handball ' , $ sqlFilter ->getParams ()[0 ]);
118
+ $ this ->assertSame ('Football ' , $ sqlFilter ->getParams ()[1 ]);
98
119
120
+ // Test with strings and the like operator
121
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , "~'*ball*'+~'*tennis*' " );
122
+ $ this ->assertSame ('property like ? AND property like ? ' , $ sqlFilter ->getExpression ());
123
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
124
+ $ this ->assertSame ('%ball% ' , $ sqlFilter ->getParams ()[0 ]);
125
+ $ this ->assertSame ('%tennis% ' , $ sqlFilter ->getParams ()[1 ]);
126
+ }
127
+
128
+ /**
129
+ * Test method for {@link SqlFilterConverter#transform(Object, String)}.
130
+ *
131
+ * @group SqlFilterConverterTest.testTransformComplex
132
+ */
133
+ public function testTransformComplex ()
134
+ {
99
135
// Test with a complex filter with multiple properties (currently not supported and will fail)
100
136
try {
101
137
$ this ->filterConverter ->transform (0 , 'price:<90-validity:>=3 ' );
102
138
$ this ->fail ('Must have thrown a ConverterException ! ' );
103
139
} catch (ConverterException $ cex ) {
104
140
$ this ->assertSame ('Complex filters are currently not implemented ! ' , $ cex ->getMessage ());
105
141
}
106
-
107
- // Test with a key which has a bad type
108
- try {
109
- $ this ->filterConverter ->transform (0.26 , '>10 ' );
110
- $ this ->fail ('Must have thrown a ConverterException ! ' );
111
- } catch (ConverterException $ cex ) {
112
- $ this ->assertSame ('Invalid filter key type ! ' , $ cex ->getMessage ());
113
- }
114
142
}
115
143
116
144
/**
@@ -497,4 +525,40 @@ public function testTransformNotLike()
497
525
);
498
526
}
499
527
}
528
+
529
+ /**
530
+ * Test method for {@link SqlFilterConverter#transform(Object, String)}.
531
+ *
532
+ * @group SqlFilterConverterTest.testTransformOr
533
+ */
534
+ public function testTransformOr ()
535
+ {
536
+ // Test with integers
537
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , '<10->2 ' );
538
+ $ this ->assertSame ('property < ? OR property > ? ' , $ sqlFilter ->getExpression ());
539
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
540
+ $ this ->assertSame (10 , $ sqlFilter ->getParams ()[0 ]);
541
+ $ this ->assertSame (2 , $ sqlFilter ->getParams ()[1 ]);
542
+
543
+ // Test with floats
544
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , '<5.3->3.4 ' );
545
+ $ this ->assertSame ('property < ? OR property > ? ' , $ sqlFilter ->getExpression ());
546
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
547
+ $ this ->assertSame (5.3 , $ sqlFilter ->getParams ()[0 ]);
548
+ $ this ->assertSame (3.4 , $ sqlFilter ->getParams ()[1 ]);
549
+
550
+ // Test with strings
551
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , "Handball-Football " );
552
+ $ this ->assertSame ('property = ? OR property = ? ' , $ sqlFilter ->getExpression ());
553
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
554
+ $ this ->assertSame ('Handball ' , $ sqlFilter ->getParams ()[0 ]);
555
+ $ this ->assertSame ('Football ' , $ sqlFilter ->getParams ()[1 ]);
556
+
557
+ // Test with strings and the like operator
558
+ $ sqlFilter = $ this ->filterConverter ->transform ('property ' , "~'*ball*'-~'*tennis*' " );
559
+ $ this ->assertSame ('property like ? OR property like ? ' , $ sqlFilter ->getExpression ());
560
+ $ this ->assertCount (2 , $ sqlFilter ->getParams ());
561
+ $ this ->assertSame ('%ball% ' , $ sqlFilter ->getParams ()[0 ]);
562
+ $ this ->assertSame ('%tennis% ' , $ sqlFilter ->getParams ()[1 ]);
563
+ }
500
564
}
0 commit comments