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 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117
|
<?php
namespace Illuminate\Tests\Bus;
use Illuminate\Foundation\Bus\PendingDispatch;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
use stdClass;
class PendingDispatchWithoutDestructor extends PendingDispatch
{
public function __destruct()
{
// Prevent the job from being dispatched
}
}
class BusPendingDispatchTest extends TestCase
{
protected $job;
/**
* @var PendingDispatchWithoutDestructor
*/
protected $pendingDispatch;
protected function setUp(): void
{
$this->job = m::mock(stdClass::class);
$this->pendingDispatch = new PendingDispatchWithoutDestructor($this->job);
parent::setUp();
}
protected function tearDown(): void
{
parent::tearDown();
m::close();
}
public function testOnConnection()
{
$this->job->shouldReceive('onConnection')->once()->with('test-connection');
$this->pendingDispatch->onConnection('test-connection');
}
public function testOnQueue()
{
$this->job->shouldReceive('onQueue')->once()->with('test-queue');
$this->pendingDispatch->onQueue('test-queue');
}
public function testAllOnConnection()
{
$this->job->shouldReceive('allOnConnection')->once()->with('test-connection');
$this->pendingDispatch->allOnConnection('test-connection');
}
public function testAllOnQueue()
{
$this->job->shouldReceive('allOnQueue')->once()->with('test-queue');
$this->pendingDispatch->allOnQueue('test-queue');
}
public function testDelay()
{
$this->job->shouldReceive('delay')->once()->with(60);
$this->pendingDispatch->delay(60);
}
public function testWithoutDelay()
{
$this->job->shouldReceive('withoutDelay')->once();
$this->pendingDispatch->withoutDelay();
}
public function testAfterCommit()
{
$this->job->shouldReceive('afterCommit')->once();
$this->pendingDispatch->afterCommit();
}
public function testBeforeCommit()
{
$this->job->shouldReceive('beforeCommit')->once();
$this->pendingDispatch->beforeCommit();
}
public function testChain()
{
$chain = [new stdClass];
$this->job->shouldReceive('chain')->once()->with($chain);
$this->pendingDispatch->chain($chain);
}
public function testAfterResponse()
{
$this->pendingDispatch->afterResponse();
$this->assertTrue(
(new ReflectionClass($this->pendingDispatch))->getProperty('afterResponse')->getValue($this->pendingDispatch)
);
}
public function testGetJob()
{
$this->assertSame($this->job, $this->pendingDispatch->getJob());
}
public function testDynamicallyProxyMethods()
{
$newJob = m::mock(stdClass::class);
$this->job->shouldReceive('appendToChain')->once()->with($newJob);
$this->pendingDispatch->appendToChain($newJob);
}
}
|