forked from laravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueueListenerTest.php
More file actions
executable file
·47 lines (34 loc) · 1.46 KB
/
QueueListenerTest.php
File metadata and controls
executable file
·47 lines (34 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
<?php
use Mockery as m;
class QueueListenerTest extends PHPUnit_Framework_TestCase {
public function tearDown()
{
m::close();
}
public function testRunProcessCallsProcess()
{
$process = m::mock('Symfony\Component\Process\Process')->makePartial();
$process->shouldReceive('run')->once();
$listener = m::mock('Illuminate\Queue\Listener')->makePartial();
$listener->shouldReceive('memoryExceeded')->once()->with(1)->andReturn(false);
$listener->runProcess($process, 1);
}
public function testListenerStopsWhenMemoryIsExceeded()
{
$process = m::mock('Symfony\Component\Process\Process')->makePartial();
$process->shouldReceive('run')->once();
$listener = m::mock('Illuminate\Queue\Listener')->makePartial();
$listener->shouldReceive('memoryExceeded')->once()->with(1)->andReturn(true);
$listener->shouldReceive('stop')->once();
$listener->runProcess($process, 1);
}
public function testMakeProcessCorrectlyFormatsCommandLine()
{
$listener = new Illuminate\Queue\Listener(__DIR__);
$process = $listener->makeProcess('connection', 'queue', 1, 2, 3);
$this->assertInstanceOf('Symfony\Component\Process\Process', $process);
$this->assertEquals(__DIR__, $process->getWorkingDirectory());
$this->assertEquals(3, $process->getTimeout());
$this->assertEquals('"'.PHP_BINARY.'" artisan queue:work connection --queue="queue" --delay=1 --memory=2 --sleep=3 --tries=0', $process->getCommandLine());
}
}