159 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			159 lines
		
	
	
		
			6.6 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Form;
 | |
| 
 | |
| use App\Fileshare\Data\FileshareResourceData;
 | |
| use App\Form\Data\ExportData;
 | |
| use App\Form\Models\Form;
 | |
| use Illuminate\Foundation\Testing\DatabaseTransactions;
 | |
| use Tests\RequestFactories\EditorRequestFactory;
 | |
| use Tests\Lib\CreatesFormFields;
 | |
| 
 | |
| uses(DatabaseTransactions::class);
 | |
| uses(CreatesFormFields::class);
 | |
| 
 | |
| beforeEach(function () {
 | |
|     test()->setUpForm();
 | |
| });
 | |
| 
 | |
| it('testItSetsCustomAttributesOfFields', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
|     $payload = FormRequest::new()->fields([
 | |
|         $this->dateField()->state(['max_today' => true]),
 | |
|     ])->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)
 | |
|         ->assertOk();
 | |
| 
 | |
|     $form = $form->fresh();
 | |
| 
 | |
|     $this->assertTrue($form->config->sections->get(0)->fields->get(0)->maxToday);
 | |
| });
 | |
| 
 | |
| it('testItSetsRegistrationDates', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
|     $payload = FormRequest::new()->registrationFrom('2023-05-04 01:00:00')->registrationUntil('2023-07-07 01:00:00')->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)->assertOk();
 | |
| 
 | |
|     $form = $form->fresh();
 | |
| 
 | |
|     $this->assertEquals('2023-05-04 01:00', $form->registration_from->format('Y-m-d H:i'));
 | |
|     $this->assertEquals('2023-07-07 01:00', $form->registration_until->format('Y-m-d H:i'));
 | |
| });
 | |
| 
 | |
| it('testItSetsTexts', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
|     $payload = FormRequest::new()->fields([])
 | |
|         ->mailTop(EditorRequestFactory::new()->text(11, 'lala'))
 | |
|         ->mailBottom(EditorRequestFactory::new()->text(12, 'lalab'))
 | |
|         ->description(EditorRequestFactory::new()->text(12, 'desc'))
 | |
|         ->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)
 | |
|         ->assertOk();
 | |
| 
 | |
|     $this->assertEquals('lala', $form->fresh()->mail_top->blocks[0]['data']['text']);
 | |
|     $this->assertEquals('lalab', $form->fresh()->mail_bottom->blocks[0]['data']['text']);
 | |
|     $this->assertEquals('desc', $form->fresh()->description->blocks[0]['data']['text']);
 | |
| });
 | |
| 
 | |
| it('testItClearsFrontendCacheWhenFormUpdated', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->create());
 | |
| 
 | |
|     $this->assertFrontendCacheCleared();
 | |
| });
 | |
| 
 | |
| it('testItUpdatesExport', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
| 
 | |
|     $form = Form::factory()->create();
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->export(ExportData::from(['root' => FileshareResourceData::from(['connection_id' => 2, 'resource' => '/dir']), 'group_by' => 'lala', 'to_group_field' => 'abc']))->create());
 | |
| 
 | |
|     $this->assertEquals(2, $form->fresh()->export->root->connectionId);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesActiveColumnsWhenFieldRemoved', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->fields([
 | |
|         $this->textField('firstname'),
 | |
|         $this->textField('geb'),
 | |
|         $this->textField('lastname'),
 | |
|     ])
 | |
|         ->create();
 | |
|     $payload = FormRequest::new()->fields([
 | |
|         $this->textField('firstname'),
 | |
|     ])->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertEquals(['firstname'], $form->fresh()->meta['active_columns']);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesIntroOfSections', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()
 | |
|         ->sections([FormtemplateSectionRequest::new()->intro('aaa')])
 | |
|         ->create();
 | |
|     $payload = FormRequest::new()->sections([
 | |
|         FormtemplateSectionRequest::new()->intro('aaa')
 | |
|     ])->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertEquals('aaa', $form->fresh()->config->sections[0]->intro);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesActiveState', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->isActive(false)->create())->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertFalse($form->fresh()->is_active);
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->isActive(true)->create())->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertTrue($form->fresh()->is_active);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesPrivateState', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->isPrivate(false)->create())->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertFalse($form->fresh()->is_private);
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), FormRequest::new()->isPrivate(true)->create())->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertTrue($form->fresh()->is_private);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesActiveColumnsWhenFieldsAdded', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()
 | |
|         ->fields([])
 | |
|         ->create();
 | |
|     $payload = FormRequest::new()->fields([
 | |
|         $this->textField('firstname'),
 | |
|         $this->textField('geb'),
 | |
|         $this->textField('lastname'),
 | |
|     ])->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload)->assertSessionDoesntHaveErrors()->assertOk();
 | |
|     $this->assertEquals(['firstname', 'geb', 'lastname'], $form->fresh()->meta['active_columns']);
 | |
| });
 | |
| 
 | |
| it('testItUpdatesPrevention', function () {
 | |
|     $this->login()->loginNami()->withoutExceptionHandling();
 | |
|     $form = Form::factory()->create();
 | |
|     $payload = FormRequest::new()
 | |
|         ->preventionText(EditorRequestFactory::new()->text(10, 'lorem ipsum'))
 | |
|         ->state(['needs_prevention' => true, 'prevention_conditions' => ['mode' => 'all', 'ifs' => [['field' => 'vorname', 'value' => 'Max', 'comparator' => 'isEqual']]]])
 | |
|         ->create();
 | |
| 
 | |
|     $this->patchJson(route('form.update', ['form' => $form]), $payload);
 | |
|     $this->assertTrue($form->fresh()->needs_prevention);
 | |
|     $this->assertEquals('lorem ipsum', $form->fresh()->prevention_text->blocks[0]['data']['text']);
 | |
|     $this->assertEquals(['mode' => 'all', 'ifs' => [['field' => 'vorname', 'value' => 'Max', 'comparator' => 'isEqual']]], $form->fresh()->prevention_conditions->toArray());
 | |
| });
 |