function UserTest::providerSource

Same name in this branch
  1. 10 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d6\UserTest::providerSource()
Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d6\UserTest::providerSource()
  2. 9 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d7\UserTest::providerSource()
  3. 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d6\UserTest::providerSource()
  4. 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d7\UserTest::providerSource()
  5. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d6\UserTest::providerSource()
  6. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php \Drupal\Tests\user\Kernel\Plugin\migrate\source\d7\UserTest::providerSource()

File

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

Class

UserTest
Tests the d7_user source plugin.

Namespace

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

Code

public static function providerSource() {
  $tests = [];
  // The source data.
  $tests[0]['source_data']['field_config'] = [
    [
      'id' => '11',
      'translatable' => '0',
    ],
  ];
  $tests[0]['source_data']['field_config_instance'] = [
    [
      'id' => '33',
      'field_id' => '11',
      'field_name' => 'field_file',
      'entity_type' => 'user',
      'bundle' => 'user',
      'data' => 'a:0:{}',
      'deleted' => '0',
    ],
  ];
  $tests[0]['source_data']['field_data_field_file'] = [
    [
      'entity_type' => 'user',
      'bundle' => 'user',
      'deleted' => 0,
      'entity_id' => 2,
      'revision_id' => NULL,
      'language' => 'und',
      'delta' => 0,
      'field_file_fid' => 99,
      'field_file_display' => 1,
      'field_file_description' => 'None',
    ],
    [
      'entity_type' => 'user',
      'bundle' => 'user',
      'deleted' => 0,
      'entity_id' => 3,
      'revision_id' => NULL,
      'language' => 'und',
      'delta' => 0,
      'field_file_fid' => 42,
      'field_file_display' => 1,
      'field_file_description' => 'None',
    ],
  ];
  $tests[0]['source_data']['role'] = [
    [
      'rid' => 2,
      'name' => 'authenticated user',
      'weight' => 0,
    ],
  ];
  $tests[0]['source_data']['users'] = [
    [
      'uid' => '2',
      'name' => 'Odo',
      'pass' => 'password',
      'mail' => 'odo@local.host',
      'theme' => '',
      'signature' => '',
      'signature_format' => 'filtered_html',
      'created' => '1432750741',
      'access' => '0',
      'login' => '0',
      'status' => '1',
      'timezone' => 'America/Chicago',
      'language' => '',
      'picture' => '0',
      'init' => 'odo@local.host',
      'data' => 'a:1:{s:7:"contact";i:1;}',
    ],
    [
      'uid' => '3',
      'name' => 'foo',
      'pass' => 'password',
      'mail' => 'foo@local.host',
      'theme' => '',
      'signature' => '',
      'signature_format' => 'filtered_html',
      'created' => '1647752102',
      'access' => '0',
      'login' => '0',
      'status' => '1',
      'timezone' => 'America/Chicago',
      'language' => '',
      'picture' => '0',
      'init' => 'foo@local.host',
      'data' => NULL,
    ],
  ];
  $tests[0]['source_data']['users_roles'] = [
    [
      'uid' => 2,
      'rid' => 2,
    ],
    [
      'uid' => 3,
      'rid' => 2,
    ],
  ];
  // The expected results.
  $tests[0]['expected_data'] = [
    [
      'uid' => '2',
      'name' => 'Odo',
      'pass' => 'password',
      'mail' => 'odo@local.host',
      'signature' => '',
      'signature_format' => 'filtered_html',
      'created' => '1432750741',
      'access' => '0',
      'login' => '0',
      'status' => '1',
      'timezone' => 'America/Chicago',
      'language' => '',
      'picture' => '0',
      'init' => 'odo@local.host',
      'roles' => [
        2,
      ],
      'data' => [
        'contact' => 1,
      ],
      'field_file' => [
        [
          'fid' => 99,
          'display' => 1,
          'description' => 'None',
        ],
      ],
    ],
    [
      'uid' => '3',
      'name' => 'foo',
      'pass' => 'password',
      'mail' => 'foo@local.host',
      'signature' => '',
      'signature_format' => 'filtered_html',
      'created' => '1647752102',
      'access' => '0',
      'login' => '0',
      'status' => '1',
      'timezone' => 'America/Chicago',
      'language' => '',
      'picture' => '0',
      'init' => 'foo@local.host',
      'roles' => [
        2,
      ],
      'data' => FALSE,
      'field_file' => [
        [
          'fid' => 42,
          'display' => 1,
          'description' => 'None',
        ],
      ],
    ],
  ];
  return $tests;
}

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