fix the ghosts pt2

This commit is contained in:
Godfrey M
2025-04-23 10:17:11 -07:00
parent f435ebb110
commit 63ce2a14fe
2 changed files with 0 additions and 90 deletions

View File

@@ -1,45 +0,0 @@
<?php
namespace Tests\Feature\Checkins\Api;
use App\Models\License;
use App\Models\LicenseSeat;
use App\Models\User;
use Tests\TestCase;
class LicenseCheckInTest extends TestCase {
public function testLicenseCheckin()
{
$authUser = User::factory()->superuser()->create();
$this->actingAsForApi($authUser);
$license = License::factory()->create();
$oldUser = User::factory()->create();
$licenseSeat = LicenseSeat::factory()->for($license)->create([
'assigned_to' => $oldUser->id,
'notes' => 'Previously checked out',
]);
$payload = [
'assigned_to' => null,
'asset_id' => null,
'notes' => 'Checking in the seat',
];
$response = $this->patchJson(
route('api.licenses.seats.update', [$license->id, $licenseSeat->id]),
$payload);
$response->assertStatus(200)
->assertJsonFragment([
'status' => 'success',
]);
$licenseSeat->refresh();
$this->assertNull($licenseSeat->assigned_to);
$this->assertNull($licenseSeat->asset_id);
$this->assertEquals('Checking in the seat', $licenseSeat->notes);
}
}

View File

@@ -1,45 +0,0 @@
<?php
namespace Tests\Feature\Checkins\Api;
use App\Models\License;
use App\Models\LicenseSeat;
use App\Models\User;
use Tests\TestCase;
class LicenseCheckInTest extends TestCase {
public function testLicenseCheckin()
{
$authUser = User::factory()->superuser()->create();
$this->actingAsForApi($authUser);
$license = License::factory()->create();
$oldUser = User::factory()->create();
$licenseSeat = LicenseSeat::factory()->for($license)->create([
'assigned_to' => $oldUser->id,
'notes' => 'Previously checked out',
]);
$payload = [
'assigned_to' => null,
'asset_id' => null,
'notes' => 'Checking in the seat',
];
$response = $this->patchJson(
route('api.licenses.seats.update', [$license->id, $licenseSeat->id]),
$payload);
$response->assertStatus(200)
->assertJsonFragment([
'status' => 'success',
]);
$licenseSeat->refresh();
$this->assertNull($licenseSeat->assigned_to);
$this->assertNull($licenseSeat->asset_id);
$this->assertEquals('Checking in the seat', $licenseSeat->notes);
}
}