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
|
<?php
namespace Illuminate\Tests\Support;
use Illuminate\Contracts\Events\Dispatcher;
use Illuminate\Support\Testing\Fakes\EventFake;
use Mockery as m;
use PHPUnit\Framework\Constraint\ExceptionMessage;
use PHPUnit\Framework\ExpectationFailedException;
use PHPUnit\Framework\TestCase;
class SupportTestingEventFakeTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
$this->fake = new EventFake(m::mock(Dispatcher::class));
}
public function testAssertDispatched()
{
try {
$this->fake->assertDispatched(EventStub::class);
$this->fail();
} catch (ExpectationFailedException $e) {
$this->assertThat($e, new ExceptionMessage('The expected [Illuminate\Tests\Support\EventStub] event was not dispatched.'));
}
$this->fake->dispatch(EventStub::class);
$this->fake->assertDispatched(EventStub::class);
}
public function testAssertDispatchedWithCallbackInt()
{
$this->fake->dispatch(EventStub::class);
$this->fake->dispatch(EventStub::class);
try {
$this->fake->assertDispatched(EventStub::class, 1);
$this->fail();
} catch (ExpectationFailedException $e) {
$this->assertThat($e, new ExceptionMessage('The expected [Illuminate\Tests\Support\EventStub] event was dispatched 2 times instead of 1 times.'));
}
$this->fake->assertDispatched(EventStub::class, 2);
}
public function testAssertDispatchedTimes()
{
$this->fake->dispatch(EventStub::class);
$this->fake->dispatch(EventStub::class);
try {
$this->fake->assertDispatchedTimes(EventStub::class, 1);
$this->fail();
} catch (ExpectationFailedException $e) {
$this->assertThat($e, new ExceptionMessage('The expected [Illuminate\Tests\Support\EventStub] event was dispatched 2 times instead of 1 times.'));
}
$this->fake->assertDispatchedTimes(EventStub::class, 2);
}
public function testAssertNotDispatched()
{
$this->fake->assertNotDispatched(EventStub::class);
$this->fake->dispatch(EventStub::class);
try {
$this->fake->assertNotDispatched(EventStub::class);
$this->fail();
} catch (ExpectationFailedException $e) {
$this->assertThat($e, new ExceptionMessage('The unexpected [Illuminate\Tests\Support\EventStub] event was dispatched.'));
}
}
public function testAssertDispatchedWithIgnore()
{
$dispatcher = m::mock(Dispatcher::class);
$dispatcher->shouldReceive('dispatch')->once();
$fake = new EventFake($dispatcher, [
'Foo',
function ($event, $payload) {
return $event === 'Bar' && $payload['id'] === 1;
},
]);
$fake->dispatch('Foo');
$fake->dispatch('Bar', ['id' => 1]);
$fake->dispatch('Baz');
$fake->assertDispatched('Foo');
$fake->assertDispatched('Bar');
$fake->assertNotDispatched('Baz');
}
}
class EventStub
{
//
}
|