forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueManagerTest.php
More file actions
executable file
·57 lines (45 loc) · 1.69 KB
/
QueueManagerTest.php
File metadata and controls
executable file
·57 lines (45 loc) · 1.69 KB
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
<?php
use Mockery as m;
use Illuminate\Queue\QueueManager;
class QueueManagerTest extends PHPUnit_Framework_TestCase {
public function tearDown()
{
m::close();
}
public function testDefaultConnectionCanBeResolved()
{
$app = array(
'config' => array(
'queue.default' => 'sync',
'queue.connections.sync' => array('driver' => 'sync'),
),
'encrypter' => $encrypter = m::mock('Illuminate\Encryption\Encrypter'),
);
$manager = new QueueManager($app);
$connector = m::mock('StdClass');
$queue = m::mock('StdClass');
$connector->shouldReceive('connect')->once()->with(array('driver' => 'sync'))->andReturn($queue);
$manager->addConnector('sync', function() use ($connector) { return $connector; });
$queue->shouldReceive('setContainer')->once()->with($app);
$queue->shouldReceive('setEncrypter')->once()->with($encrypter);
$this->assertSame($queue, $manager->connection('sync'));
}
public function testOtherConnectionCanBeResolved()
{
$app = array(
'config' => array(
'queue.default' => 'sync',
'queue.connections.foo' => array('driver' => 'bar'),
),
'encrypter' => $encrypter = m::mock('Illuminate\Encryption\Encrypter'),
);
$manager = new QueueManager($app);
$connector = m::mock('StdClass');
$queue = m::mock('StdClass');
$connector->shouldReceive('connect')->once()->with(array('driver' => 'bar'))->andReturn($queue);
$manager->addConnector('bar', function() use ($connector) { return $connector; });
$queue->shouldReceive('setContainer')->once()->with($app);
$queue->shouldReceive('setEncrypter')->once()->with($encrypter);
$this->assertSame($queue, $manager->connection('foo'));
}
}