snipe-it/tests/Feature/Departments/Ui/CreateDepartmentsTest.php
snipe 0a7e053985 Added basic Department UI tests
Signed-off-by: snipe <snipe@snipe.net>
2024-07-05 07:53:02 +01:00

38 lines
1 KiB
PHP

<?php
namespace Tests\Feature\Departments\Ui;
use App\Models\Department;
use App\Models\Company;
use App\Models\User;
use Tests\TestCase;
class CreateDepartmentsTest extends TestCase
{
public function testPermissionRequiredToCreateDepartment()
{
$this->actingAs(User::factory()->create())
->post(route('departments.store'), [
'name' => 'Test Department',
'company_id' => Company::factory()->create()->id
])
->assertForbidden();
}
public function testUserCanCreateDepartments()
{
$this->assertFalse(Department::where('name', 'Test Department')->exists());
$this->actingAs(User::factory()->superuser()->create())
->post(route('departments.store'), [
'name' => 'Test Department',
'company_id' => Company::factory()->create()->id
])
->assertRedirect(route('departments.index'));
$this->assertTrue(Department::where('name', 'Test Department')->exists());
}
}