summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php
new file mode 100644
index 00000000..55cd8873
--- /dev/null
+++ b/vendor/ruflin/elastica/test/lib/Elastica/Test/Base.php
@@ -0,0 +1,31 @@
+<?php
+
+namespace Elastica\Test;
+
+use Elastica\Client;
+
+class Base extends \PHPUnit_Framework_TestCase
+{
+ protected function _getClient()
+ {
+ return new Client(array(
+ 'host' => getenv('ES_HOST') ?: 'localhost',
+ 'port' => getenv('ES_PORT') ?: 9200,
+ ));
+ }
+
+ /**
+ * @param string $name Index name
+ * @param bool $delete Delete index if it exists
+ * @param int $shards Number of shards to create
+ * @return \Elastica\Index
+ */
+ protected function _createIndex($name = 'test', $delete = true, $shards = 1)
+ {
+ $client = $this->_getClient();
+ $index = $client->getIndex('elastica_' . $name);
+ $index->create(array('index' => array('number_of_shards' => $shards, 'number_of_replicas' => 0)), $delete);
+
+ return $index;
+ }
+}