mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-16 02:24:09 -08:00
42 lines
1 KiB
PHP
42 lines
1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Departments\Api;
|
||
|
|
||
|
use App\Models\Department;
|
||
|
use App\Models\Category;
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class UpdateDepartmentsTest extends TestCase
|
||
|
{
|
||
|
|
||
|
public function testRequiresPermissionToEditDepartment()
|
||
|
{
|
||
|
$department = Department::factory()->create();
|
||
|
$this->actingAsForApi(User::factory()->create())
|
||
|
->patchJson(route('api.departments.update', $department))
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
|
||
|
public function testCanUpdateDepartmentViaPatch()
|
||
|
{
|
||
|
$department = Department::factory()->create();
|
||
|
|
||
|
$this->actingAsForApi(User::factory()->superuser()->create())
|
||
|
->patchJson(route('api.departments.update', $department), [
|
||
|
'name' => 'Test Department',
|
||
|
])
|
||
|
->assertOk()
|
||
|
->assertStatusMessageIs('success')
|
||
|
->assertStatus(200)
|
||
|
->json();
|
||
|
|
||
|
$department->refresh();
|
||
|
$this->assertEquals('Test Department', $department->name, 'Name was not updated');
|
||
|
|
||
|
}
|
||
|
|
||
|
|
||
|
|
||
|
}
|