You are here

class ContentEntityTest in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest

Tests the entity content source plugin.

@group migrate_drupal

Hierarchy

Expanded class hierarchy of ContentEntityTest

File

core/modules/migrate_drupal/tests/src/Kernel/Plugin/migrate/source/ContentEntityTest.php, line 29

Namespace

Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source
View source
class ContentEntityTest extends KernelTestBase {
  use EntityReferenceTestTrait;
  use MediaTypeCreationTrait;

  /**
   * {@inheritdoc}
   */
  public static $modules = [
    'user',
    'migrate',
    'migrate_drupal',
    'system',
    'node',
    'taxonomy',
    'field',
    'file',
    'image',
    'media',
    'media_test_source',
    'text',
    'filter',
    'language',
    'content_translation',
  ];

  /**
   * The bundle used in this test.
   *
   * @var string
   */
  protected $bundle = 'article';

  /**
   * The name of the field used in this test.
   *
   * @var string
   */
  protected $fieldName = 'field_entity_reference';

  /**
   * The vocabulary ID.
   *
   * @var string
   */
  protected $vocabulary = 'fruit';

  /**
   * The test user.
   *
   * @var \Drupal\user\Entity\User
   */
  protected $user;

  /**
   * The migration plugin manager.
   *
   * @var \Drupal\migrate\Plugin\MigrationPluginManagerInterface
   */
  protected $migrationPluginManager;

  /**
   * {@inheritdoc}
   */
  protected function setUp() {
    parent::setUp();
    $this
      ->installEntitySchema('node');
    $this
      ->installEntitySchema('file');
    $this
      ->installEntitySchema('media');
    $this
      ->installEntitySchema('taxonomy_term');
    $this
      ->installEntitySchema('taxonomy_vocabulary');
    $this
      ->installEntitySchema('user');
    $this
      ->installSchema('system', [
      'sequences',
    ]);
    $this
      ->installSchema('user', 'users_data');
    $this
      ->installSchema('file', 'file_usage');
    $this
      ->installSchema('node', [
      'node_access',
    ]);
    $this
      ->installConfig($this->modules);
    ConfigurableLanguage::createFromLangcode('fr')
      ->save();

    // Create article content type.
    $node_type = NodeType::create([
      'type' => $this->bundle,
      'name' => 'Article',
    ]);
    $node_type
      ->save();

    // Create a vocabulary.
    $vocabulary = Vocabulary::create([
      'name' => $this->vocabulary,
      'description' => $this->vocabulary,
      'vid' => $this->vocabulary,
      'langcode' => LanguageInterface::LANGCODE_NOT_SPECIFIED,
    ]);
    $vocabulary
      ->save();

    // Create a term reference field on node.
    $this
      ->createEntityReferenceField('node', $this->bundle, $this->fieldName, 'Term reference', 'taxonomy_term', 'default', [
      'target_bundles' => [
        $this->vocabulary,
      ],
    ], FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);

    // Create a term reference field on user.
    $this
      ->createEntityReferenceField('user', 'user', $this->fieldName, 'Term reference', 'taxonomy_term', 'default', [
      'target_bundles' => [
        $this->vocabulary,
      ],
    ], FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED);

    // Create some data.
    $this->user = User::create([
      'name' => 'user123',
      'uid' => 1,
      'mail' => 'example@example.com',
    ]);
    $this->user
      ->save();
    $term = Term::create([
      'vid' => $this->vocabulary,
      'name' => 'Apples',
      'uid' => $this->user
        ->id(),
    ]);
    $term
      ->save();
    $this->user
      ->set($this->fieldName, $term
      ->id());
    $this->user
      ->save();
    $node = Node::create([
      'type' => $this->bundle,
      'title' => 'Apples',
      $this->fieldName => $term
        ->id(),
      'uid' => $this->user
        ->id(),
    ]);
    $node
      ->save();
    $node
      ->addTranslation('fr', [
      'title' => 'Pommes',
      $this->fieldName => $term
        ->id(),
    ])
      ->save();
    $this->migrationPluginManager = $this->container
      ->get('plugin.manager.migration');
  }

  /**
   * Tests the constructor for missing entity_type.
   */
  public function testConstructorEntityTypeMissing() {
    $migration = $this
      ->prophesize(MigrationInterface::class)
      ->reveal();
    $configuration = [];
    $plugin_definition = [
      'entity_type' => '',
    ];
    $this
      ->expectException(InvalidPluginDefinitionException::class);
    $this
      ->expectExceptionMessage('Missing required "entity_type" definition.');
    ContentEntity::create($this->container, $configuration, 'content_entity', $plugin_definition, $migration);
  }

  /**
   * Tests the constructor for non content entity.
   */
  public function testConstructorNonContentEntity() {
    $migration = $this
      ->prophesize(MigrationInterface::class)
      ->reveal();
    $configuration = [];
    $plugin_definition = [
      'entity_type' => 'node_type',
    ];
    $this
      ->expectException(InvalidPluginDefinitionException::class);
    $this
      ->expectExceptionMessage('The entity type (node_type) is not supported. The "content_entity" source plugin only supports content entities.');
    ContentEntity::create($this->container, $configuration, 'content_entity:node_type', $plugin_definition, $migration);
  }

  /**
   * Tests the constructor for not bundleable entity.
   */
  public function testConstructorNotBundable() {
    $migration = $this
      ->prophesize(MigrationInterface::class)
      ->reveal();
    $configuration = [
      'bundle' => 'foo',
    ];
    $plugin_definition = [
      'entity_type' => 'user',
    ];
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('A bundle was provided but the entity type (user) is not bundleable');
    ContentEntity::create($this->container, $configuration, 'content_entity:user', $plugin_definition, $migration);
  }

  /**
   * Tests the constructor for invalid entity bundle.
   */
  public function testConstructorInvalidBundle() {
    $migration = $this
      ->prophesize(MigrationInterface::class)
      ->reveal();
    $configuration = [
      'bundle' => 'foo',
    ];
    $plugin_definition = [
      'entity_type' => 'node',
    ];
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('The provided bundle (foo) is not valid for the (node) entity type.');
    ContentEntity::create($this->container, $configuration, 'content_entity:node', $plugin_definition, $migration);
  }

  /**
   * Helper to assert IDs structure.
   *
   * @param \Drupal\migrate\Plugin\MigrateSourceInterface $source
   *   The source plugin.
   * @param array $configuration
   *   The source plugin configuration (Nope, no getter available).
   */
  protected function assertIds(MigrateSourceInterface $source, array $configuration) {
    $ids = $source
      ->getIds();
    list(, $entity_type_id) = explode(PluginBase::DERIVATIVE_SEPARATOR, $source
      ->getPluginId());
    $entity_type = \Drupal::entityTypeManager()
      ->getDefinition($entity_type_id);
    $this
      ->assertArrayHasKey($entity_type
      ->getKey('id'), $ids);
    $ids_count_expected = 1;
    if ($entity_type
      ->isTranslatable()) {
      $ids_count_expected++;
      $this
        ->assertArrayHasKey($entity_type
        ->getKey('langcode'), $ids);
    }
    if ($entity_type
      ->isRevisionable() && $configuration['add_revision_id']) {
      $ids_count_expected++;
      $this
        ->assertArrayHasKey($entity_type
        ->getKey('revision'), $ids);
    }
    $this
      ->assertCount($ids_count_expected, $ids);
  }

  /**
   * Tests user source plugin.
   *
   * @dataProvider migrationConfigurationProvider
   */
  public function testUserSource(array $configuration) {
    $migration = $this->migrationPluginManager
      ->createStubMigration($this
      ->migrationDefinition('content_entity:user', $configuration));
    $user_source = $migration
      ->getSourcePlugin();
    $this
      ->assertSame('users', $user_source
      ->__toString());
    if (!$configuration['include_translations']) {
      $this
        ->assertEquals(1, $user_source
        ->count());
    }
    $this
      ->assertIds($user_source, $configuration);
    $fields = $user_source
      ->fields();
    $this
      ->assertArrayHasKey('name', $fields);
    $this
      ->assertArrayHasKey('pass', $fields);
    $this
      ->assertArrayHasKey('mail', $fields);
    $this
      ->assertArrayHasKey('uid', $fields);
    $this
      ->assertArrayHasKey('roles', $fields);
    $user_source
      ->rewind();
    $values = $user_source
      ->current()
      ->getSource();
    $this
      ->assertEquals('example@example.com', $values['mail'][0]['value']);
    $this
      ->assertEquals('user123', $values['name'][0]['value']);
    $this
      ->assertEquals(1, $values['uid']);
    $this
      ->assertEquals(1, $values['field_entity_reference'][0]['target_id']);
  }

  /**
   * Tests file source plugin.
   *
   * @dataProvider migrationConfigurationProvider
   */
  public function testFileSource(array $configuration) {
    $file = File::create([
      'filename' => 'foo.txt',
      'uid' => $this->user
        ->id(),
      'uri' => 'public://foo.txt',
    ]);
    $file
      ->save();
    $migration = $this->migrationPluginManager
      ->createStubMigration($this
      ->migrationDefinition('content_entity:file', $configuration));
    $file_source = $migration
      ->getSourcePlugin();
    $this
      ->assertSame('files', $file_source
      ->__toString());
    if (!$configuration['include_translations']) {
      $this
        ->assertEquals(1, $file_source
        ->count());
    }
    $this
      ->assertIds($file_source, $configuration);
    $fields = $file_source
      ->fields();
    $this
      ->assertArrayHasKey('fid', $fields);
    $this
      ->assertArrayHasKey('filemime', $fields);
    $this
      ->assertArrayHasKey('filename', $fields);
    $this
      ->assertArrayHasKey('uid', $fields);
    $this
      ->assertArrayHasKey('uri', $fields);
    $file_source
      ->rewind();
    $values = $file_source
      ->current()
      ->getSource();
    $this
      ->assertEquals('text/plain', $values['filemime'][0]['value']);
    $this
      ->assertEquals('public://foo.txt', $values['uri'][0]['value']);
    $this
      ->assertEquals('foo.txt', $values['filename'][0]['value']);
    $this
      ->assertEquals(1, $values['fid']);
  }

  /**
   * Tests node source plugin.
   *
   * @dataProvider migrationConfigurationProvider
   */
  public function testNodeSource(array $configuration) {
    $configuration += [
      'bundle' => $this->bundle,
    ];
    $migration = $this->migrationPluginManager
      ->createStubMigration($this
      ->migrationDefinition('content_entity:node', $configuration));
    $node_source = $migration
      ->getSourcePlugin();
    $this
      ->assertSame('content items', $node_source
      ->__toString());
    $this
      ->assertIds($node_source, $configuration);
    $fields = $node_source
      ->fields();
    $this
      ->assertArrayHasKey('nid', $fields);
    $this
      ->assertArrayHasKey('vid', $fields);
    $this
      ->assertArrayHasKey('title', $fields);
    $this
      ->assertArrayHasKey('uid', $fields);
    $this
      ->assertArrayHasKey('sticky', $fields);
    $node_source
      ->rewind();
    $values = $node_source
      ->current()
      ->getSource();
    $this
      ->assertEquals($this->bundle, $values['type'][0]['target_id']);
    $this
      ->assertEquals(1, $values['nid']);
    if ($configuration['add_revision_id']) {
      $this
        ->assertEquals(1, $values['vid']);
    }
    else {
      $this
        ->assertEquals([
        [
          'value' => '1',
        ],
      ], $values['vid']);
    }
    $this
      ->assertEquals('en', $values['langcode']);
    $this
      ->assertEquals(1, $values['status'][0]['value']);
    $this
      ->assertEquals('Apples', $values['title'][0]['value']);
    $this
      ->assertEquals(1, $values['default_langcode'][0]['value']);
    $this
      ->assertEquals(1, $values['field_entity_reference'][0]['target_id']);
    if ($configuration['include_translations']) {
      $node_source
        ->next();
      $values = $node_source
        ->current()
        ->getSource();
      $this
        ->assertEquals($this->bundle, $values['type'][0]['target_id']);
      $this
        ->assertEquals(1, $values['nid']);
      if ($configuration['add_revision_id']) {
        $this
          ->assertEquals(1, $values['vid']);
      }
      else {
        $this
          ->assertEquals([
          0 => [
            'value' => 1,
          ],
        ], $values['vid']);
      }
      $this
        ->assertEquals('fr', $values['langcode']);
      $this
        ->assertEquals(1, $values['status'][0]['value']);
      $this
        ->assertEquals('Pommes', $values['title'][0]['value']);
      $this
        ->assertEquals(0, $values['default_langcode'][0]['value']);
      $this
        ->assertEquals(1, $values['field_entity_reference'][0]['target_id']);
    }
  }

  /**
   * Tests media source plugin.
   *
   * @dataProvider migrationConfigurationProvider
   */
  public function testMediaSource(array $configuration) {
    $values = [
      'id' => 'image',
      'label' => 'Image',
      'source' => 'test',
      'new_revision' => FALSE,
    ];
    $media_type = $this
      ->createMediaType('test', $values);
    $media = Media::create([
      'name' => 'Foo media',
      'uid' => $this->user
        ->id(),
      'bundle' => $media_type
        ->id(),
    ]);
    $media
      ->save();
    $configuration += [
      'bundle' => 'image',
    ];
    $migration = $this->migrationPluginManager
      ->createStubMigration($this
      ->migrationDefinition('content_entity:media', $configuration));
    $media_source = $migration
      ->getSourcePlugin();
    $this
      ->assertSame('media items', $media_source
      ->__toString());
    if (!$configuration['include_translations']) {
      $this
        ->assertEquals(1, $media_source
        ->count());
    }
    $this
      ->assertIds($media_source, $configuration);
    $fields = $media_source
      ->fields();
    $this
      ->assertArrayHasKey('bundle', $fields);
    $this
      ->assertArrayHasKey('mid', $fields);
    $this
      ->assertArrayHasKey('vid', $fields);
    $this
      ->assertArrayHasKey('name', $fields);
    $this
      ->assertArrayHasKey('status', $fields);
    $media_source
      ->rewind();
    $values = $media_source
      ->current()
      ->getSource();
    $this
      ->assertEquals(1, $values['mid']);
    if ($configuration['add_revision_id']) {
      $this
        ->assertEquals(1, $values['vid']);
    }
    else {
      $this
        ->assertEquals([
        [
          'value' => 1,
        ],
      ], $values['vid']);
    }
    $this
      ->assertEquals('Foo media', $values['name'][0]['value']);
    $this
      ->assertNull($values['thumbnail'][0]['title']);
    $this
      ->assertEquals(1, $values['uid'][0]['target_id']);
    $this
      ->assertEquals('image', $values['bundle'][0]['target_id']);
  }

  /**
   * Tests term source plugin.
   *
   * @dataProvider migrationConfigurationProvider
   */
  public function testTermSource(array $configuration) {
    $term2 = Term::create([
      'vid' => $this->vocabulary,
      'name' => 'Granny Smith',
      'uid' => $this->user
        ->id(),
      'parent' => 1,
    ]);
    $term2
      ->save();
    $configuration += [
      'bundle' => $this->vocabulary,
    ];
    $migration = $this->migrationPluginManager
      ->createStubMigration($this
      ->migrationDefinition('content_entity:taxonomy_term', $configuration));
    $term_source = $migration
      ->getSourcePlugin();
    $this
      ->assertSame('taxonomy terms', $term_source
      ->__toString());
    if (!$configuration['include_translations']) {
      $this
        ->assertEquals(2, $term_source
        ->count());
    }
    $this
      ->assertIds($term_source, $configuration);
    $fields = $term_source
      ->fields();
    $this
      ->assertArrayHasKey('vid', $fields);
    $this
      ->assertArrayHasKey('revision_id', $fields);
    $this
      ->assertArrayHasKey('tid', $fields);
    $this
      ->assertArrayHasKey('name', $fields);
    $term_source
      ->rewind();
    $values = $term_source
      ->current()
      ->getSource();
    $this
      ->assertEquals($this->vocabulary, $values['vid'][0]['target_id']);
    $this
      ->assertEquals(1, $values['tid']);

    // @TODO: Add test coverage for parent in
    // https://www.drupal.org/project/drupal/issues/2940198
    $this
      ->assertEquals('Apples', $values['name'][0]['value']);
    $term_source
      ->next();
    $values = $term_source
      ->current()
      ->getSource();
    $this
      ->assertEquals($this->vocabulary, $values['vid'][0]['target_id']);
    $this
      ->assertEquals(2, $values['tid']);

    // @TODO: Add test coverage for parent in
    // https://www.drupal.org/project/drupal/issues/2940198
    $this
      ->assertEquals('Granny Smith', $values['name'][0]['value']);
  }

  /**
   * Data provider for several test methods.
   *
   * @see \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::testUserSource
   * @see \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::testFileSource
   * @see \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::testNodeSource
   * @see \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::testMediaSource
   * @see \Drupal\Tests\migrate_drupal\Kernel\Plugin\migrate\source\ContentEntityTest::testTermSource
   */
  public function migrationConfigurationProvider() {
    $data = [];
    foreach ([
      FALSE,
      TRUE,
    ] as $include_translations) {
      foreach ([
        FALSE,
        TRUE,
      ] as $add_revision_id) {
        $configuration = [
          'include_translations' => $include_translations,
          'add_revision_id' => $add_revision_id,
        ];

        // Add an array key for this data set.
        $data[http_build_query($configuration)] = [
          $configuration,
        ];
      }
    }
    return $data;
  }

  /**
   * Get a migration definition.
   *
   * @param string $plugin_id
   *   The plugin id.
   * @param array $configuration
   *   The plugin configuration.
   *
   * @return array
   *   The definition.
   */
  protected function migrationDefinition($plugin_id, array $configuration = []) {
    return [
      'source' => [
        'plugin' => $plugin_id,
      ] + $configuration,
      'process' => [],
      'destination' => [
        'plugin' => 'null',
      ],
    ];
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AssertContentTrait::$content protected property The current raw content.
AssertContentTrait::$drupalSettings protected property The drupalSettings value from the current raw $content.
AssertContentTrait::$elements protected property The XML structure parsed from the current raw $content. 1
AssertContentTrait::$plainTextContent protected property The plain-text content of raw $content (text nodes).
AssertContentTrait::assertEscaped protected function Passes if the raw text IS found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertField protected function Asserts that a field exists with the given name or ID.
AssertContentTrait::assertFieldById protected function Asserts that a field exists with the given ID and value.
AssertContentTrait::assertFieldByName protected function Asserts that a field exists with the given name and value.
AssertContentTrait::assertFieldByXPath protected function Asserts that a field exists in the current page by the given XPath.
AssertContentTrait::assertFieldChecked protected function Asserts that a checkbox field in the current page is checked.
AssertContentTrait::assertFieldsByValue protected function Asserts that a field exists in the current page with a given Xpath result.
AssertContentTrait::assertLink protected function Passes if a link with the specified label is found.
AssertContentTrait::assertLinkByHref protected function Passes if a link containing a given href (part) is found.
AssertContentTrait::assertNoDuplicateIds protected function Asserts that each HTML ID is used for just a single element.
AssertContentTrait::assertNoEscaped protected function Passes if the raw text IS NOT found escaped on the loaded page, fail otherwise.
AssertContentTrait::assertNoField protected function Asserts that a field does not exist with the given name or ID.
AssertContentTrait::assertNoFieldById protected function Asserts that a field does not exist with the given ID and value.
AssertContentTrait::assertNoFieldByName protected function Asserts that a field does not exist with the given name and value.
AssertContentTrait::assertNoFieldByXPath protected function Asserts that a field does not exist or its value does not match, by XPath.
AssertContentTrait::assertNoFieldChecked protected function Asserts that a checkbox field in the current page is not checked.
AssertContentTrait::assertNoLink protected function Passes if a link with the specified label is not found.
AssertContentTrait::assertNoLinkByHref protected function Passes if a link containing a given href (part) is not found.
AssertContentTrait::assertNoLinkByHrefInMainRegion protected function Passes if a link containing a given href is not found in the main region.
AssertContentTrait::assertNoOption protected function Asserts that a select option in the current page does not exist.
AssertContentTrait::assertNoOptionSelected protected function Asserts that a select option in the current page is not checked.
AssertContentTrait::assertNoPattern protected function Triggers a pass if the perl regex pattern is not found in raw content.
AssertContentTrait::assertNoRaw protected function Passes if the raw text is NOT found on the loaded page, fail otherwise.
AssertContentTrait::assertNoText protected function Passes if the page (with HTML stripped) does not contains the text.
AssertContentTrait::assertNoTitle protected function Pass if the page title is not the given string.
AssertContentTrait::assertNoUniqueText protected function Passes if the text is found MORE THAN ONCE on the text version of the page.
AssertContentTrait::assertOption protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertOptionByText protected function Asserts that a select option with the visible text exists.
AssertContentTrait::assertOptionSelected protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionSelectedWithDrupalSelector protected function Asserts that a select option in the current page is checked.
AssertContentTrait::assertOptionWithDrupalSelector protected function Asserts that a select option in the current page exists.
AssertContentTrait::assertPattern protected function Triggers a pass if the Perl regex pattern is found in the raw content.
AssertContentTrait::assertRaw protected function Passes if the raw text IS found on the loaded page, fail otherwise.
AssertContentTrait::assertText protected function Passes if the page (with HTML stripped) contains the text.
AssertContentTrait::assertTextHelper protected function Helper for assertText and assertNoText.
AssertContentTrait::assertTextPattern protected function Asserts that a Perl regex pattern is found in the plain-text content.
AssertContentTrait::assertThemeOutput protected function Asserts themed output.
AssertContentTrait::assertTitle protected function Pass if the page title is the given string.
AssertContentTrait::assertUniqueText protected function Passes if the text is found ONLY ONCE on the text version of the page.
AssertContentTrait::assertUniqueTextHelper protected function Helper for assertUniqueText and assertNoUniqueText.
AssertContentTrait::buildXPathQuery protected function Builds an XPath query.
AssertContentTrait::constructFieldXpath protected function Helper: Constructs an XPath for the given set of attributes and value.
AssertContentTrait::cssSelect protected function Searches elements using a CSS selector in the raw content.
AssertContentTrait::getAllOptions protected function Get all option elements, including nested options, in a select.
AssertContentTrait::getDrupalSettings protected function Gets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::getRawContent protected function Gets the current raw content.
AssertContentTrait::getSelectedItem protected function Get the selected value from a select field.
AssertContentTrait::getTextContent protected function Retrieves the plain-text content from the current raw content.
AssertContentTrait::getUrl protected function Get the current URL from the cURL handler. 1
AssertContentTrait::parse protected function Parse content returned from curlExec using DOM and SimpleXML.
AssertContentTrait::removeWhiteSpace protected function Removes all white-space between HTML tags from the raw content.
AssertContentTrait::setDrupalSettings protected function Sets the value of drupalSettings for the currently-loaded page.
AssertContentTrait::setRawContent protected function Sets the raw content (e.g. HTML).
AssertContentTrait::xpath protected function Performs an xpath search on the contents of the internal browser.
AssertHelperTrait::castSafeStrings protected static function Casts MarkupInterface objects into strings.
AssertLegacyTrait::assert protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::assertEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertSame() instead.
AssertLegacyTrait::assertIdenticalObject protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertEquals() instead.
AssertLegacyTrait::assertNotEqual protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotEquals() instead.
AssertLegacyTrait::assertNotIdentical protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertNotSame() instead.
AssertLegacyTrait::pass protected function Deprecated Scheduled for removal in Drupal 10.0.0. Use self::assertTrue() instead.
AssertLegacyTrait::verbose protected function
ConfigTestTrait::configImporter protected function Returns a ConfigImporter object to import test configuration.
ConfigTestTrait::copyConfig protected function Copies configuration objects from source storage to target storage.
ContentEntityTest::$bundle protected property The bundle used in this test.
ContentEntityTest::$fieldName protected property The name of the field used in this test.
ContentEntityTest::$migrationPluginManager protected property The migration plugin manager.
ContentEntityTest::$modules public static property Modules to enable. Overrides KernelTestBase::$modules
ContentEntityTest::$user protected property The test user.
ContentEntityTest::$vocabulary protected property The vocabulary ID.
ContentEntityTest::assertIds protected function Helper to assert IDs structure.
ContentEntityTest::migrationConfigurationProvider public function Data provider for several test methods.
ContentEntityTest::migrationDefinition protected function Get a migration definition.
ContentEntityTest::setUp protected function Overrides KernelTestBase::setUp
ContentEntityTest::testConstructorEntityTypeMissing public function Tests the constructor for missing entity_type.
ContentEntityTest::testConstructorInvalidBundle public function Tests the constructor for invalid entity bundle.
ContentEntityTest::testConstructorNonContentEntity public function Tests the constructor for non content entity.
ContentEntityTest::testConstructorNotBundable public function Tests the constructor for not bundleable entity.
ContentEntityTest::testFileSource public function Tests file source plugin.
ContentEntityTest::testMediaSource public function Tests media source plugin.
ContentEntityTest::testNodeSource public function Tests node source plugin.
ContentEntityTest::testTermSource public function Tests term source plugin.
ContentEntityTest::testUserSource public function Tests user source plugin.
EntityReferenceTestTrait::createEntityReferenceField protected function Creates a field of an entity reference field storage on the specified bundle.
KernelTestBase::$backupGlobals protected property Back up and restore any global variables that may be changed by tests.
KernelTestBase::$backupStaticAttributes protected property Back up and restore static class properties that may be changed by tests.
KernelTestBase::$backupStaticAttributesBlacklist protected property Contains a few static class properties for performance.
KernelTestBase::$classLoader protected property
KernelTestBase::$configImporter protected property @todo Move into Config test base class. 7
KernelTestBase::$configSchemaCheckerExclusions protected static property An array of config object names that are excluded from schema checking.
KernelTestBase::$container protected property
KernelTestBase::$databasePrefix protected property
KernelTestBase::$preserveGlobalState protected property Do not forward any global state from the parent process to the processes that run the actual tests.
KernelTestBase::$root protected property The app root.
KernelTestBase::$runTestInSeparateProcess protected property Kernel tests are run in separate processes because they allow autoloading of code from extensions. Running the test in a separate process isolates this behavior from other tests. Subclasses should not override this property.
KernelTestBase::$siteDirectory protected property
KernelTestBase::$strictConfigSchema protected property Set to TRUE to strict check all configuration saved. 6
KernelTestBase::$vfsRoot protected property The virtual filesystem root directory.
KernelTestBase::assertPostConditions protected function 1
KernelTestBase::bootEnvironment protected function Bootstraps a basic test environment.
KernelTestBase::bootKernel private function Bootstraps a kernel for a test.
KernelTestBase::config protected function Configuration accessor for tests. Returns non-overridden configuration.
KernelTestBase::disableModules protected function Disables modules for this test.
KernelTestBase::enableModules protected function Enables modules for this test.
KernelTestBase::getConfigSchemaExclusions protected function Gets the config schema exclusions for this test.
KernelTestBase::getDatabaseConnectionInfo protected function Returns the Database connection info to be used for this test. 1
KernelTestBase::getDatabasePrefix public function
KernelTestBase::getExtensionsForModules private function Returns Extension objects for $modules to enable.
KernelTestBase::getModulesToEnable private static function Returns the modules to enable for this test.
KernelTestBase::initFileCache protected function Initializes the FileCache component.
KernelTestBase::installConfig protected function Installs default configuration for a given list of modules.
KernelTestBase::installEntitySchema protected function Installs the storage schema for a specific entity type.
KernelTestBase::installSchema protected function Installs database tables from a module schema definition.
KernelTestBase::isTestInIsolation Deprecated protected function Returns whether the current test method is running in a separate process.
KernelTestBase::prepareTemplate protected function
KernelTestBase::register public function Registers test-specific services. Overrides ServiceProviderInterface::register 26
KernelTestBase::render protected function Renders a render array. 1
KernelTestBase::setInstallProfile protected function Sets the install profile and rebuilds the container to update it.
KernelTestBase::setSetting protected function Sets an in-memory Settings variable.
KernelTestBase::setUpBeforeClass public static function 1
KernelTestBase::setUpFilesystem protected function Sets up the filesystem, so things like the file directory. 2
KernelTestBase::stop protected function Stops test execution.
KernelTestBase::tearDown protected function 6
KernelTestBase::tearDownCloseDatabaseConnection public function @after
KernelTestBase::vfsDump protected function Dumps the current state of the virtual filesystem to STDOUT.
KernelTestBase::__get Deprecated public function BC: Automatically resolve former KernelTestBase class properties.
KernelTestBase::__sleep public function Prevents serializing any properties.
MediaTypeCreationTrait::createMediaType protected function Create a media type for a source plugin.
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
RandomGeneratorTrait::$randomGenerator protected property The random generator.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers. 1
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomStringValidate public function Callback for random string validation.
StorageCopyTrait::replaceStorageContents protected static function Copy the configuration from one storage to another and remove stale items.
TestRequirementsTrait::checkModuleRequirements private function Checks missing module requirements.
TestRequirementsTrait::checkRequirements protected function Check module requirements for the Drupal use case. 1
TestRequirementsTrait::getDrupalRoot protected static function Returns the Drupal root directory.