summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php83
1 files changed, 83 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php
new file mode 100644
index 00000000..ebd89f01
--- /dev/null
+++ b/vendor/ruflin/elastica/test/lib/Elastica/Test/ClusterTest.php
@@ -0,0 +1,83 @@
+<?php
+namespace Elastica\Test;
+
+use Elastica\Cluster;
+use Elastica\Test\Base as BaseTest;
+
+class ClusterTest extends BaseTest
+{
+ /**
+ * @group functional
+ */
+ public function testGetNodeNames()
+ {
+ $client = $this->_getClient();
+
+ $cluster = new Cluster($client);
+
+ foreach ($cluster->getNodeNames() as $name) {
+ $this->assertEquals('Elastica', $name);
+ }
+ }
+
+ /**
+ * @group functional
+ */
+ public function testGetNodes()
+ {
+ $client = $this->_getClient();
+ $cluster = $client->getCluster();
+
+ $nodes = $cluster->getNodes();
+
+ foreach ($nodes as $node) {
+ $this->assertInstanceOf('Elastica\Node', $node);
+ }
+
+ $this->assertGreaterThan(0, count($nodes));
+ }
+
+ /**
+ * @group functional
+ */
+ public function testGetState()
+ {
+ $client = $this->_getClient();
+ $cluster = $client->getCluster();
+ $state = $cluster->getState();
+ $this->assertInternalType('array', $state);
+ }
+
+ /**
+ * @group functional
+ */
+ public function testGetIndexNames()
+ {
+ $client = $this->_getClient();
+ $cluster = $client->getCluster();
+
+ $index = $this->_createIndex();
+ $index->delete();
+ $cluster->refresh();
+
+ // Checks that index does not exist
+ $indexNames = $cluster->getIndexNames();
+ $this->assertNotContains($index->getName(), $indexNames);
+
+ $index = $this->_createIndex();
+ $cluster->refresh();
+
+ // Now index should exist
+ $indexNames = $cluster->getIndexNames();
+ $this->assertContains($index->getname(), $indexNames);
+ }
+
+ /**
+ * @group functional
+ */
+ public function testGetHealth()
+ {
+ $client = $this->_getClient();
+ $this->assertInstanceOf('Elastica\Cluster\Health', $client->getCluster()->getHealth());
+ }
+}