Your IP : 216.73.216.43


Current Path : /var/www/surf/TYPO3/vendor/mask/mask/Tests/Unit/Migrations/
Upload File :
Current File : /var/www/surf/TYPO3/vendor/mask/mask/Tests/Unit/Migrations/ConfigCleanerMigrationTest.php

<?php

declare(strict_types=1);

/*
 * This file is part of the TYPO3 CMS project.
 *
 * It is free software; you can redistribute it and/or modify it under
 * the terms of the GNU General Public License, either version 2
 * of the License, or any later version.
 *
 * For the full copyright and license information, please read the
 * LICENSE.txt file that was distributed with this source code.
 *
 * The TYPO3 project - inspiring people to share!
 */

namespace MASK\Mask\Tests\Unit\Migrations;

use MASK\Mask\Definition\TableDefinitionCollection;
use MASK\Mask\Migrations\ConfigCleanerMigration;
use MASK\Mask\Tests\Unit\ConfigurationLoader\FakeConfigurationLoader;
use MASK\Mask\Tests\Unit\PackageManagerTrait;
use TYPO3\TestingFramework\Core\Unit\UnitTestCase;

class ConfigCleanerMigrationTest extends UnitTestCase
{
    use PackageManagerTrait;
    protected bool $resetSingletonInstances = true;

    /**
     * @test
     */
    public function cleanupConfig(): void
    {
        $this->registerPackageManager();

        $input = [
            'tt_content' => [
                'elements' => [
                    'element1' => [
                        'key' => 'element1',
                        'label' => 'Element 1',
                        'labels' => [
                            'RTE Field',
                        ],
                        'columns' => [
                            'tx_mask_rte',
                        ],
                    ],
                ],
                'tca' => [
                    'tx_mask_rte' => [
                        'key' => 'rte',
                        'config' => [
                            'type' => 'text',
                            'foo' => 'bar',
                            'enableRichtext' => 1,
                            'eval' => 'unique',
                        ],
                        'type' => 'richtext',
                        'exclude' => '1',
                        'defaultExtras' => 'richtext[]:rte_transform[mode=ts_css]',
                    ],
                ],
            ],
        ];

        $expected = [
            'tt_content' => [
                'elements' => [
                    'element1' => [
                        'key' => 'element1',
                        'label' => 'Element 1',
                        'description' => '',
                        'shortLabel' => '',
                        'color' => '',
                        'icon' => '',
                        'descriptions' => [],
                        'columns' => [
                            'tx_mask_rte',
                        ],
                        'labels' => [
                            'RTE Field',
                        ],
                        'sorting' => 0,
                        'colorOverlay' => '',
                        'iconOverlay' => '',
                    ],
                ],
                'tca' => [
                    'tx_mask_rte' => [
                        'config' => [
                            'type' => 'text',
                            'enableRichtext' => 1,
                            'eval' => 'unique',
                        ],
                        'key' => 'rte',
                        'fullKey' => 'tx_mask_rte',
                        'type' => 'richtext',
                    ],
                ],
            ],
        ];

        $tableDefinitionCollection = TableDefinitionCollection::createFromArray($input);
        $configCleanerMigration = new ConfigCleanerMigration(new FakeConfigurationLoader());
        self::assertEquals($expected, $configCleanerMigration->migrate($tableDefinitionCollection)->toArray(false));
    }
}