summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php94
1 files changed, 0 insertions, 94 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php
deleted file mode 100644
index 1e026eae..00000000
--- a/vendor/ruflin/elastica/test/lib/Elastica/Test/ResponseTest.php
+++ /dev/null
@@ -1,94 +0,0 @@
-<?php
-
-namespace Elastica\Test;
-use Elastica\Document;
-use Elastica\Facet\DateHistogram;
-use Elastica\Query;
-use Elastica\Query\MatchAll;
-use Elastica\Request;
-use Elastica\Type\Mapping;
-use Elastica\Test\Base as BaseTest;
-
-class ResponseTest extends BaseTest
-{
- public function testClassHierarchy()
- {
- $facet = new DateHistogram('dateHist1');
- $this->assertInstanceOf('Elastica\Facet\Histogram', $facet);
- $this->assertInstanceOf('Elastica\Facet\AbstractFacet', $facet);
- unset($facet);
- }
-
- public function testResponse()
- {
- $index = $this->_createIndex();
- $type = $index->getType('helloworld');
-
- $mapping = new Mapping($type, array(
- 'name' => array('type' => 'string', 'store' => 'no'),
- 'dtmPosted' => array('type' => 'date', 'store' => 'no', 'format' => 'yyyy-MM-dd HH:mm:ss')
- ));
- $type->setMapping($mapping);
-
- $doc = new Document(1, array('name' => 'nicolas ruflin', 'dtmPosted' => "2011-06-23 21:53:00"));
- $type->addDocument($doc);
- $doc = new Document(2, array('name' => 'raul martinez jr', 'dtmPosted' => "2011-06-23 09:53:00"));
- $type->addDocument($doc);
- $doc = new Document(3, array('name' => 'rachelle clemente', 'dtmPosted' => "2011-07-08 08:53:00"));
- $type->addDocument($doc);
- $doc = new Document(4, array('name' => 'elastica search', 'dtmPosted' => "2011-07-08 01:53:00"));
- $type->addDocument($doc);
-
- $query = new Query();
- $query->setQuery(new MatchAll());
- $index->refresh();
-
- $resultSet = $type->search($query);
-
- $engineTime = $resultSet->getResponse()->getEngineTime();
- $shardsStats = $resultSet->getResponse()->getShardsStatistics();
-
- $this->assertInternalType('int', $engineTime);
- $this->assertTrue(is_array($shardsStats));
- $this->assertArrayHasKey('total', $shardsStats);
- $this->assertArrayHasKey('successful', $shardsStats);
- }
-
- public function testIsOk()
- {
- $index = $this->_createIndex();
- $type = $index->getType('test');
-
- $doc = new Document(1, array('name' => 'ruflin'));
- $response = $type->addDocument($doc);
-
- $this->assertTrue($response->isOk());
- }
-
- public function testIsOkMultiple()
- {
- $index = $this->_createIndex();
- $type = $index->getType('test');
-
- $docs = array(
- new Document(1, array('name' => 'ruflin')),
- new Document(2, array('name' => 'ruflin'))
- );
- $response = $type->addDocuments($docs);
-
- $this->assertTrue($response->isOk());
- }
-
- public function testGetDataEmpty()
- {
- $index = $this->_createIndex();
-
- $response = $index->request(
- 'non-existant-type/_mapping',
- Request::GET
- )->getData();
-
- $this->assertEquals(0, count($response));
- }
-
-}