38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			38 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Form;
 | |
| 
 | |
| use App\Form\Models\Form;
 | |
| use App\Form\Models\Participant;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Tests\Lib\CreatesFormFields;
 | |
| 
 | |
| uses(DatabaseTransactions::class);
 | |
| uses(CreatesFormFields::class);
 | |
| 
 | |
| beforeEach(function () {
 | |
|     test()->setUpForm();
 | |
| });
 | |
| 
 | |
| it('testItShowsParticipantsFields', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $participant = Participant::factory()->data(['vorname' => 'Max', 'select' => ['A', 'B']])
 | |
|         ->for(Form::factory()->sections([
 | |
|             FormtemplateSectionRequest::new()->name('Sektion')->fields([
 | |
|                 $this->textField('vorname')->name('Vorname'),
 | |
|                 $this->checkboxesField('select')->options(['A', 'B', 'C']),
 | |
|             ])
 | |
| 
 | |
|         ]))
 | |
|         ->create();
 | |
| 
 | |
|     $this->callFilter('participant.fields', [], ['participant' => $participant->id])
 | |
|         ->assertOk()
 | |
|         ->assertJsonPath('data.id', $participant->id)
 | |
|         ->assertJsonPath('data.config.sections.0.name', 'Sektion')
 | |
|         ->assertJsonPath('data.config.sections.0.fields.0.key', 'vorname')
 | |
|         ->assertJsonPath('data.config.sections.0.fields.0.value', 'Max')
 | |
|         ->assertJsonPath('data.config.sections.0.fields.1.key', 'select')
 | |
|         ->assertJsonPath('data.config.sections.0.fields.1.value', ['A', 'B']);
 | |
| });
 |