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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171
|
<?php
namespace Illuminate\Tests\Bus;
use Illuminate\Bus\Dispatcher;
use Illuminate\Bus\Queueable;
use Illuminate\Config\Repository as Config;
use Illuminate\Container\Container;
use Illuminate\Contracts\Queue\Queue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Queue\InteractsWithQueue;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use RuntimeException;
class BusDispatcherTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testCommandsThatShouldQueueIsQueued()
{
$container = new Container;
$dispatcher = new Dispatcher($container, function () {
$mock = m::mock(Queue::class);
$mock->shouldReceive('push')->once();
return $mock;
});
$dispatcher->dispatch(m::mock(ShouldQueue::class));
}
public function testCommandsThatShouldQueueIsQueuedUsingCustomHandler()
{
$container = new Container;
$dispatcher = new Dispatcher($container, function () {
$mock = m::mock(Queue::class);
$mock->shouldReceive('push')->once();
return $mock;
});
$dispatcher->dispatch(new BusDispatcherTestCustomQueueCommand);
}
public function testCommandsThatShouldQueueIsQueuedUsingCustomQueueAndDelay()
{
$container = new Container;
$dispatcher = new Dispatcher($container, function () {
$mock = m::mock(Queue::class);
$mock->shouldReceive('laterOn')->once()->with('foo', 10, m::type(BusDispatcherTestSpecificQueueAndDelayCommand::class));
return $mock;
});
$dispatcher->dispatch(new BusDispatcherTestSpecificQueueAndDelayCommand);
}
public function testDispatchNowShouldNeverQueue()
{
$container = new Container;
$mock = m::mock(Queue::class);
$mock->shouldReceive('push')->never();
$dispatcher = new Dispatcher($container, function () use ($mock) {
return $mock;
});
$dispatcher->dispatch(new BusDispatcherBasicCommand);
}
public function testDispatcherCanDispatchStandAloneHandler()
{
$container = new Container;
$mock = m::mock(Queue::class);
$dispatcher = new Dispatcher($container, function () use ($mock) {
return $mock;
});
$dispatcher->map([StandAloneCommand::class => StandAloneHandler::class]);
$response = $dispatcher->dispatch(new StandAloneCommand);
$this->assertInstanceOf(StandAloneCommand::class, $response);
}
public function testOnConnectionOnJobWhenDispatching()
{
$container = new Container;
$container->singleton('config', function () {
return new Config([
'queue' => [
'default' => 'null',
'connections' => [
'null' => ['driver' => 'null'],
],
],
]);
});
$dispatcher = new Dispatcher($container, function () {
$mock = m::mock(Queue::class);
$mock->shouldReceive('push')->once();
return $mock;
});
$job = (new ShouldNotBeDispatched)->onConnection('null');
$dispatcher->dispatch($job);
}
}
class BusInjectionStub
{
//
}
class BusDispatcherBasicCommand
{
public $name;
public function __construct($name = null)
{
$this->name = $name;
}
public function handle(BusInjectionStub $stub)
{
//
}
}
class BusDispatcherTestCustomQueueCommand implements ShouldQueue
{
public function queue($queue, $command)
{
$queue->push($command);
}
}
class BusDispatcherTestSpecificQueueAndDelayCommand implements ShouldQueue
{
public $queue = 'foo';
public $delay = 10;
}
class StandAloneCommand
{
//
}
class StandAloneHandler
{
public function handle(StandAloneCommand $command)
{
return $command;
}
}
class ShouldNotBeDispatched implements ShouldQueue
{
use InteractsWithQueue, Queueable;
public function handle()
{
throw new RuntimeException('This should not be run');
}
}
|