3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-05 09:35:49 +00:00
Files
snipe-it/tests/Feature/Notifications/Email/EmailNotificationsToUserUponCheckinTest.php
2025-06-04 11:51:29 -07:00

112 lines
3.4 KiB
PHP

<?php
namespace Tests\Feature\Notifications\Email;
use App\Mail\CheckinAssetMail;
use App\Models\Accessory;
use App\Models\Consumable;
use App\Models\LicenseSeat;
use Illuminate\Support\Facades\Mail;
use PHPUnit\Framework\Attributes\Group;
use App\Events\CheckoutableCheckedIn;
use App\Models\Asset;
use App\Models\User;
use Tests\TestCase;
#[Group('notifications')]
class EmailNotificationsToUserUponCheckinTest extends TestCase
{
protected function setUp(): void
{
parent::setUp();
Mail::fake();
}
public function test_check_in_email_sent_to_user_if_setting_enabled()
{
$user = User::factory()->create();
$asset = Asset::factory()->assignedToUser($user)->create();
$asset->model->category->update(['checkin_email' => true]);
$this->fireCheckInEvent($asset, $user);
Mail::assertSent(CheckinAssetMail::class, function($mail) use ($user) {
return $mail->hasTo($user->email);
});
}
public function test_check_in_email_not_sent_to_user_if_setting_disabled()
{
$this->settings->disableAdminCC();
$user = User::factory()->create();
$checkoutables = collect([
Asset::factory()->assignedToUser($user)->create(),
LicenseSeat::factory()->assignedToUser($user)->create(),
Accessory::factory()->checkedOutToUser($user)->create(),
Consumable::factory()->checkedOutToUser($user)->create(),
]);
foreach ($checkoutables as $checkoutable) {
if ($checkoutable instanceof Asset) {
$checkoutable->model->category->update([
'checkin_email' => false,
'eula_text' => null,
'require_acceptance' => false,
]);
$checkoutable = $checkoutable->fresh(['model.category']);
}
if ($checkoutable instanceof Accessory || $checkoutable instanceof Consumable) {
$checkoutable->category->update([
'checkin_email' => false,
'eula_text' => null,
'require_acceptance' => false,
]);
$checkoutable = $checkoutable->fresh(['category']);
}
if ($checkoutable instanceof LicenseSeat) {
$checkoutable->license->category->update([
'checkin_email' => false,
'eula_text' => null,
'require_acceptance' => false,
]);
$checkoutable = $checkoutable->fresh(['license.category']);
}
// Fire event manually
$this->fireCheckInEvent($checkoutable, $user);
}
Mail::assertNotSent(CheckinAssetMail::class, function ($mail) use ($user) {
return $mail->hasTo($user->email);
});
}
public function test_handles_user_not_having_email_address_set()
{
$user = User::factory()->create(['email' => null]);
$asset = Asset::factory()->assignedToUser($user)->create();
$asset->model->category->update(['checkin_email' => true]);
$this->fireCheckInEvent($asset, $user);
Mail::assertNothingSent();
}
private function fireCheckInEvent($asset, $user): void
{
event(new CheckoutableCheckedIn(
$asset,
$user,
User::factory()->checkinAssets()->create(),
''
));
}
}