Skip to content

Commit b292ef6

Browse files
committed
Added same values assertion
1 parent bdd92de commit b292ef6

File tree

1 file changed

+9
-13
lines changed

1 file changed

+9
-13
lines changed

tests/Predis/Command/Redis/Search/FTSEARCH_Test.php

+9-13
Original file line numberDiff line numberDiff line change
@@ -154,27 +154,24 @@ public function testGeoSearchQueriesIntersectsAndDisjoint(): void
154154

155155
$ftSearchArguments = new SearchArguments();
156156
$ftSearchArguments->params(['shape', 'POLYGON ((15 15, 75 15, 50 70, 20 40, 15 15))']);
157+
$ftSearchArguments->noContent();
157158
$ftSearchArguments->dialect(3);
158159

159160
$actualResponse = $redis->ftsearch('idx_geo', '@g:[intersects $shape]', $ftSearchArguments);
160-
$this->assertSame(
161+
$this->assertSameValues(
161162
[
162163
2,
163164
'geo:doc_polygon1',
164-
['g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'],
165165
'geo:doc_point2',
166-
['g', 'POINT (50 50)'],
167166
], $actualResponse
168167
);
169168

170169
$actualResponse = $redis->ftsearch('idx_geo', '@g:[disjoint $shape]', $ftSearchArguments);
171-
$this->assertSame(
170+
$this->assertSameValues(
172171
[
173172
2,
174173
'geo:doc_polygon2',
175-
['g', 'POLYGON ((60 60, 65 75, 70 70, 65 55, 60 60))'],
176174
'geo:doc_point1',
177-
['g', 'POINT (10 10)'],
178175
], $actualResponse
179176
);
180177
}
@@ -208,42 +205,41 @@ public function testGeoSearchQueriesContainsAndWithin(): void
208205

209206
$ftSearchArguments = new SearchArguments();
210207
$ftSearchArguments->params(['shape', 'POINT(25 25)']);
208+
$ftSearchArguments->noContent();
211209
$ftSearchArguments->dialect(3);
212210

213211
$actualResponse = $redis->ftsearch('idx_geo', '@g:[contains $shape]', $ftSearchArguments);
214-
$this->assertSame(
212+
$this->assertSameValues(
215213
[
216214
1,
217215
'geo:doc_polygon1',
218-
['g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'],
219216
], $actualResponse
220217
);
221218

222219
$ftSearchArguments = new SearchArguments();
223220
$ftSearchArguments->params(['shape', 'POLYGON((24 24, 24 26, 25 25, 24 24))']);
221+
$ftSearchArguments->noContent();
224222
$ftSearchArguments->dialect(3);
225223

226224
$actualResponse = $redis->ftsearch('idx_geo', '@g:[contains $shape]', $ftSearchArguments);
227-
$this->assertSame(
225+
$this->assertSameValues(
228226
[
229227
1,
230228
'geo:doc_polygon1',
231-
['g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'],
232229
], $actualResponse
233230
);
234231

235232
$ftSearchArguments = new SearchArguments();
236233
$ftSearchArguments->params(['shape', 'POLYGON((15 15, 75 15, 50 70, 20 40, 15 15))']);
234+
$ftSearchArguments->noContent();
237235
$ftSearchArguments->dialect(3);
238236

239237
$actualResponse = $redis->ftsearch('idx_geo', '@g:[within $shape]', $ftSearchArguments);
240-
$this->assertSame(
238+
$this->assertSameValues(
241239
[
242240
2,
243241
'geo:doc_polygon1',
244-
['g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'],
245242
'geo:doc_point2',
246-
['g', 'POINT (50 50)'],
247243
], $actualResponse
248244
);
249245
}

0 commit comments

Comments
 (0)