mirror of
https://github.com/snipe/snipe-it.git
synced 2024-11-15 01:54:09 -08:00
38 lines
1 KiB
PHP
38 lines
1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Tests\Feature\Locations\Ui;
|
||
|
|
||
|
use App\Models\Location;
|
||
|
use App\Models\Company;
|
||
|
use App\Models\User;
|
||
|
use Tests\TestCase;
|
||
|
|
||
|
class CreateLocationsTest extends TestCase
|
||
|
{
|
||
|
public function testPermissionRequiredToCreateLocation()
|
||
|
{
|
||
|
$this->actingAs(User::factory()->create())
|
||
|
->post(route('locations.store'), [
|
||
|
'name' => 'Test Location',
|
||
|
'company_id' => Company::factory()->create()->id
|
||
|
])
|
||
|
->assertForbidden();
|
||
|
}
|
||
|
|
||
|
public function testUserCanCreateLocations()
|
||
|
{
|
||
|
$this->assertFalse(Location::where('name', 'Test Location')->exists());
|
||
|
|
||
|
$this->actingAs(User::factory()->superuser()->create())
|
||
|
->post(route('locations.store'), [
|
||
|
'name' => 'Test Location',
|
||
|
'company_id' => Company::factory()->create()->id
|
||
|
])
|
||
|
->assertRedirect(route('locations.index'));
|
||
|
|
||
|
$this->assertTrue(Location::where('name', 'Test Location')->exists());
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|