mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-10 15:44:11 -08:00
89 lines
2.6 KiB
PHP
89 lines
2.6 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Checkins;
|
|
|
|
use App\Events\CheckoutableCheckedIn;
|
|
use App\Models\Accessory;
|
|
use App\Models\User;
|
|
use App\Notifications\CheckinAccessoryNotification;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Illuminate\Support\Facades\Notification;
|
|
use Tests\TestCase;
|
|
|
|
class AccessoryCheckinTest extends TestCase
|
|
{
|
|
public function testCheckingInAccessoryRequiresCorrectPermission()
|
|
{
|
|
$accessory = Accessory::factory()->checkedOutToUser()->create();
|
|
|
|
$this->actingAs(User::factory()->create())
|
|
->post(route('accessories.checkin.store', $accessory->users->first()->pivot->id))
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testAccessoryCanBeCheckedIn()
|
|
{
|
|
Event::fake([CheckoutableCheckedIn::class]);
|
|
|
|
$user = User::factory()->create();
|
|
$accessory = Accessory::factory()->checkedOutToUser($user)->create();
|
|
|
|
$this->assertTrue($accessory->users->contains($user));
|
|
|
|
$this->actingAs(User::factory()->checkinAccessories()->create())
|
|
->post(route('accessories.checkin.store', $accessory->users->first()->pivot->id));
|
|
|
|
$this->assertFalse($accessory->fresh()->users->contains($user));
|
|
|
|
Event::assertDispatched(CheckoutableCheckedIn::class, 1);
|
|
}
|
|
|
|
public function testEmailSentToUserIfSettingEnabled()
|
|
{
|
|
Notification::fake();
|
|
|
|
$user = User::factory()->create();
|
|
$accessory = Accessory::factory()->checkedOutToUser($user)->create();
|
|
|
|
$accessory->category->update(['checkin_email' => true]);
|
|
|
|
event(new CheckoutableCheckedIn(
|
|
$accessory,
|
|
$user,
|
|
User::factory()->checkinAccessories()->create(),
|
|
'',
|
|
));
|
|
|
|
Notification::assertSentTo(
|
|
[$user],
|
|
function (CheckinAccessoryNotification $notification, $channels) {
|
|
return in_array('mail', $channels);
|
|
},
|
|
);
|
|
}
|
|
|
|
public function testEmailNotSentToUserIfSettingDisabled()
|
|
{
|
|
Notification::fake();
|
|
|
|
$user = User::factory()->create();
|
|
$accessory = Accessory::factory()->checkedOutToUser($user)->create();
|
|
|
|
$accessory->category->update(['checkin_email' => false]);
|
|
|
|
event(new CheckoutableCheckedIn(
|
|
$accessory,
|
|
$user,
|
|
User::factory()->checkinAccessories()->create(),
|
|
'',
|
|
));
|
|
|
|
Notification::assertNotSentTo(
|
|
[$user],
|
|
function (CheckinAccessoryNotification $notification, $channels) {
|
|
return in_array('mail', $channels);
|
|
},
|
|
);
|
|
}
|
|
}
|