1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
namespace Tests\GBProd; |
4
|
|
|
|
5
|
|
|
use Elastica\Client; |
6
|
|
|
use GBProd\ElasticaServiceProvider; |
7
|
|
|
use Interop\Container\ContainerInterface; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Tests for ElasticaServiceProvider |
11
|
|
|
* |
12
|
|
|
* @author GBProd <[email protected]> |
13
|
|
|
*/ |
14
|
|
|
class ElasticaServiceProviderTest extends \PHPUnit_Framework_TestCase |
15
|
|
|
{ |
16
|
|
View Code Duplication |
public function testCreateService() |
|
|
|
|
17
|
|
|
{ |
18
|
|
|
$testedInstance = new ElasticaServiceProvider(); |
19
|
|
|
|
20
|
|
|
$container = $this->prophesize(ContainerInterface::class); |
21
|
|
|
$container->get(Client::class.'.host')->willReturn('localhost'); |
22
|
|
|
$container->get(Client::class.'.port')->willReturn(9200); |
23
|
|
|
|
24
|
|
|
$services = $testedInstance->getServices(); |
25
|
|
|
|
26
|
|
|
$client = $services[Client::class]($container->reveal()); |
27
|
|
|
|
28
|
|
|
$this->assertInstanceOf(Client::class, $client); |
29
|
|
|
$this->assertEquals('localhost', $client->getConfig('host')); |
30
|
|
|
$this->assertEquals(9200, $client->getConfig('port')); |
31
|
|
|
} |
32
|
|
|
|
33
|
|
View Code Duplication |
public function testCreateServiceWithPrefix() |
|
|
|
|
34
|
|
|
{ |
35
|
|
|
$testedInstance = new ElasticaServiceProvider('prefix'); |
36
|
|
|
|
37
|
|
|
$container = $this->prophesize(ContainerInterface::class); |
38
|
|
|
$container->get(Client::class.'.prefix.host')->willReturn('localhost'); |
39
|
|
|
$container->get(Client::class.'.prefix.port')->willReturn(9200); |
40
|
|
|
|
41
|
|
|
$services = $testedInstance->getServices(); |
42
|
|
|
|
43
|
|
|
$client = $services[Client::class.'.prefix']($container->reveal()); |
44
|
|
|
|
45
|
|
|
$this->assertInstanceOf(Client::class, $client); |
46
|
|
|
$this->assertEquals('localhost', $client->getConfig('host')); |
47
|
|
|
$this->assertEquals(9200, $client->getConfig('port')); |
48
|
|
|
} |
49
|
|
|
} |
50
|
|
|
|
Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.
You can also find more detailed suggestions in the “Code” section of your repository.