mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-14 09:34:10 -08:00
146 lines
5.2 KiB
PHP
146 lines
5.2 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Checkouts;
|
|
|
|
use App\Events\CheckoutableCheckedOut;
|
|
use App\Models\Asset;
|
|
use App\Models\LicenseSeat;
|
|
use App\Models\Location;
|
|
use App\Models\Statuslabel;
|
|
use App\Models\User;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Tests\TestCase;
|
|
|
|
class AssetCheckoutTest extends TestCase
|
|
{
|
|
public function testCheckingOutAssetRequiresCorrectPermission()
|
|
{
|
|
$this->actingAs(User::factory()->create())
|
|
->post(route('hardware.checkout.store', Asset::factory()->create()), [
|
|
'checkout_to_type' => 'user',
|
|
'assigned_user' => User::factory()->create()->id,
|
|
])
|
|
->assertForbidden();
|
|
}
|
|
|
|
public function testNonExistentAssetCannotBeCheckedOut()
|
|
{
|
|
Event::fake([CheckoutableCheckedOut::class]);
|
|
|
|
$this->actingAs(User::factory()->checkoutAssets()->create())
|
|
->post(route('hardware.checkout.store', 1000), [
|
|
'checkout_to_type' => 'user',
|
|
'assigned_user' => User::factory()->create()->id,
|
|
'name' => 'Changed Name',
|
|
'status_id' => Statuslabel::factory()->readyToDeploy()->create()->id,
|
|
'checkout_at' => '2024-03-18',
|
|
'expected_checkin' => '2024-03-28',
|
|
'note' => 'An awesome note',
|
|
])
|
|
->assertSessionHas('error');
|
|
|
|
Event::assertNotDispatched(CheckoutableCheckedOut::class);
|
|
}
|
|
|
|
public function testAssetNotAvailableForCheckoutCannotBeCheckedOut()
|
|
{
|
|
Event::fake([CheckoutableCheckedOut::class]);
|
|
|
|
$asset = Asset::factory()->assignedToUser()->create();
|
|
|
|
$this->actingAs(User::factory()->checkoutAssets()->create())
|
|
->post(route('hardware.checkout.store', $asset), [
|
|
'checkout_to_type' => 'user',
|
|
'assigned_user' => User::factory()->create()->id,
|
|
'name' => 'Changed Name',
|
|
'status_id' => Statuslabel::factory()->readyToDeploy()->create()->id,
|
|
'checkout_at' => '2024-03-18',
|
|
'expected_checkin' => '2024-03-28',
|
|
'note' => 'An awesome note',
|
|
])
|
|
->assertSessionHas('error');
|
|
|
|
Event::assertNotDispatched(CheckoutableCheckedOut::class);
|
|
}
|
|
|
|
public function testValidationWhenCheckingOutAsset()
|
|
{
|
|
$this->actingAs(User::factory()->create())
|
|
->post(route('hardware.checkout.store', Asset::factory()->create()), [
|
|
//
|
|
])
|
|
->assertSessionHasErrors();
|
|
}
|
|
|
|
public function testAnAssetCanBeCheckedOutToAUser()
|
|
{
|
|
Event::fake([CheckoutableCheckedOut::class]);
|
|
|
|
$originalStatus = Statuslabel::factory()->readyToDeploy()->create();
|
|
$updatedStatus = Statuslabel::factory()->readyToDeploy()->create();
|
|
$asset = Asset::factory()->create(['status_id' => $originalStatus->id]);
|
|
$admin = User::factory()->checkoutAssets()->create();
|
|
$userLocation = Location::factory()->create();
|
|
|
|
$user = User::factory()->for($userLocation)->create();
|
|
|
|
$this->actingAs($admin)
|
|
->post(route('hardware.checkout.store', $asset), [
|
|
'checkout_to_type' => 'user',
|
|
'assigned_user' => $user->id,
|
|
'name' => 'Changed Name',
|
|
'status_id' => $updatedStatus->id,
|
|
'checkout_at' => '2024-03-18',
|
|
'expected_checkin' => '2024-03-28',
|
|
'note' => 'An awesome note',
|
|
]);
|
|
|
|
$asset->refresh();
|
|
$this->assertTrue($asset->assignedTo()->is($user));
|
|
$this->assertTrue($asset->location->is($userLocation));
|
|
$this->assertEquals('Changed Name', $asset->name);
|
|
$this->assertTrue($asset->assetstatus->is($updatedStatus));
|
|
$this->assertEquals('2024-03-18 00:00:00', $asset->last_checkout);
|
|
$this->assertEquals('2024-03-28 00:00:00', (string)$asset->expected_checkin);
|
|
|
|
Event::assertDispatched(function (CheckoutableCheckedOut $event) use ($admin, $asset, $user) {
|
|
return $event->checkoutable->is($asset)
|
|
&& $event->checkedOutTo->is($user)
|
|
&& $event->checkedOutBy->is($admin)
|
|
&& $event->note === 'An awesome note';
|
|
});
|
|
}
|
|
|
|
public function testLicenseSeatsAreAssignedToUserUponCheckout()
|
|
{
|
|
$asset = Asset::factory()->create();
|
|
$seat = LicenseSeat::factory()->assignedToAsset($asset)->create();
|
|
$user = User::factory()->create();
|
|
|
|
$this->assertFalse($user->licenses->contains($seat->license));
|
|
|
|
$this->actingAs(User::factory()->checkoutAssets()->create())
|
|
->post(route('hardware.checkout.store', $asset), [
|
|
'checkout_to_type' => 'user',
|
|
'assigned_user' => $user->id,
|
|
]);
|
|
|
|
$this->assertTrue($user->fresh()->licenses->contains($seat->license));
|
|
}
|
|
|
|
public function testAnAssetCanBeCheckedOutToAnAsset()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function testAnAssetCanBeCheckedOutToALocation()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function testLastCheckoutUsesCurrentDateIfNotProvided()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
}
|