forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueIronJobTest.php
More file actions
executable file
·65 lines (47 loc) · 1.66 KB
/
QueueIronJobTest.php
File metadata and controls
executable file
·65 lines (47 loc) · 1.66 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
58
59
60
61
62
63
64
65
<?php
use Mockery as m;
class QueueIronJobTest 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 testDeleteRemovesTheJobFromIron()
{
$job = $this->getJob();
$job->getIron()->shouldReceive('deleteMessage')->once()->with('default', 1);
$job->delete();
}
public function testDeleteNoopsOnPushedQueues()
{
$job = new Illuminate\Queue\Jobs\IronJob(
m::mock('Illuminate\Container\Container'),
m::mock('Illuminate\Queue\IronQueue'),
(object) array('id' => 1, 'body' => json_encode(array('job' => 'foo', 'data' => array('data'))), 'timeout' => 60, 'pushed' => true),
'default'
);
$job->getIron()->shouldReceive('deleteMessage')->never();
$job->delete();
}
public function testReleaseProperlyReleasesJobOntoIron()
{
$job = $this->getJob();
$job->getIron()->shouldReceive('deleteMessage')->once();
$job->getIron()->shouldReceive('recreate')->once()->with(json_encode(array('job' => 'foo', 'data' => array('data'), 'attempts' => 2, 'queue' => 'default')), 'default', 5);
$job->release(5);
}
protected function getJob()
{
return new Illuminate\Queue\Jobs\IronJob(
m::mock('Illuminate\Container\Container'),
m::mock('Illuminate\Queue\IronQueue'),
(object) array('id' => 1, 'body' => json_encode(array('job' => 'foo', 'data' => array('data'), 'attempts' => 1, 'queue' => 'default')), 'timeout' => 60)
);
}
}