mirror of
https://github.com/crater-invoice/crater.git
synced 2025-12-16 10:22:55 -05:00
build version 400
This commit is contained in:
99
tests/Feature/CustomFieldTest.php
Normal file
99
tests/Feature/CustomFieldTest.php
Normal file
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
use Crater\Models\User;
|
||||
use Crater\Models\CustomField;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
use Laravel\Sanctum\Sanctum;
|
||||
use Crater\Http\Requests\CustomFieldRequest;
|
||||
use Crater\Http\Controllers\V1\CustomField\CustomFieldsController;
|
||||
use function Pest\Laravel\{postJson, putJson, getJson, deleteJson};
|
||||
|
||||
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->company_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(200)
|
||||
->assertJson([
|
||||
'success' => true
|
||||
]);
|
||||
|
||||
$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)
|
||||
->assertJson([
|
||||
'success' => true
|
||||
]);
|
||||
|
||||
$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->assertDeleted($customField);
|
||||
});
|
||||
Reference in New Issue
Block a user