class UserPictureInstanceTest

Same name and namespace in other branches
  1. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest
  2. 10 core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest
  3. 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/UserPictureInstanceTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\UserPictureInstanceTest

Tests the user_picture_instance source plugin.

@covers \Drupal\user\Plugin\migrate\source\UserPictureInstance
@group user

Hierarchy

Expanded class hierarchy of UserPictureInstanceTest

File

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

Namespace

Drupal\Tests\user\Kernel\Plugin\migrate\source
View source
class UserPictureInstanceTest extends MigrateSqlSourceTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'user',
    'migrate_drupal',
  ];
  
  /**
   * {@inheritdoc}
   */
  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.