Add tests for creating and patching companies via api

This commit is contained in:
Marcus Moore 2025-03-27 10:54:42 -07:00
parent 2d3514bbf8
commit e0e08f284e
No known key found for this signature in database
3 changed files with 99 additions and 0 deletions

View file

@ -295,6 +295,11 @@ class UserFactory extends Factory
return $this->appendPermission(['companies.delete' => '1']);
}
public function editCompanies()
{
return $this->appendPermission(['companies.edit' => '1']);
}
public function viewUsers()
{
return $this->appendPermission(['users.view' => '1']);

View file

@ -0,0 +1,44 @@
<?php
namespace Tests\Feature\Companies\Api;
use App\Models\User;
use Tests\Concerns\TestsPermissionsRequirement;
use Tests\TestCase;
class CreateCompaniesTest extends TestCase implements TestsPermissionsRequirement
{
public function testRequiresPermission()
{
$this->actingAsForApi(User::factory()->create())
->postJson(route('api.companies.store'))
->assertForbidden();
}
public function testValidationForCreatingCompany()
{
$this->actingAsForApi(User::factory()->createCompanies()->create())
->postJson(route('api.companies.store'))
->assertStatus(200)
->assertStatusMessageIs('error')
->assertJsonStructure([
'messages' => [
'name',
],
]);
}
public function testCanCreateCompany()
{
$this->actingAsForApi(User::factory()->createCompanies()->create())
->postJson(route('api.companies.store'), [
'name' => 'My Cool Company',
])
->assertStatus(200)
->assertStatusMessageIs('success');
$this->assertDatabaseHas('companies', [
'name' => 'My Cool Company',
]);
}
}

View file

@ -0,0 +1,50 @@
<?php
namespace Tests\Feature\Companies\Api;
use App\Models\Company;
use App\Models\User;
use Tests\TestCase;
class UpdateCompaniesTest extends TestCase
{
public function testRequiresPermissionToPatchCompany()
{
$company = Company::factory()->create();
$this->actingAsForApi(User::factory()->create())
->patchJson(route('api.companies.update', $company))
->assertForbidden();
}
public function testValidationForPatchingCompany()
{
$company = Company::factory()->create();
$this->actingAsForApi(User::factory()->editCompanies()->create())
->patchJson(route('api.companies.update', ['company' => $company->id]), [
'name' => '',
])
->assertStatus(200)
->assertStatusMessageIs('error')
->assertJsonStructure([
'messages' => [
'name',
],
]);
}
public function testCanPatchCompany()
{
$company = Company::factory()->create();
$this->actingAsForApi(User::factory()->editCompanies()->create())
->patchJson(route('api.companies.update', ['company' => $company->id]), [
'name' => 'A Changed Name',
])
->assertStatus(200)
->assertStatusMessageIs('success');
$this->assertEquals('A Changed Name', $company->fresh()->name);
}
}