snipe-it/tests/Feature/Notifications/AssetWebhookTest.php

116 lines
3.3 KiB
PHP
Raw Normal View History

<?php
namespace Tests\Feature\Notifications;
use App\Events\CheckoutableCheckedIn;
2023-03-30 15:38:00 -07:00
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;
2023-04-17 17:31:12 -07:00
use Tests\Support\InteractsWithSettings;
use Tests\TestCase;
2023-04-05 12:23:11 -07:00
class AssetWebhookTest extends TestCase
{
2023-04-17 17:31:12 -07:00
use InteractsWithSettings;
2023-04-19 18:10:23 -07:00
public function targets(): array
{
2023-03-23 16:42:21 -07:00
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()],
];
}
2023-04-19 18:10:23 -07:00
/** @dataProvider targets */
2023-04-05 12:27:18 -07:00
public function testAssetCheckoutSendsWebhookNotificationWhenSettingEnabled($checkoutTarget)
{
Notification::fake();
2023-04-17 17:31:12 -07:00
$this->settings->enableWebhook();
2023-03-30 15:38:00 -07:00
event(new CheckoutableCheckedOut(
$this->createAsset(),
2023-03-23 16:42:21 -07:00
$checkoutTarget(),
2023-03-30 15:38:00 -07:00
User::factory()->superuser()->create(),
''
));
Notification::assertSentTo(
new AnonymousNotifiable,
CheckoutAssetNotification::class,
function ($notification, $channels, $notifiable) {
2023-03-22 12:31:47 -07:00
return $notifiable->routes['slack'] === Setting::getSettings()->webhook_endpoint;
}
);
}
2023-04-19 18:10:23 -07:00
/** @dataProvider targets */
2023-04-05 12:27:18 -07:00
public function testAssetCheckoutDoesNotSendWebhookNotificationWhenSettingDisabled($checkoutTarget)
{
Notification::fake();
2023-04-17 17:31:12 -07:00
$this->settings->disableWebhook();
2023-03-30 15:38:00 -07:00
event(new CheckoutableCheckedOut(
$this->createAsset(),
2023-03-23 16:42:21 -07:00
$checkoutTarget(),
2023-03-30 15:38:00 -07:00
User::factory()->superuser()->create(),
''
));
2023-03-23 16:42:21 -07:00
Notification::assertNotSentTo(new AnonymousNotifiable, CheckoutAssetNotification::class);
2023-03-22 12:38:14 -07:00
}
2023-04-19 18:10:23 -07:00
/** @dataProvider targets */
public function testAssetCheckinSendsWebhookNotificationWhenSettingEnabled($checkoutTarget)
{
Notification::fake();
2023-04-17 17:31:12 -07:00
$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;
}
);
}
2023-04-19 18:10:23 -07:00
/** @dataProvider targets */
public function testAssetCheckinDoesNotSendWebhookNotificationWhenSettingDisabled($checkoutTarget)
{
Notification::fake();
2023-04-17 17:31:12 -07:00
$this->settings->disableWebhook();
event(new CheckoutableCheckedIn(
$this->createAsset(),
$checkoutTarget(),
User::factory()->superuser()->create(),
''
));
Notification::assertNotSentTo(new AnonymousNotifiable, CheckinAssetNotification::class);
}
2023-03-22 12:38:14 -07:00
private function createAsset()
{
return Asset::factory()->laptopMbp()->create();
}
}