UserTest.php

Same filename in this branch
  1. 8.9.x core/modules/jsonapi/tests/src/Functional/UserTest.php
  2. 8.9.x core/modules/user/tests/src/Unit/Plugin/Core/Entity/UserTest.php
  3. 8.9.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php
Same filename and directory in other branches
  1. 9 core/modules/jsonapi/tests/src/Functional/UserTest.php
  2. 9 core/modules/user/tests/src/Unit/Plugin/Core/Entity/UserTest.php
  3. 9 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php
  4. 9 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php
  5. 10 core/modules/jsonapi/tests/src/Functional/UserTest.php
  6. 10 core/modules/user/tests/src/Unit/Plugin/Core/Entity/UserTest.php
  7. 10 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php
  8. 10 core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php
  9. 11.x core/modules/jsonapi/tests/src/Functional/UserTest.php
  10. 11.x core/modules/user/tests/src/Unit/Plugin/Core/Entity/UserTest.php
  11. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d6/UserTest.php
  12. 11.x core/modules/user/tests/src/Kernel/Plugin/migrate/source/d7/UserTest.php

Namespace

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

File

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

View source
<?php

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

use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;

/**
 * Tests the d7_user source plugin.
 *
 * @covers \Drupal\user\Plugin\migrate\source\d7\User
 * @group user
 */
class UserTest extends MigrateSqlSourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    public static $modules = [
        'user',
        'migrate_drupal',
    ];
    
    /**
     * {@inheritdoc}
     */
    public 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',
            ],
        ];
        $tests[0]['source_data']['role'] = [
            [
                'rid' => 2,
                'name' => 'authenticated user',
                'weight' => 0,
            ],
        ];
        $tests[0]['source_data']['users'] = [
            [
                'uid' => '2',
                'name' => 'Odo',
                'pass' => '$S$DVpvPItXvnsmF3giVEe7Jy2lG.SCoEs8uKwpHsyPvdeNAaNZYxZ8',
                '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;}',
            ],
        ];
        $tests[0]['source_data']['users_roles'] = [
            [
                'uid' => 2,
                'rid' => 2,
            ],
        ];
        // The expected results.
        $tests[0]['expected_data'] = [
            [
                'uid' => '2',
                'name' => 'Odo',
                'pass' => '$S$DVpvPItXvnsmF3giVEe7Jy2lG.SCoEs8uKwpHsyPvdeNAaNZYxZ8',
                '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',
                    ],
                ],
            ],
        ];
        return $tests;
    }

}

Classes

Title Deprecated Summary
UserTest Tests the d7_user source plugin.

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