3
0
mirror of https://github.com/snipe/snipe-it.git synced 2026-02-09 19:35:54 +00:00
Files
snipe-it/tests/Feature/Checkouts/General/SettingAlertOnResponseTest.php
2025-06-17 14:31:14 -07:00

164 lines
5.1 KiB
PHP

<?php
namespace Tests\Feature\Checkouts\General;
use App\Models\Accessory;
use App\Models\Asset;
use App\Models\License;
use App\Models\LicenseSeat;
use App\Models\Statuslabel;
use App\Models\User;
use Tests\TestCase;
class SettingAlertOnResponseTest extends TestCase
{
private User $actor;
private User $assignedUser;
protected function setUp(): void
{
parent::setUp();
$this->actor = User::factory()->superuser()->create();
$this->assignedUser = User::factory()->create();
}
public function test_sets_alert_on_response_if_enabled_by_category_for_accessory()
{
$accessory = Accessory::factory()->create();
$accessory->category->update([
'require_acceptance' => true,
'alert_on_response' => true,
]);
$this->postAccessoryCheckout($accessory);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => Accessory::class,
'checkoutable_id' => $accessory->id,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => $this->actor->id,
]);
}
public function test_does_not_set_alert_on_response_if_disabled_by_category_for_accessory()
{
$accessory = Accessory::factory()->create();
$accessory->category->update([
'require_acceptance' => true,
'alert_on_response' => false,
]);
$this->postAccessoryCheckout($accessory);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => Accessory::class,
'checkoutable_id' => $accessory->id,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => null,
]);
}
public function test_sets_alert_on_response_if_enabled_by_category_for_asset()
{
$asset = Asset::factory()->create();
$asset->model->category->update([
'require_acceptance' => true,
'alert_on_response' => true,
]);
$this->postAssetCheckout($asset);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => Asset::class,
'checkoutable_id' => $asset->id,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => $this->actor->id,
]);
}
public function test_does_not_set_alert_on_response_if_disabled_by_category_for_asset()
{
$asset = Asset::factory()->create();
$asset->model->category->update([
'require_acceptance' => true,
'alert_on_response' => false,
]);
$this->postAssetCheckout($asset);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => Asset::class,
'checkoutable_id' => $asset->id,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => null,
]);
}
public function test_sets_alert_on_response_if_enabled_by_category_for_license()
{
$license = License::factory()->create();
$license->category->update([
'require_acceptance' => true,
'alert_on_response' => true,
]);
$this->postLicenseCheckout($license);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => LicenseSeat::class,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => $this->actor->id,
]);
}
public function test_does_not_set_alert_on_response_if_disabled_by_category_for_license()
{
$license = License::factory()->create();
$license->category->update([
'require_acceptance' => true,
'alert_on_response' => false,
]);
$this->postLicenseCheckout($license);
$this->assertDatabaseHas('checkout_acceptances', [
'checkoutable_type' => LicenseSeat::class,
'assigned_to_id' => $this->assignedUser->id,
'alert_on_response_id' => null,
]);
}
private function postAssetCheckout(Asset $asset): void
{
$this->actingAs($this->actor)
->post(route('hardware.checkout.store', $asset), [
'checkout_to_type' => 'user',
'status_id' => (string) Statuslabel::factory()->readyToDeploy()->create()->id,
'assigned_user' => $this->assignedUser->id,
]);
}
private function postAccessoryCheckout(Accessory $accessory): void
{
$this->actingAs($this->actor)
->post(route('accessories.checkout.store', $accessory), [
'checkout_to_type' => 'user',
'status_id' => (string) Statuslabel::factory()->readyToDeploy()->create()->id,
'assigned_user' => $this->assignedUser->id,
'checkout_qty' => 1,
]);
}
private function postLicenseCheckout(License $license): void
{
$this->actingAs($this->actor)
->post("/licenses/{$license->id}/checkout/", [
'checkout_to_type' => 'user',
'assigned_to' => $this->assignedUser->id,
]);
}
}