Passed
Push — master ( f6f4dd...ba7f02 )
by Benjamin
02:14
created

ContentObjectGetDataHookTest::testHook()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 30
Code Lines 23

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 23
nc 1
nop 0
dl 0
loc 30
rs 9.552
c 0
b 0
f 0
1
<?php
2
declare(strict_types = 1);
3
namespace TYPO3\CMS\Fluid\Tests\Functional\Hooks;
4
5
/*
6
 * This file is part of the TYPO3 CMS project.
7
 *
8
 * It is free software; you can redistribute it and/or modify it under
9
 * the terms of the GNU General Public License, either version 2
10
 * of the License, or any later version.
11
 *
12
 * For the full copyright and license information, please read the
13
 * LICENSE.txt file that was distributed with this source code.
14
 *
15
 * The TYPO3 project - inspiring people to share!
16
 */
17
18
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
19
use TYPO3\CMS\Frontend\Controller\TypoScriptFrontendController;
20
use TYPO3\TestingFramework\Core\Functional\FunctionalTestCase;
21
22
class ContentObjectGetDataHookTest extends FunctionalTestCase
23
{
24
    /**
25
     * @var array
26
     */
27
    protected $testExtensionsToLoad = ['typo3conf/ext/qbtools'];
28
29
    /**
30
     * @var array
31
     */
32
    protected $coreExtensionsToLoad = ['fluid'];
33
34
    public function testHook()
35
    {
36
        $flexform = <<<EOT
37
<?xml version="1.0" encoding="utf-8" standalone="yes" ?>
38
<T3FlexForms>
39
    <data>
40
        <sheet index="sDEF">
41
            <language index="lDEF">
42
                <field index="settings.test">
43
                    <value index="vDEF">foobar</value>
44
                </field>
45
            </language>
46
        </sheet>
47
    </data>
48
</T3FlexForms>
49
EOT;
50
51
        $record = [
52
            'pi_flexform' => $flexform,
53
        ];
54
        $conf = [
55
            'data' => 'qbtools_flexform_field : settings.test',
56
        ];
57
58
        $typoScriptFrontendController = new TypoScriptFrontendController(null, 1, 0);
59
        $cObj = new ContentObjectRenderer($typoScriptFrontendController);
60
        $cObj->start($record, 'tt_content');
61
        $res = $cObj->cObjGetSingle('TEXT', $conf);
62
63
        $this->assertEquals('foobar', $res);
64
    }
65
}
66