forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueRedisJobTest.php
More file actions
52 lines (37 loc) · 1.2 KB
/
QueueRedisJobTest.php
File metadata and controls
52 lines (37 loc) · 1.2 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
<?php
use Mockery as m;
class QueueRedisJobTest extends PHPUnit_Framework_TestCase {
public function tearDown()
{
m::close();
}
public function testFireProperlyCallsTheJobHandler()
{
$job = $this->getJob();
$job->getContainer()->shouldReceive('make')->once()->with('foo')->andReturn($handler = m::mock('StdClass'));
$handler->shouldReceive('fire')->once()->with($job, array('data'));
$job->fire();
}
public function testDeleteRemovesTheJobFromRedis()
{
$job = $this->getJob();
$job->getRedisQueue()->shouldReceive('deleteReserved')->once()->with('default', $job->getRedisJob());
$job->delete();
}
public function testReleaseProperlyReleasesJobOntoRedis()
{
$job = $this->getJob();
$job->getRedisQueue()->shouldReceive('deleteReserved')->once()->with('default', $job->getRedisJob());
$job->getRedisQueue()->shouldReceive('release')->once()->with('default', $job->getRedisJob(), 1, 2);
$job->release(1);
}
protected function getJob()
{
return new Illuminate\Queue\Jobs\RedisJob(
m::mock('Illuminate\Container\Container'),
m::mock('Illuminate\Queue\RedisQueue'),
json_encode(array('job' => 'foo', 'data' => array('data'), 'attempts' => 1)),
'default'
);
}
}