ImageCachePresetTest.php

Same filename in other branches
  1. 9 core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php
  2. 8.9.x core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php
  3. 10 core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php

Namespace

Drupal\Tests\image\Kernel\Plugin\migrate\source\d6

File

core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\image\Kernel\Plugin\migrate\source\d6;

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
// cspell:ignore actionid imagecache presetid presetname

/**
 * Tests the d6_imagecache_presets source plugin.
 *
 * @covers \Drupal\image\Plugin\migrate\source\d6\ImageCachePreset
 *
 * @group image
 */
class ImageCachePresetTest extends MigrateSqlSourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'image',
        'migrate_drupal',
    ];
    
    /**
     * {@inheritdoc}
     */
    public static function providerSource() {
        $tests = [];
        // The source data.
        $tests[0]['source_data']['imagecache_preset'] = [
            [
                'presetid' => '1',
                'presetname' => 'slack_jaw_boys',
            ],
        ];
        $tests[0]['source_data']['imagecache_action'] = [
            [
                'actionid' => '3',
                'presetid' => '1',
                'weight' => '0',
                'module' => 'imagecache',
                'action' => 'imagecache_scale_and_crop',
                'data' => 'a:2:{s:5:"width";s:4:"100%";s:6:"height";s:4:"100%";}',
            ],
        ];
        // The expected results.
        $tests[0]['expected_data'] = [
            [
                'presetid' => '1',
                'presetname' => 'slack_jaw_boys',
                'actions' => [
                    [
                        'actionid' => '3',
                        'presetid' => '1',
                        'weight' => '0',
                        'module' => 'imagecache',
                        'action' => 'imagecache_scale_and_crop',
                        'data' => [
                            'width' => '100%',
                            'height' => '100%',
                        ],
                    ],
                ],
            ],
        ];
        return $tests;
    }

}

Classes

Title Deprecated Summary
ImageCachePresetTest Tests the d6_imagecache_presets source plugin.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.