forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueBeanstalkdJobTest.php
More file actions
executable file
·61 lines (43 loc) · 1.46 KB
/
QueueBeanstalkdJobTest.php
File metadata and controls
executable file
·61 lines (43 loc) · 1.46 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
<?php
use Mockery as m;
class QueueBeanstalkdJobTest extends PHPUnit_Framework_TestCase {
public function tearDown()
{
m::close();
}
public function testFireProperlyCallsTheJobHandler()
{
$job = $this->getJob();
$job->getPheanstalkJob()->shouldReceive('getData')->once()->andReturn(json_encode(array('job' => 'foo', 'data' => array('data'))));
$job->getContainer()->shouldReceive('make')->once()->with('foo')->andReturn($handler = m::mock('StdClass'));
$handler->shouldReceive('fire')->once()->with($job, array('data'));
$job->fire();
}
public function testDeleteRemovesTheJobFromBeanstalkd()
{
$job = $this->getJob();
$job->getPheanstalk()->shouldReceive('delete')->once()->with($job->getPheanstalkJob());
$job->delete();
}
public function testReleaseProperlyReleasesJobOntoBeanstalkd()
{
$job = $this->getJob();
$job->getPheanstalk()->shouldReceive('release')->once()->with($job->getPheanstalkJob(), Pheanstalk_Pheanstalk::DEFAULT_PRIORITY, 0);
$job->release();
}
public function testBuryProperlyBuryTheJobFromBeanstalkd()
{
$job = $this->getJob();
$job->getPheanstalk()->shouldReceive('bury')->once()->with($job->getPheanstalkJob());
$job->bury();
}
protected function getJob()
{
return new Illuminate\Queue\Jobs\BeanstalkdJob(
m::mock('Illuminate\Container\Container'),
m::mock('Pheanstalk_Pheanstalk'),
m::mock('Pheanstalk_Job'),
'default'
);
}
}