TYPO3CMS
9.5
Main Page
Related Pages
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Functions
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
Variables
$
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
Files
File List
File Members
All
$
d
e
r
u
Functions
Variables
$
e
r
Examples
•
All
Classes
Namespaces
Files
Functions
Variables
Pages
FormEngineUtilityTest.php
Go to the documentation of this file.
1
<?php
2
namespace
TYPO3\CMS\Backend\Tests\Unit\Form\Utility
;
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
17
use
TYPO3\CMS\Backend\Form\Utility\FormEngineUtility
;
18
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
19
23
class
FormEngineUtilityTest
extends
UnitTestCase
24
{
28
public
function
databaseRowCompatibilityKeepsSimpleValue
()
29
{
30
$input = [
31
'uid'
=> 42,
32
'title'
=>
'aTitle'
,
33
];
34
$expected = $input;
35
$this->assertEquals($expected,
FormEngineUtility::databaseRowCompatibility
($input));
36
}
37
41
public
function
databaseRowCompatibilityImplodesSimpleArray
()
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
58
public
function
databaseRowCompatibilityImplodesSelectArrayWithValuesAtSecondPosition
()
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
}
TYPO3\CMS\Backend\Form\Utility\FormEngineUtility\databaseRowCompatibility
static array databaseRowCompatibility(array $row)
Definition:
FormEngineUtility.php:193
TYPO3\CMS\Backend\Tests\Unit\Form\Utility\FormEngineUtilityTest\databaseRowCompatibilityKeepsSimpleValue
databaseRowCompatibilityKeepsSimpleValue()
Definition:
FormEngineUtilityTest.php:28
TYPO3\CMS\Backend\Form\Utility\FormEngineUtility
Definition:
FormEngineUtility.php:38
TYPO3\CMS\Backend\Tests\Unit\Form\Utility\FormEngineUtilityTest\databaseRowCompatibilityImplodesSimpleArray
databaseRowCompatibilityImplodesSimpleArray()
Definition:
FormEngineUtilityTest.php:41
TYPO3\CMS\Backend\Tests\Unit\Form\Utility
Definition:
FormEngineUtilityTest.php:2
TYPO3\CMS\Backend\Tests\Unit\Form\Utility\FormEngineUtilityTest\databaseRowCompatibilityImplodesSelectArrayWithValuesAtSecondPosition
databaseRowCompatibilityImplodesSelectArrayWithValuesAtSecondPosition()
Definition:
FormEngineUtilityTest.php:58
TYPO3\CMS\Backend\Tests\Unit\Form\Utility\FormEngineUtilityTest
Definition:
FormEngineUtilityTest.php:24
doxygen
typo3
sysext
backend
Tests
Unit
Form
Utility
FormEngineUtilityTest.php
Generated on Tue Oct 5 2021 01:57:00 for TYPO3CMS by
1.8.18