You are here

public function ImageCachePresetTest::providerSource in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php \Drupal\Tests\image\Kernel\Plugin\migrate\source\d6\ImageCachePresetTest::providerSource()
  2. 10 core/modules/image/tests/src/Kernel/Plugin/migrate/source/d6/ImageCachePresetTest.php \Drupal\Tests\image\Kernel\Plugin\migrate\source\d6\ImageCachePresetTest::providerSource()

The data provider.

Return value

array Array of data sets to test, each of which is a numerically indexed array with the following elements:

  • An array of source data, which can be optionally processed and set up by subclasses.
  • An array of expected result rows.
  • (optional) The number of result rows the plugin under test is expected to return. If this is not a numeric value, the plugin will not be counted.
  • (optional) Array of configuration options for the plugin under test.

Overrides MigrateSourceTestBase::providerSource

See also

\Drupal\Tests\migrate\Kernel\MigrateSourceTestBase::testSource

File

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

Class

ImageCachePresetTest
Tests the d6_imagecache_presets source plugin.

Namespace

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

Code

public function providerSource() {
  $tests = [];

  // The source data.
  $tests[0]['source_data']['imagecache_preset'] = [
    [
      'presetid' => '1',
      'presetname' => 'slackjaw_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' => 'slackjaw_boys',
      'actions' => [
        [
          'actionid' => '3',
          'presetid' => '1',
          'weight' => '0',
          'module' => 'imagecache',
          'action' => 'imagecache_scale_and_crop',
          'data' => [
            'width' => '100%',
            'height' => '100%',
          ],
        ],
      ],
    ],
  ];
  return $tests;
}