|
13 | 13 | namespace Predis\Command\Redis\Search;
|
14 | 14 |
|
15 | 15 | use Predis\Command\Argument\Search\CreateArguments;
|
| 16 | +use Predis\Command\Argument\Search\SchemaFields\AbstractField; |
| 17 | +use Predis\Command\Argument\Search\SchemaFields\GeoShapeField; |
16 | 18 | use Predis\Command\Argument\Search\SchemaFields\NumericField;
|
17 | 19 | use Predis\Command\Argument\Search\SchemaFields\TextField;
|
18 | 20 | use Predis\Command\Argument\Search\SearchArguments;
|
@@ -224,6 +226,123 @@ public function testSearchJsonEmptyValues(): void
|
224 | 226 | $redis->ftsearch('idx', '@text_not_empty:("")', $searchArgs);
|
225 | 227 | }
|
226 | 228 |
|
| 229 | + /** |
| 230 | + * @group connected |
| 231 | + * @group relay-resp3 |
| 232 | + * @return void |
| 233 | + * @requiresRediSearchVersion >= 2.9.0 |
| 234 | + */ |
| 235 | + public function testGeoSearchQueriesIntersectsAndDisjoint(): void |
| 236 | + { |
| 237 | + $redis = $this->getClient(); |
| 238 | + |
| 239 | + $redis->hset('geo:doc_point1', 'g', 'POINT (10 10)'); |
| 240 | + $redis->hset('geo:doc_point2', 'g', 'POINT (50 50)'); |
| 241 | + $redis->hset('geo:doc_polygon1', 'g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'); |
| 242 | + $redis->hset('geo:doc_polygon2', 'g', 'POLYGON ((60 60, 65 75, 70 70, 65 55, 60 60))'); |
| 243 | + |
| 244 | + $ftCreateArguments = new CreateArguments(); |
| 245 | + $ftCreateArguments->prefix(['geo:']); |
| 246 | + |
| 247 | + $schema = [ |
| 248 | + new GeoShapeField('g', '', AbstractField::NOT_SORTABLE, false, GeoShapeField::COORD_FLAT), |
| 249 | + ]; |
| 250 | + |
| 251 | + $ftCreateResponse = $redis->ftcreate('idx_geo', $schema, $ftCreateArguments); |
| 252 | + $this->assertEquals('OK', $ftCreateResponse); |
| 253 | + |
| 254 | + $ftSearchArguments = new SearchArguments(); |
| 255 | + $ftSearchArguments->params(['shape', 'POLYGON ((15 15, 75 15, 50 70, 20 40, 15 15))']); |
| 256 | + $ftSearchArguments->noContent(); |
| 257 | + $ftSearchArguments->dialect(3); |
| 258 | + |
| 259 | + $actualResponse = $redis->ftsearch('idx_geo', '@g:[intersects $shape]', $ftSearchArguments); |
| 260 | + $this->assertSameValues( |
| 261 | + [ |
| 262 | + 2, |
| 263 | + 'geo:doc_polygon1', |
| 264 | + 'geo:doc_point2', |
| 265 | + ], $actualResponse |
| 266 | + ); |
| 267 | + |
| 268 | + $actualResponse = $redis->ftsearch('idx_geo', '@g:[disjoint $shape]', $ftSearchArguments); |
| 269 | + $this->assertSameValues( |
| 270 | + [ |
| 271 | + 2, |
| 272 | + 'geo:doc_polygon2', |
| 273 | + 'geo:doc_point1', |
| 274 | + ], $actualResponse |
| 275 | + ); |
| 276 | + } |
| 277 | + |
| 278 | + /** |
| 279 | + * @group connected |
| 280 | + * @group relay-resp3 |
| 281 | + * @return void |
| 282 | + * @requiresRediSearchVersion >= 2.9.0 |
| 283 | + */ |
| 284 | + public function testGeoSearchQueriesContainsAndWithin(): void |
| 285 | + { |
| 286 | + $redis = $this->getClient(); |
| 287 | + |
| 288 | + $redis->hset('geo:doc_point1', 'g', 'POINT (10 10)'); |
| 289 | + $redis->hset('geo:doc_point2', 'g', 'POINT (50 50)'); |
| 290 | + $redis->hset('geo:doc_polygon1', 'g', 'POLYGON ((20 20, 25 35, 35 25, 20 20))'); |
| 291 | + $redis->hset('geo:doc_polygon2', 'g', 'POLYGON ((60 60, 65 75, 70 70, 65 55, 60 60))'); |
| 292 | + |
| 293 | + $ftCreateArguments = new CreateArguments(); |
| 294 | + $ftCreateArguments->prefix(['geo:']); |
| 295 | + |
| 296 | + $schema = [ |
| 297 | + new GeoShapeField('g', '', |
| 298 | + AbstractField::NOT_SORTABLE, false, GeoShapeField::COORD_FLAT |
| 299 | + ), |
| 300 | + ]; |
| 301 | + |
| 302 | + $ftCreateResponse = $redis->ftcreate('idx_geo', $schema, $ftCreateArguments); |
| 303 | + $this->assertEquals('OK', $ftCreateResponse); |
| 304 | + |
| 305 | + $ftSearchArguments = new SearchArguments(); |
| 306 | + $ftSearchArguments->params(['shape', 'POINT(25 25)']); |
| 307 | + $ftSearchArguments->noContent(); |
| 308 | + $ftSearchArguments->dialect(3); |
| 309 | + |
| 310 | + $actualResponse = $redis->ftsearch('idx_geo', '@g:[contains $shape]', $ftSearchArguments); |
| 311 | + $this->assertSameValues( |
| 312 | + [ |
| 313 | + 1, |
| 314 | + 'geo:doc_polygon1', |
| 315 | + ], $actualResponse |
| 316 | + ); |
| 317 | + |
| 318 | + $ftSearchArguments = new SearchArguments(); |
| 319 | + $ftSearchArguments->params(['shape', 'POLYGON((24 24, 24 26, 25 25, 24 24))']); |
| 320 | + $ftSearchArguments->noContent(); |
| 321 | + $ftSearchArguments->dialect(3); |
| 322 | + |
| 323 | + $actualResponse = $redis->ftsearch('idx_geo', '@g:[contains $shape]', $ftSearchArguments); |
| 324 | + $this->assertSameValues( |
| 325 | + [ |
| 326 | + 1, |
| 327 | + 'geo:doc_polygon1', |
| 328 | + ], $actualResponse |
| 329 | + ); |
| 330 | + |
| 331 | + $ftSearchArguments = new SearchArguments(); |
| 332 | + $ftSearchArguments->params(['shape', 'POLYGON((15 15, 75 15, 50 70, 20 40, 15 15))']); |
| 333 | + $ftSearchArguments->noContent(); |
| 334 | + $ftSearchArguments->dialect(3); |
| 335 | + |
| 336 | + $actualResponse = $redis->ftsearch('idx_geo', '@g:[within $shape]', $ftSearchArguments); |
| 337 | + $this->assertSameValues( |
| 338 | + [ |
| 339 | + 2, |
| 340 | + 'geo:doc_polygon1', |
| 341 | + 'geo:doc_point2', |
| 342 | + ], $actualResponse |
| 343 | + ); |
| 344 | + } |
| 345 | + |
227 | 346 | public function argumentsProvider(): array
|
228 | 347 | {
|
229 | 348 | return [
|
|
0 commit comments