mirror of
https://github.com/InvoiceShelf/InvoiceShelf.git
synced 2026-09-01 21:00:58 +00:00
* refactor: stabilize model identities for domain migration * refactor: extract module platform context * refactor: assign models to domain contexts * refactor: extract ai platform context * refactor: extract storage platform context * refactor: extract mail platform context * refactor: extract pdf platform context * refactor: extract operations platform context * refactor: move installation into operations platform * refactor: extract money domain context * refactor: extract taxation domain context * refactor: extract catalog domain context * refactor: extract metadata domain context * refactor: extract reporting domain context * refactor: extract purchases domain context * refactor: extract receivables domain context * refactor: extract accounts domain context * refactor: complete reporting statement boundary * refactor: extract contacts domain context * refactor: extract sales domain context * refactor: remove legacy application layers * fix: migrate legacy bouncer role identities
98 lines
2.6 KiB
PHP
98 lines
2.6 KiB
PHP
<?php
|
|
|
|
use App\Domains\Accounts\Models\User;
|
|
use App\Domains\Metadata\Http\Controllers\CustomFieldsController;
|
|
use App\Domains\Metadata\Http\Requests\CustomFieldRequest;
|
|
use App\Domains\Metadata\Models\CustomField;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Laravel\Sanctum\Sanctum;
|
|
|
|
use function Pest\Laravel\deleteJson;
|
|
use function Pest\Laravel\getJson;
|
|
use function Pest\Laravel\postJson;
|
|
use function Pest\Laravel\putJson;
|
|
|
|
beforeEach(function () {
|
|
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
|
|
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
|
|
|
|
$user = User::find(1);
|
|
$this->withHeaders([
|
|
'company' => $user->companies()->first()->id,
|
|
]);
|
|
Sanctum::actingAs(
|
|
$user,
|
|
['*']
|
|
);
|
|
});
|
|
|
|
test('get custom fields', function () {
|
|
$response = getJson('api/v1/custom-fields?page=1');
|
|
|
|
$response->assertOk();
|
|
});
|
|
|
|
test('create custom field', function () {
|
|
$data = CustomField::factory()->raw();
|
|
|
|
postJson('api/v1/custom-fields', $data)
|
|
->assertStatus(201);
|
|
|
|
$this->assertDatabaseHas('custom_fields', [
|
|
'name' => $data['name'],
|
|
'label' => $data['label'],
|
|
'type' => $data['type'],
|
|
'model_type' => $data['model_type'],
|
|
'is_required' => $data['is_required'],
|
|
]);
|
|
});
|
|
|
|
test('store validates using a form request', function () {
|
|
$this->assertActionUsesFormRequest(
|
|
CustomFieldsController::class,
|
|
'store',
|
|
CustomFieldRequest::class
|
|
);
|
|
});
|
|
|
|
test('update custom field', function () {
|
|
$customField = CustomField::factory()->create();
|
|
|
|
$newCustomField = CustomField::factory()->raw([
|
|
'is_required' => false,
|
|
]);
|
|
|
|
putJson('api/v1/custom-fields/'.$customField->id, $newCustomField)
|
|
->assertStatus(200);
|
|
|
|
$this->assertDatabaseHas('custom_fields', [
|
|
'id' => $customField->id,
|
|
'name' => $newCustomField['name'],
|
|
'label' => $newCustomField['label'],
|
|
'type' => $newCustomField['type'],
|
|
'model_type' => $newCustomField['model_type'],
|
|
]);
|
|
});
|
|
|
|
test('update validates using a form request', function () {
|
|
$this->assertActionUsesFormRequest(
|
|
CustomFieldsController::class,
|
|
'update',
|
|
CustomFieldRequest::class
|
|
);
|
|
});
|
|
|
|
test('delete custom field', function () {
|
|
$customField = CustomField::factory()->create();
|
|
|
|
$response = deleteJson('api/v1/custom-fields/'.$customField->id);
|
|
|
|
$response
|
|
->assertOk()
|
|
->assertJson([
|
|
'success' => true,
|
|
]);
|
|
|
|
$this->assertModelMissing($customField);
|
|
});
|