function SqlBaseTest::testMapJoinable

Same name and namespace in other branches
  1. 9 core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\SqlBaseTest::testMapJoinable()
  2. 8.9.x core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\SqlBaseTest::testMapJoinable()
  3. 11.x core/modules/migrate/tests/src/Unit/SqlBaseTest.php \Drupal\Tests\migrate\Unit\SqlBaseTest::testMapJoinable()

Tests that the ID map is joinable.

@dataProvider sqlBaseTestProvider

Parameters

bool $expected_result: The expected result.

bool $id_map_is_sql: TRUE if we want getIdMap() to return an instance of Sql.

bool $with_id_map: TRUE if we want the ID map to have a valid map of IDs.

array $source_options: (optional) An array of connection options for the source connection. Defaults to an empty array.

array $id_map_options: (optional) An array of connection options for the ID map connection. Defaults to an empty array.

File

core/modules/migrate/tests/src/Unit/SqlBaseTest.php, line 36

Class

SqlBaseTest
Tests the SqlBase class.

Namespace

Drupal\Tests\migrate\Unit

Code

public function testMapJoinable($expected_result, $id_map_is_sql, $with_id_map, $source_options = [], $id_map_options = []) : void {
  // Setup a connection object.
  $source_connection = $this->getMockBuilder('Drupal\\Core\\Database\\Connection')
    ->disableOriginalConstructor()
    ->getMock();
  $source_connection->expects($id_map_is_sql && $with_id_map ? $this->once() : $this->never())
    ->method('getConnectionOptions')
    ->willReturn($source_options);
  // Setup the ID map connection.
  $id_map_connection = $this->getMockBuilder('Drupal\\Core\\Database\\Connection')
    ->disableOriginalConstructor()
    ->getMock();
  $id_map_connection->expects($id_map_is_sql && $with_id_map ? $this->once() : $this->never())
    ->method('getConnectionOptions')
    ->willReturn($id_map_options);
  // Setup the Sql object.
  $sql = $this->getMockBuilder('Drupal\\migrate\\Plugin\\migrate\\id_map\\Sql')
    ->disableOriginalConstructor()
    ->getMock();
  $sql->expects($id_map_is_sql && $with_id_map ? $this->once() : $this->never())
    ->method('getDatabase')
    ->willReturn($id_map_connection);
  // Setup a migration entity.
  $migration = $this->createMock(MigrationInterface::class);
  $migration->expects($with_id_map ? $this->once() : $this->never())
    ->method('getIdMap')
    ->willReturn($id_map_is_sql ? $sql : NULL);
  // Create our SqlBase test class.
  $sql_base = new TestSqlBase();
  $sql_base->setMigration($migration);
  $sql_base->setDatabase($source_connection);
  // Configure the idMap to make the check in mapJoinable() pass.
  if ($with_id_map) {
    $sql_base->setIds([
      'uid' => [
        'type' => 'integer',
        'alias' => 'u',
      ],
    ]);
  }
  $this->assertEquals($expected_result, $sql_base->mapJoinable());
}

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