92 lines
5.0 KiB
PHP
92 lines
5.0 KiB
PHP
<?php
|
|
|
|
namespace Tests\Feature\Form;
|
|
|
|
use App\Form\Enums\SpecialType;
|
|
use App\Form\Fields\TextareaField;
|
|
use App\Form\Fields\TextField;
|
|
use App\Form\Models\Formtemplate;
|
|
use App\Lib\Events\Succeeded;
|
|
use Illuminate\Foundation\Testing\DatabaseTransactions;
|
|
use Illuminate\Support\Facades\Event;
|
|
use Generator;
|
|
use PHPUnit\Framework\Attributes\DataProvider;
|
|
use Tests\RequestFactories\EditorRequestFactory;
|
|
|
|
class FormtemplateStoreActionTest extends FormTestCase
|
|
{
|
|
|
|
use DatabaseTransactions;
|
|
|
|
public function testItStoresTemplates(): void
|
|
{
|
|
Event::fake([Succeeded::class]);
|
|
$this->login()->loginNami()->withoutExceptionHandling();
|
|
$payload = FormtemplateRequest::new()->name('testname')->sections([
|
|
FormtemplateSectionRequest::new()->name('Persönliches')->fields([
|
|
$this->textField('a')->name('lala1')->columns(['mobile' => 2, 'tablet' => 2, 'desktop' => 1])->required(false)->hint('hhh')->intro('intro'),
|
|
$this->textareaField('b')->name('lala2')->required(false)->specialType(SpecialType::FIRSTNAME)->rows(10),
|
|
]),
|
|
])
|
|
->mailTop(EditorRequestFactory::new()->text(10, 'lala'))
|
|
->mailBottom(EditorRequestFactory::new()->text(10, 'lblb'))
|
|
->create();
|
|
|
|
$this->postJson(route('formtemplate.store'), $payload)->assertOk();
|
|
|
|
$formtemplate = Formtemplate::latest()->first();
|
|
$this->assertEquals('Persönliches', $formtemplate->config->sections->get(0)->name);
|
|
$this->assertEquals('lala1', $formtemplate->config->sections->get(0)->fields->get(0)->name);
|
|
$this->assertNull($formtemplate->config->sections->get(0)->fields->get(0)->specialType);
|
|
$this->assertEquals('hhh', $formtemplate->config->sections->get(0)->fields->get(0)->hint);
|
|
$this->assertEquals('intro', $formtemplate->config->sections->get(0)->fields->get(0)->intro);
|
|
$this->assertInstanceOf(TextField::class, $formtemplate->config->sections->get(0)->fields->get(0));
|
|
$this->assertInstanceOf(TextareaField::class, $formtemplate->config->sections->get(0)->fields->get(1));
|
|
$this->assertEquals(false, $formtemplate->config->sections->get(0)->fields->get(1)->required);
|
|
$this->assertEquals(SpecialType::FIRSTNAME, $formtemplate->config->sections->get(0)->fields->get(1)->specialType);
|
|
$this->assertEquals(['mobile' => 2, 'tablet' => 2, 'desktop' => 1], $formtemplate->config->sections->get(0)->fields->get(0)->columns->toArray());
|
|
$this->assertEquals(10, $formtemplate->config->sections->get(0)->fields->get(1)->rows);
|
|
$this->assertEquals('lala', $formtemplate->mail_top->blocks[0]['data']['text']);
|
|
$this->assertEquals('lblb', $formtemplate->mail_bottom->blocks[0]['data']['text']);
|
|
$this->assertFalse($formtemplate->config->sections->get(0)->fields->get(0)->required);
|
|
Event::assertDispatched(Succeeded::class, fn (Succeeded $event) => $event->message === 'Vorlage gespeichert.');
|
|
}
|
|
|
|
public static function validationDataProvider(): Generator
|
|
{
|
|
yield [FormtemplateRequest::new()->name(''), ['name' => 'Name ist erforderlich.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->name('')]), ['config.sections.0.name' => 'Sektionsname ist erforderlich.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
static::textField()->name(''),
|
|
])]), ['config.sections.0.fields.0.name' => 'Feldname ist erforderlich.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
FormtemplateFieldRequest::type('')
|
|
])]), ['config.sections.0.fields.0.type' => 'Feldtyp ist erforderlich.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
FormtemplateFieldRequest::type('aaaaa'),
|
|
])]), ['config.sections.0.fields.0.type' => 'Feldtyp ist ungültig.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
static::textField(''),
|
|
])]), ['config.sections.0.fields.0.key' => 'Feldkey ist erforderlich.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
static::textField('a b'),
|
|
])]), ['config.sections.0.fields.0.key' => 'Feldkey Format ist ungültig.']];
|
|
yield [FormtemplateRequest::new()->sections([FormtemplateSectionRequest::new()->fields([
|
|
static::textField()->required('la')
|
|
])]), ['config.sections.0.fields.0.required' => 'Erforderlich muss ein Wahrheitswert sein.']];
|
|
}
|
|
|
|
/**
|
|
* @param array<string, string> $messages
|
|
*/
|
|
#[DataProvider('validationDataProvider')]
|
|
public function testItValidatesRequests(FormtemplateRequest $request, array $messages): void
|
|
{
|
|
$this->login()->loginNami();
|
|
$request->fake();
|
|
|
|
$this->postJson(route('formtemplate.store'))
|
|
->assertJsonValidationErrors($messages);
|
|
}
|
|
}
|