snipe-it/tests/Feature/Locations/Api/UpdateLocationsTest.php

39 lines
983 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature\Locations\Api;
use App\Models\Location;
use App\Models\User;
use Tests\TestCase;
class UpdateLocationsTest extends TestCase
{
2024-08-06 13:25:22 -07:00
public function testRequiresPermissionToEditLocation(): void
{
$this->actingAsForApi(User::factory()->create())
->postJson(route('api.locations.store', Location::factory()->create()))
->assertForbidden();
}
2024-08-06 13:25:22 -07:00
public function testCanUpdateLocationViaPatch(): void
{
$location = Location::factory()->create();
$this->actingAsForApi(User::factory()->superuser()->create())
->patchJson(route('api.locations.update', $location), [
'name' => 'Test Location',
])
->assertOk()
->assertStatusMessageIs('success')
->assertStatus(200)
->json();
$location->refresh();
$this->assertEquals('Test Location', $location->name, 'Name was not updated');
}
}