summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php
diff options
context:
space:
mode:
authorPierre Schmitz <pierre@archlinux.de>2015-12-17 09:15:42 +0100
committerPierre Schmitz <pierre@archlinux.de>2015-12-17 09:44:51 +0100
commita1789ddde42033f1b05cc4929491214ee6e79383 (patch)
tree63615735c4ddffaaabf2428946bb26f90899f7bf /vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php
parent9e06a62f265e3a2aaabecc598d4bc617e06fa32d (diff)
Update to MediaWiki 1.26.0
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php121
1 files changed, 121 insertions, 0 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php
new file mode 100644
index 00000000..7600524b
--- /dev/null
+++ b/vendor/ruflin/elastica/test/lib/Elastica/Test/ConnectionTest.php
@@ -0,0 +1,121 @@
+<?php
+namespace Elastica\Test;
+
+use Elastica\Connection;
+use Elastica\Request;
+use Elastica\Test\Base as BaseTest;
+
+class ConnectionTest extends BaseTest
+{
+ /**
+ * @group unit
+ */
+ public function testEmptyConstructor()
+ {
+ $connection = new Connection();
+ $this->assertEquals(Connection::DEFAULT_HOST, $connection->getHost());
+ $this->assertEquals(Connection::DEFAULT_PORT, $connection->getPort());
+ $this->assertEquals(Connection::DEFAULT_TRANSPORT, $connection->getTransport());
+ $this->assertInstanceOf('Elastica\Transport\AbstractTransport', $connection->getTransportObject());
+ $this->assertEquals(Connection::TIMEOUT, $connection->getTimeout());
+ $this->assertEquals(Connection::CONNECT_TIMEOUT, $connection->getConnectTimeout());
+ $this->assertEquals(array(), $connection->getConfig());
+ $this->assertTrue($connection->isEnabled());
+ }
+
+ /**
+ * @group unit
+ */
+ public function testEnabledDisable()
+ {
+ $connection = new Connection();
+ $this->assertTrue($connection->isEnabled());
+ $connection->setEnabled(false);
+ $this->assertFalse($connection->isEnabled());
+ $connection->setEnabled(true);
+ $this->assertTrue($connection->isEnabled());
+ }
+
+ /**
+ * @group unit
+ * @expectedException \Elastica\Exception\ConnectionException
+ */
+ public function testInvalidConnection()
+ {
+ $connection = new Connection(array('port' => 9999));
+
+ $request = new Request('_status', Request::GET);
+ $request->setConnection($connection);
+
+ // Throws exception because no valid connection
+ $request->send();
+ }
+
+ /**
+ * @group unit
+ */
+ public function testCreate()
+ {
+ $connection = Connection::create();
+ $this->assertInstanceOf('Elastica\Connection', $connection);
+
+ $connection = Connection::create(array());
+ $this->assertInstanceOf('Elastica\Connection', $connection);
+
+ $port = 9999;
+ $connection = Connection::create(array('port' => $port));
+ $this->assertInstanceOf('Elastica\Connection', $connection);
+ $this->assertEquals($port, $connection->getPort());
+ }
+
+ /**
+ * @group unit
+ * @expectedException \Elastica\Exception\InvalidException
+ * @expectedException \Elastica\Exception\InvalidException
+ */
+ public function testCreateInvalid()
+ {
+ Connection::create('test');
+ }
+
+ /**
+ * @group unit
+ */
+ public function testGetConfig()
+ {
+ $url = 'test';
+ $connection = new Connection(array('config' => array('url' => $url)));
+ $this->assertTrue($connection->hasConfig('url'));
+ $this->assertEquals($url, $connection->getConfig('url'));
+ }
+
+ /**
+ * @group unit
+ */
+ public function testGetConfigWithArrayUsedForTransport()
+ {
+ $connection = new Connection(array('transport' => array('type' => 'Http')));
+ $this->assertInstanceOf('Elastica\Transport\Http', $connection->getTransportObject());
+ }
+
+ /**
+ * @group unit
+ * @expectedException Elastica\Exception\InvalidException
+ * @expectedExceptionMessage Invalid transport
+ */
+ public function testGetInvalidConfigWithArrayUsedForTransport()
+ {
+ $connection = new Connection(array('transport' => array('type' => 'invalidtransport')));
+ $connection->getTransportObject();
+ }
+
+ /**
+ * @group unit
+ * @expectedException \Elastica\Exception\InvalidException
+ */
+ public function testGetConfigInvalidValue()
+ {
+ $connection = new Connection();
+ $connection->getConfig('url');
+ }
+}