function UserPictureInstanceTest::providerSource

Same name in other branches
  1. 9 core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()
  2. 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()
  3. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest::providerSource()

File

core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php, line 25

Class

UserPictureInstanceTest
Tests the user_picture_instance source plugin.

Namespace

Drupal\Tests\user\Kernel\Plugin\migrate\source

Code

public static 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.