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
|
<?php
namespace Illuminate\Tests\Notifications;
use Illuminate\Container\Container;
use Illuminate\Contracts\Notifications\Dispatcher;
use Illuminate\Notifications\RoutesNotifications;
use Illuminate\Support\Facades\Notification;
use InvalidArgumentException;
use Mockery as m;
use PHPUnit\Framework\TestCase;
use stdClass;
class NotificationRoutesNotificationsTest extends TestCase
{
protected function tearDown(): void
{
m::close();
Container::setInstance(null);
}
public function testNotificationCanBeDispatched()
{
$container = new Container;
$factory = m::mock(Dispatcher::class);
$container->instance(Dispatcher::class, $factory);
$notifiable = new RoutesNotificationsTestInstance;
$instance = new stdClass;
$factory->shouldReceive('send')->with($notifiable, $instance);
Container::setInstance($container);
$notifiable->notify($instance);
}
public function testNotificationCanBeSentNow()
{
$container = new Container;
$factory = m::mock(Dispatcher::class);
$container->instance(Dispatcher::class, $factory);
$notifiable = new RoutesNotificationsTestInstance;
$instance = new stdClass;
$factory->shouldReceive('sendNow')->with($notifiable, $instance, null);
Container::setInstance($container);
$notifiable->notifyNow($instance);
}
public function testNotificationOptionRouting()
{
$instance = new RoutesNotificationsTestInstance;
$this->assertSame('bar', $instance->routeNotificationFor('foo'));
$this->assertSame('taylor@laravel.com', $instance->routeNotificationFor('mail'));
}
public function testOnDemandNotificationsCannotUseDatabaseChannel()
{
$this->expectExceptionObject(
new InvalidArgumentException('The database channel does not support on-demand notifications.')
);
Notification::route('database', 'foo');
}
}
class RoutesNotificationsTestInstance
{
use RoutesNotifications;
protected $email = 'taylor@laravel.com';
public function routeNotificationForFoo()
{
return 'bar';
}
}
|