function UserPictureInstanceTest::providerSource
Same name in other branches
- 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()
- 10 core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()
- 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()
Overrides MigrateSourceTestBase::providerSource
File
-
core/
modules/ user/ tests/ src/ Kernel/ Plugin/ migrate/ source/ UserPictureInstanceTest.php, line 23
Class
- UserPictureInstanceTest
- Tests the user_picture_instance source plugin.
Namespace
Drupal\Tests\user\Kernel\Plugin\migrate\sourceCode
public function providerSource() {
$tests = [];
// The source data.
$tests[0]['source_data']['variable'] = [
[
'name' => 'file_directory',
'value' => serialize(NULL),
],
[
'name' => 'user_picture_file_size',
'value' => serialize(128),
],
[
'name' => 'user_picture_dimensions',
'value' => serialize('128x128'),
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'id' => '',
'file_directory' => 'pictures',
'max_filesize' => '128KB',
'max_resolution' => '128x128',
],
];
return $tests;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.