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
|
<?php
namespace Illuminate\Tests\Events;
use Illuminate\Container\Container;
use Illuminate\Contracts\Broadcasting\Factory as BroadcastFactory;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Events\Dispatcher;
use Mockery as m;
use PHPUnit\Framework\TestCase;
class BroadcastedEventsTest extends TestCase
{
protected function tearDown(): void
{
m::close();
}
public function testShouldBroadcastSuccess()
{
$d = m::mock(Dispatcher::class);
$d->makePartial()->shouldAllowMockingProtectedMethods();
$event = new BroadcastEvent;
$this->assertTrue($d->shouldBroadcast([$event]));
$event = new AlwaysBroadcastEvent;
$this->assertTrue($d->shouldBroadcast([$event]));
}
public function testShouldBroadcastAsQueuedAndCallNormalListeners()
{
unset($_SERVER['__event.test']);
$d = new Dispatcher($container = m::mock(Container::class));
$broadcast = m::mock(BroadcastFactory::class);
$broadcast->shouldReceive('queue')->once();
$container->shouldReceive('make')->once()->with(BroadcastFactory::class)->andReturn($broadcast);
$d->listen(AlwaysBroadcastEvent::class, function ($payload) {
$_SERVER['__event.test'] = $payload;
});
$d->dispatch($e = new AlwaysBroadcastEvent);
$this->assertSame($e, $_SERVER['__event.test']);
}
public function testShouldBroadcastFail()
{
$d = m::mock(Dispatcher::class);
$d->makePartial()->shouldAllowMockingProtectedMethods();
$event = new BroadcastFalseCondition;
$this->assertFalse($d->shouldBroadcast([$event]));
$event = new ExampleEvent;
$this->assertFalse($d->shouldBroadcast([$event]));
}
}
class BroadcastEvent implements ShouldBroadcast
{
public function broadcastOn()
{
return ['test-channel'];
}
public function broadcastWhen()
{
return true;
}
}
class AlwaysBroadcastEvent implements ShouldBroadcast
{
public function broadcastOn()
{
return ['test-channel'];
}
}
class BroadcastFalseCondition extends BroadcastEvent
{
public function broadcastWhen()
{
return false;
}
}
|