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

37 lines
887 B
PHP
Raw Normal View History

<?php
namespace Tests\Feature\Locations\Api;
use App\Models\Location;
use App\Models\User;
use Tests\TestCase;
class CreateLocationsTest extends TestCase
{
public function testRequiresPermissionToCreateLocation()
{
$this->actingAsForApi(User::factory()->create())
->postJson(route('api.departments.store'))
->assertForbidden();
}
public function testCannotCreateNewLocationsWithTheSameName()
{
$location = Location::factory()->create();
$location2 = Location::factory()->create();
$this->actingAsForApi(User::factory()->superuser()->create())
->patchJson(route('api.locations.update', $location2), [
'name' => $location->name,
])
->assertOk()
->assertStatusMessageIs('error')
->assertStatus(200)
->json();
}
}