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

38 lines
1 KiB
PHP
Raw Normal View History

<?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());
}
}