summaryrefslogtreecommitdiff
path: root/vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php')
-rw-r--r--vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php77
1 files changed, 0 insertions, 77 deletions
diff --git a/vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php b/vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php
deleted file mode 100644
index 4f1c7114..00000000
--- a/vendor/ruflin/elastica/test/lib/Elastica/Test/Transport/AbstractTransportTest.php
+++ /dev/null
@@ -1,77 +0,0 @@
-<?php
-
-namespace Elastica\Test\Transport;
-
-use Elastica\Transport\AbstractTransport;
-use Elastica\Transport\Http;
-use Elastica\Connection;
-use Elastica\Exception\InvalidException;
-
-class AbstractTransportTest extends \PHPUnit_Framework_TestCase
-{
- /**
- * Return transport configuration and the expected HTTP method
- *
- * @return array[]
- */
- public function getValidDefinitions()
- {
- $connection = new Connection();
-
- return array(
- array('Http'),
- array(array('type' => 'Http')),
- array(array('type' => new Http())),
- array(new Http()),
- );
- }
-
- /**
- * @dataProvider getValidDefinitions
- */
- public function testCanCreateTransportInstances($transport)
- {
- $connection = new Connection();
- $params = array();
- $transport = AbstractTransport::create($transport, $connection, $params);
- $this->assertInstanceOf('Elastica\Transport\AbstractTransport', $transport);
- $this->assertSame($connection, $transport->getConnection());
- }
-
- public function getInvalidDefinitions()
- {
- return array(
- array(array('transport' => 'Http')),
- array('InvalidTransport'),
- );
- }
-
- /**
- * @dataProvider getInvalidDefinitions
- * @expectedException Elastica\Exception\InvalidException
- * @expectedExceptionMessage Invalid transport
- */
- public function testThrowsExecptionOnInvalidTransportDefinition($transport)
- {
- AbstractTransport::create($transport, new Connection());
- }
-
- public function testCanInjectParamsWhenUsingArray()
- {
- $connection = new Connection();
- $params = array(
- 'param1' => 'some value',
- 'param3' => 'value3',
- );
-
- $transport = AbstractTransport::create(array(
- 'type' => 'Http',
- 'param1' => 'value1',
- 'param2' => 'value2',
- ), $connection, $params);
-
- $this->assertSame('value1', $transport->getParam('param1'));
- $this->assertSame('value2', $transport->getParam('param2'));
- $this->assertSame('value3', $transport->getParam('param3'));
- }
-}