adrema/tests/Feature/Form/ParticipantIndexActionTest.php

74 lines
3.3 KiB
PHP
Raw Normal View History

2024-02-08 21:04:00 +01:00
<?php
namespace Tests\Feature\Form;
use App\Form\Fields\TextField;
use App\Form\Models\Form;
use App\Form\Models\Participant;
2024-02-08 23:09:51 +01:00
use App\Group;
2024-02-20 01:22:08 +01:00
use App\Member\Member;
2024-02-08 21:04:00 +01:00
use Illuminate\Foundation\Testing\DatabaseTransactions;
2024-02-19 01:07:54 +01:00
class ParticipantIndexActionTest extends FormTestCase
2024-02-08 21:04:00 +01:00
{
use DatabaseTransactions;
public function testItShowsParticipantsAndColumns(): void
{
$this->login()->loginNami()->withoutExceptionHandling();
2024-02-08 23:09:51 +01:00
$group = Group::factory()->innerName('Stamm')->create();
2024-02-08 21:04:00 +01:00
$form = Form::factory()
2024-02-09 23:22:49 +01:00
->has(Participant::factory()->data(['vorname' => 'Max', 'select' => ['A', 'B'], 'stufe' => 'Pfadfinder', 'test1' => '', 'test2' => '', 'test3' => '', 'birthday' => '1991-04-20', 'bezirk' => $group->id]))
2024-02-08 21:04:00 +01:00
->sections([
FormtemplateSectionRequest::new()->fields([
2024-02-19 01:07:54 +01:00
$this->textField('vorname')->name('Vorname'),
$this->checkboxesField('select')->options(['A', 'B', 'C']),
$this->dropdownField('stufe')->options(['Wölfling', 'Jungpfadfinder', 'Pfadfinder']),
$this->textField('test1')->name('Test 1'),
$this->textField('test2')->name('Test 2'),
$this->textField('test3')->name('Test 3'),
$this->dateField('birthday')->name('Geburtsdatum'),
$this->groupField('bezirk')->name('bezirk'),
2024-02-08 21:04:00 +01:00
]),
])
->create();
$this->callFilter('form.participant.index', [], ['form' => $form])
->assertOk()
->assertJsonPath('data.0.vorname', 'Max')
2024-02-09 23:22:49 +01:00
->assertJsonPath('data.0.vorname_display', 'Max')
2024-02-08 21:04:00 +01:00
->assertJsonPath('data.0.stufe', 'Pfadfinder')
2024-02-08 23:09:51 +01:00
->assertJsonPath('data.0.bezirk', $group->id)
2024-02-09 23:22:49 +01:00
->assertJsonPath('data.0.bezirk_display', 'Stamm')
->assertJsonPath('data.0.birthday_display', '20.04.1991')
2024-02-08 23:09:51 +01:00
->assertJsonPath('data.0.birthday', '1991-04-20')
2024-02-09 23:22:49 +01:00
->assertJsonPath('data.0.select', ['A', 'B'])
->assertJsonPath('data.0.select_display', 'A, B')
2024-02-08 21:04:00 +01:00
->assertJsonPath('meta.columns.0.name', 'Vorname')
->assertJsonPath('meta.columns.0.base_type', class_basename(TextField::class))
2024-02-08 23:09:51 +01:00
->assertJsonPath('meta.columns.0.id', 'vorname')
2024-02-09 23:22:49 +01:00
->assertJsonPath('meta.columns.6.display_attribute', 'birthday_display')
->assertJsonPath('meta.columns.0.display_attribute', 'vorname_display')
2024-02-08 23:09:51 +01:00
->assertJsonPath('meta.active_columns', ['vorname', 'select', 'stufe', 'test1']);
2024-02-08 21:04:00 +01:00
}
2024-02-20 01:22:08 +01:00
public function testItPresentsNamiField(): void
{
$this->login()->loginNami()->withoutExceptionHandling();
$form = Form::factory()
->has(Participant::factory()->data(['mitglieder' => [['id' => 393], ['id' => 394]]]))
->has(Participant::factory()->nr(393)->data(['mitglieder' => []]))
->has(Participant::factory()->nr(394)->data(['mitglieder' => []]))
->sections([
FormtemplateSectionRequest::new()->fields([
$this->namiField('mitglieder'),
]),
])
->create();
$this->callFilter('form.participant.index', [], ['form' => $form])
->assertJsonPath('data.0.mitglieder_display', '393, 394');
}
2024-02-08 21:04:00 +01:00
}