2024-02-21 23:18:31 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Tests\Feature\Form;
|
|
|
|
|
|
|
|
use App\Form\Models\Form;
|
|
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
|
|
|
|
|
|
class FormUpdateMetaActionTest extends FormTestCase
|
|
|
|
{
|
|
|
|
|
|
|
|
use DatabaseTransactions;
|
|
|
|
|
|
|
|
public function testItUpdatesMetaOfForm(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami()->withoutExceptionHandling();
|
|
|
|
$form = Form::factory()
|
|
|
|
->sections([FormtemplateSectionRequest::new()->fields([
|
|
|
|
$this->textField('textone'),
|
|
|
|
$this->dropdownField('texttwo'),
|
|
|
|
])])->create();
|
|
|
|
|
|
|
|
$this->patchJson(route('form.update-meta', ['form' => $form]), [
|
|
|
|
'active_columns' => ['textone'],
|
|
|
|
'sorting' => ['textone', 'desc'],
|
|
|
|
])->assertOk()
|
|
|
|
->assertJsonPath('active_columns.0', 'textone')
|
|
|
|
->assertJsonPath('sorting.1', 'desc');
|
|
|
|
|
|
|
|
$form = Form::latest()->first();
|
|
|
|
$this->assertEquals(['textone', 'desc'], $form->meta['sorting']);
|
|
|
|
$this->assertEquals(['textone'], $form->meta['active_columns']);
|
|
|
|
}
|
2024-04-12 00:14:02 +02:00
|
|
|
|
|
|
|
public function testItCanSetCreatedAtMeta(): void
|
|
|
|
{
|
|
|
|
$this->login()->loginNami()->withoutExceptionHandling();
|
|
|
|
$form = Form::factory()->create();
|
|
|
|
|
|
|
|
$this->patchJson(route('form.update-meta', ['form' => $form]), [
|
|
|
|
'active_columns' => ['created_at'],
|
|
|
|
'sorting' => ['created_at', 'desc'],
|
|
|
|
])->assertOk();
|
|
|
|
|
|
|
|
$form = Form::latest()->first();
|
|
|
|
$this->assertEquals(['created_at', 'desc'], $form->fresh()->meta['sorting']);
|
|
|
|
$this->assertEquals(['created_at'], $form->fresh()->meta['active_columns']);
|
|
|
|
}
|
2024-02-21 23:18:31 +01:00
|
|
|
}
|