You are here

ProfileFieldCheckRequirementsTest.php in Drupal 10

File

core/modules/user/tests/src/Kernel/Migrate/d7/ProfileFieldCheckRequirementsTest.php
View source
<?php

namespace Drupal\Tests\user\Kernel\Migrate\d7;

use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
use Drupal\migrate\Exception\RequirementsException;

/**
 * Tests check requirements for profile_field source plugin.
 *
 * @group user
 */
class ProfileFieldCheckRequirementsTest extends MigrateDrupal7TestBase {

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $this->sourceDatabase
      ->schema()
      ->dropTable('profile_field');
  }

  /**
   * Tests exception is thrown when profile_fields tables do not exist.
   */
  public function testCheckRequirements() {
    $this
      ->expectException(RequirementsException::class);
    $this
      ->expectExceptionMessage('Profile module not enabled on source site');
    $this
      ->getMigration('user_profile_field')
      ->getSourcePlugin()
      ->checkRequirements();
  }

}

Classes

Namesort descending Description
ProfileFieldCheckRequirementsTest Tests check requirements for profile_field source plugin.