/** * @group functional */ 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(); $type = $index->getType('testQuery'); $geoField = 'location'; $type->setMapping(new Mapping($type, array($geoField => array('type' => 'geo_point', 'lat_lon' => true)))); $doc = new Document(1, array('name' => 'item1', 'location' => array(20, 20))); $type->addDocument($doc); $doc = new Document(2, array('name' => 'item2', 'location' => array(20, 20))); $type->addDocument($doc); $doc = new Document(3, array('name' => 'item3', 'location' => array(20, 20))); $type->addDocument($doc); $index->refresh(); $facet = new GeoCluster('clusters'); $facet->setField($geoField)->setFactor(1)->setShowIds(false); $query = new Query(); $query->setFacets(array($facet)); $response = $type->search($query); $facets = $response->getFacets(); $this->assertEquals(1, count($facets['clusters']['clusters'])); $index->delete(); }
/** * @group unit */ public function testSetFacets() { $query = new Query(); $facet = new Terms('text'); $query->setFacets(array($facet)); $data = $query->toArray(); $this->assertArrayHasKey('facets', $data); $this->assertEquals(array('text' => array('terms' => array())), $data['facets']); $query->setFacets(array()); $this->assertArrayNotHasKey('facets', $query->toArray()); }