mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-11 08:04:09 -08:00
116 lines
3.3 KiB
PHP
116 lines
3.3 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Notifications;
|
|
|
|
use App\Events\CheckoutableCheckedIn;
|
|
use App\Events\CheckoutableCheckedOut;
|
|
use App\Models\Asset;
|
|
use App\Models\Location;
|
|
use App\Models\Setting;
|
|
use App\Models\User;
|
|
use App\Notifications\CheckinAssetNotification;
|
|
use App\Notifications\CheckoutAssetNotification;
|
|
use Illuminate\Notifications\AnonymousNotifiable;
|
|
use Illuminate\Support\Facades\Notification;
|
|
use Tests\Support\InteractsWithSettings;
|
|
use Tests\TestCase;
|
|
|
|
class AssetWebhookTest extends TestCase
|
|
{
|
|
use InteractsWithSettings;
|
|
|
|
public function targets(): array
|
|
{
|
|
return [
|
|
'Asset checked out to user' => [fn() => User::factory()->create()],
|
|
'Asset checked out to asset' => [fn() => $this->createAsset()],
|
|
'Asset checked out to location' => [fn() => Location::factory()->create()],
|
|
];
|
|
}
|
|
|
|
/** @dataProvider targets */
|
|
public function testAssetCheckoutSendsWebhookNotificationWhenSettingEnabled($checkoutTarget)
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->enableWebhook();
|
|
|
|
event(new CheckoutableCheckedOut(
|
|
$this->createAsset(),
|
|
$checkoutTarget(),
|
|
User::factory()->superuser()->create(),
|
|
''
|
|
));
|
|
|
|
Notification::assertSentTo(
|
|
new AnonymousNotifiable,
|
|
CheckoutAssetNotification::class,
|
|
function ($notification, $channels, $notifiable) {
|
|
return $notifiable->routes['slack'] === Setting::getSettings()->webhook_endpoint;
|
|
}
|
|
);
|
|
}
|
|
|
|
/** @dataProvider targets */
|
|
public function testAssetCheckoutDoesNotSendWebhookNotificationWhenSettingDisabled($checkoutTarget)
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->disableWebhook();
|
|
|
|
event(new CheckoutableCheckedOut(
|
|
$this->createAsset(),
|
|
$checkoutTarget(),
|
|
User::factory()->superuser()->create(),
|
|
''
|
|
));
|
|
|
|
Notification::assertNotSentTo(new AnonymousNotifiable, CheckoutAssetNotification::class);
|
|
}
|
|
|
|
/** @dataProvider targets */
|
|
public function testAssetCheckinSendsWebhookNotificationWhenSettingEnabled($checkoutTarget)
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->enableWebhook();
|
|
|
|
event(new CheckoutableCheckedIn(
|
|
$this->createAsset(),
|
|
$checkoutTarget(),
|
|
User::factory()->superuser()->create(),
|
|
''
|
|
));
|
|
|
|
Notification::assertSentTo(
|
|
new AnonymousNotifiable,
|
|
CheckinAssetNotification::class,
|
|
function ($notification, $channels, $notifiable) {
|
|
return $notifiable->routes['slack'] === Setting::getSettings()->webhook_endpoint;
|
|
}
|
|
);
|
|
}
|
|
|
|
/** @dataProvider targets */
|
|
public function testAssetCheckinDoesNotSendWebhookNotificationWhenSettingDisabled($checkoutTarget)
|
|
{
|
|
Notification::fake();
|
|
|
|
$this->settings->disableWebhook();
|
|
|
|
event(new CheckoutableCheckedIn(
|
|
$this->createAsset(),
|
|
$checkoutTarget(),
|
|
User::factory()->superuser()->create(),
|
|
''
|
|
));
|
|
|
|
Notification::assertNotSentTo(new AnonymousNotifiable, CheckinAssetNotification::class);
|
|
}
|
|
|
|
private function createAsset()
|
|
{
|
|
return Asset::factory()->laptopMbp()->create();
|
|
}
|
|
}
|