-
Notifications
You must be signed in to change notification settings - Fork 440
/
Copy pathAmqpTransportFactoryTest.php
134 lines (106 loc) · 4.47 KB
/
AmqpTransportFactoryTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<?php
namespace Enqueue\AmqpExt\Tests\Symfony;
use Enqueue\AmqpExt\AmqpConnectionFactory;
use Enqueue\AmqpExt\Client\AmqpDriver;
use Enqueue\AmqpExt\Symfony\AmqpTransportFactory;
use Enqueue\Symfony\TransportFactoryInterface;
use Enqueue\Test\ClassExtensionTrait;
use Symfony\Component\Config\Definition\Builder\TreeBuilder;
use Symfony\Component\Config\Definition\Processor;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Reference;
class AmqpTransportFactoryTest extends \PHPUnit_Framework_TestCase
{
use ClassExtensionTrait;
public function testShouldImplementTransportFactoryInterface()
{
$this->assertClassImplements(TransportFactoryInterface::class, AmqpTransportFactory::class);
}
public function testCouldBeConstructedWithDefaultName()
{
$transport = new AmqpTransportFactory();
$this->assertEquals('amqp', $transport->getName());
}
public function testCouldBeConstructedWithCustomName()
{
$transport = new AmqpTransportFactory('theCustomName');
$this->assertEquals('theCustomName', $transport->getName());
}
public function testShouldAllowAddConfiguration()
{
$transport = new AmqpTransportFactory();
$tb = new TreeBuilder();
$rootNode = $tb->root('foo');
$transport->addConfiguration($rootNode);
$processor = new Processor();
$config = $processor->process($tb->buildTree(), []);
$this->assertEquals([
'host' => 'localhost',
'port' => 5672,
'login' => 'guest',
'password' => 'guest',
'vhost' => '/',
'persisted' => false,
'lazy' => true,
], $config);
}
public function testShouldCreateConnectionFactory()
{
$container = new ContainerBuilder();
$transport = new AmqpTransportFactory();
$serviceId = $transport->createConnectionFactory($container, [
'host' => 'localhost',
'port' => 5672,
'login' => 'guest',
'password' => 'guest',
'vhost' => '/',
'persisted' => false,
]);
$this->assertTrue($container->hasDefinition($serviceId));
$factory = $container->getDefinition($serviceId);
$this->assertEquals(AmqpConnectionFactory::class, $factory->getClass());
$this->assertSame([[
'host' => 'localhost',
'port' => 5672,
'login' => 'guest',
'password' => 'guest',
'vhost' => '/',
'persisted' => false,
]], $factory->getArguments());
}
public function testShouldCreateContext()
{
$container = new ContainerBuilder();
$transport = new AmqpTransportFactory();
$serviceId = $transport->createContext($container, [
'host' => 'localhost',
'port' => 5672,
'login' => 'guest',
'password' => 'guest',
'vhost' => '/',
'persisted' => false,
]);
$this->assertEquals('enqueue.transport.amqp.context', $serviceId);
$this->assertTrue($container->hasDefinition($serviceId));
$context = $container->getDefinition('enqueue.transport.amqp.context');
$this->assertInstanceOf(Reference::class, $context->getFactory()[0]);
$this->assertEquals('enqueue.transport.amqp.connection_factory', (string) $context->getFactory()[0]);
$this->assertEquals('createContext', $context->getFactory()[1]);
}
public function testShouldCreateDriver()
{
$container = new ContainerBuilder();
$transport = new AmqpTransportFactory();
$serviceId = $transport->createDriver($container, []);
$this->assertEquals('enqueue.client.amqp.driver', $serviceId);
$this->assertTrue($container->hasDefinition($serviceId));
$driver = $container->getDefinition($serviceId);
$this->assertSame(AmqpDriver::class, $driver->getClass());
$this->assertInstanceOf(Reference::class, $driver->getArgument(0));
$this->assertEquals('enqueue.transport.amqp.context', (string) $driver->getArgument(0));
$this->assertInstanceOf(Reference::class, $driver->getArgument(1));
$this->assertEquals('enqueue.client.config', (string) $driver->getArgument(1));
$this->assertInstanceOf(Reference::class, $driver->getArgument(2));
$this->assertEquals('enqueue.client.meta.queue_meta_registry', (string) $driver->getArgument(2));
}
}