summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/Facet/GeoClusterTest.php
blob: d06b58f9c7915e6653c22c54094a17c64da24b66 (plain)
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
<?php

namespace Elastica\Test\Facet;

use Elastica\Test\Base as BaseTest;

class GeoClusterTest extends BaseTest{
    public function testQuery() {
        $client = $this->_getClient();
        $nodes = $client->getCluster()->getNodes();
        if(!$nodes[0]->getInfo()->hasPlugin('geocluster-facet')){
            $this->markTestSkipped('geocluster-facet plugin not installed');
        }

        $index = $this->_createIndex('geocluster_test');
        $type = $index->getType('testQuery');
        $geoField = 'location';

        $type->setMapping(new \Elastica\Type\Mapping($type, array(
            $geoField => array( 'type' => 'geo_point', 'lat_lon' => true )
        )));

        $doc = new \Elastica\Document(1, array('name' => 'item1', 'location' => array(20,20)));
        $type->addDocument($doc);

        $doc = new \Elastica\Document(2, array('name' => 'item2', 'location' => array(20,20)));
        $type->addDocument($doc);

        $doc = new \Elastica\Document(3, array('name' => 'item3', 'location' => array(20,20)));
        $type->addDocument($doc);

        $index->refresh();

        $facet = new \Elastica\Facet\GeoCluster('clusters');
        $facet
            ->setField($geoField)
            ->setFactor(1)
            ->setShowIds(false);
        $query = new \Elastica\Query();
        $query->setFacets(array($facet));

        $response = $type->search($query);
        $facets = $response->getFacets();

        $this->assertEquals(1, count($facets['clusters']['clusters']));

        $index->delete();
    }
}