TYPO3  7.6
FormEngineUtilityTest.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Backend\Tests\Unit\Form\FormDataProvider;
3 
4 /*
5  * This file is part of the TYPO3 CMS project.
6  *
7  * It is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU General Public License, either version 2
9  * of the License, or any later version.
10  *
11  * For the full copyright and license information, please read the
12  * LICENSE.txt file that was distributed with this source code.
13  *
14  * The TYPO3 project - inspiring people to share!
15  */
16 
18 use TYPO3\CMS\Core\Tests\UnitTestCase;
19 
23 class FormEngineUtilityTest extends UnitTestCase
24 {
29  {
30  $input = [
31  'uid' => 42,
32  'title' => 'aTitle',
33  ];
34  $expected = $input;
35  $this->assertEquals($expected, FormEngineUtility::databaseRowCompatibility($input));
36  }
37 
42  {
43  $input = [
44  'uid' => 42,
45  'simpleArray' => [
46  0 => 1,
47  1 => 2,
48  ],
49  ];
50  $expected = $input;
51  $expected['simpleArray'] = '1,2';
52  $this->assertEquals($expected, FormEngineUtility::databaseRowCompatibility($input));
53  }
54 
59  {
60  $input = [
61  'uid' => 42,
62  'simpleArray' => [
63  0 => [
64  0 => 'aLabel',
65  1 => 'aValue',
66  ],
67  1 => [
68  0 => 'anotherLabel',
69  1 => 'anotherValue',
70  ],
71  ],
72  ];
73  $expected = $input;
74  $expected['simpleArray'] = 'aValue,anotherValue';
75  $this->assertEquals($expected, FormEngineUtility::databaseRowCompatibility($input));
76  }
77 }