forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathQueueManagerTest.php
executable file
·85 lines (73 loc) · 2.82 KB
/
QueueManagerTest.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
<?php
namespace Illuminate\Tests\Queue;
use Illuminate\Contracts\Encryption\Encrypter;
use Illuminate\Queue\QueueManager;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use stdClass;
class QueueManagerTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testDefaultConnectionCanBeResolved()
{
$app = [
'config' => [
'queue.default' => 'sync',
'queue.connections.sync' => ['driver' => 'sync'],
],
'encrypter' => $encrypter = m::mock(Encrypter::class),
];
$manager = new QueueManager($app);
$connector = m::mock(stdClass::class);
$queue = m::mock(stdClass::class);
$queue->shouldReceive('setConnectionName')->once()->with('sync')->andReturnSelf();
$connector->shouldReceive('connect')->once()->with(['driver' => 'sync'])->andReturn($queue);
$manager->addConnector('sync', function () use ($connector) {
return $connector;
});
$queue->shouldReceive('setContainer')->once()->with($app);
$this->assertSame($queue, $manager->connection('sync'));
}
public function testOtherConnectionCanBeResolved()
{
$app = [
'config' => [
'queue.default' => 'sync',
'queue.connections.foo' => ['driver' => 'bar'],
],
'encrypter' => $encrypter = m::mock(Encrypter::class),
];
$manager = new QueueManager($app);
$connector = m::mock(stdClass::class);
$queue = m::mock(stdClass::class);
$queue->shouldReceive('setConnectionName')->once()->with('foo')->andReturnSelf();
$connector->shouldReceive('connect')->once()->with(['driver' => 'bar'])->andReturn($queue);
$manager->addConnector('bar', function () use ($connector) {
return $connector;
});
$queue->shouldReceive('setContainer')->once()->with($app);
$this->assertSame($queue, $manager->connection('foo'));
}
public function testNullConnectionCanBeResolved()
{
$app = [
'config' => [
'queue.default' => 'null',
],
'encrypter' => $encrypter = m::mock(Encrypter::class),
];
$manager = new QueueManager($app);
$connector = m::mock(stdClass::class);
$queue = m::mock(stdClass::class);
$queue->shouldReceive('setConnectionName')->once()->with('null')->andReturnSelf();
$connector->shouldReceive('connect')->once()->with(['driver' => 'null'])->andReturn($queue);
$manager->addConnector('null', function () use ($connector) {
return $connector;
});
$queue->shouldReceive('setContainer')->once()->with($app);
$this->assertSame($queue, $manager->connection('null'));
}
}