MigrateTrackerUserTest.php

Same filename and directory in other branches
  1. 9 core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php
  2. 8.9.x core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php
  3. 11.x core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php

Namespace

Drupal\Tests\tracker\Kernel\Migrate\d7

File

core/modules/tracker/tests/src/Kernel/Migrate/d7/MigrateTrackerUserTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\tracker\Kernel\Migrate\d7;

use Drupal\Core\Database\Database;

/**
 * Tests migration of tracker_user.
 *
 * @group tracker
 * @group legacy
 */
class MigrateTrackerUserTest extends MigrateDrupalTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'menu_ui',
    'node',
    'text',
    'tracker',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->installEntitySchema('node');
    $this->installConfig(static::$modules);
    $this->installSchema('node', [
      'node_access',
    ]);
    $this->installSchema('tracker', [
      'tracker_node',
      'tracker_user',
    ]);
    $this->migrateContentTypes();
    $this->migrateUsers(FALSE);
    $this->executeMigrations([
      'd7_node',
      'd7_tracker_node',
    ]);
  }
  
  /**
   * Tests migration of tracker user table.
   */
  public function testMigrateTrackerUser() : void {
    $connection = Database::getConnection('default', 'migrate');
    $num_rows = $connection->select('tracker_user', 'tn')
      ->fields('tu', [
      'nid',
      'uid',
      'published',
      'changed',
    ])
      ->countQuery()
      ->execute()
      ->fetchField();
    $this->assertSame('1', $num_rows);
    $tracker_nodes = $connection->select('tracker_user', 'tu')
      ->fields('tu', [
      'nid',
      'uid',
      'published',
      'changed',
    ])
      ->execute();
    $row = $tracker_nodes->fetchAssoc();
    $this->assertSame('1', $row['nid']);
    $this->assertSame('2', $row['uid']);
    $this->assertSame('1', $row['published']);
    $this->assertSame('1421727536', $row['changed']);
  }

}

Classes

Title Deprecated Summary
MigrateTrackerUserTest Tests migration of tracker_user.

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