Same name in this branch
  1. 10 core/modules/migrate_drupal/tests/src/Kernel/d6/EntityContentBaseTest.php \Drupal\Tests\migrate_drupal\Kernel\d6\EntityContentBaseTest
  2. 10 core/modules/migrate/tests/src/Unit/Plugin/migrate/destination/EntityContentBaseTest.php \Drupal\Tests\migrate\Unit\Plugin\migrate\destination\EntityContentBaseTest
Same name and namespace in other branches
  1. 8.9.x core/modules/migrate/tests/src/Unit/Plugin/migrate/destination/EntityContentBaseTest.php \Drupal\Tests\migrate\Unit\Plugin\migrate\destination\EntityContentBaseTest
  2. 9 core/modules/migrate/tests/src/Unit/Plugin/migrate/destination/EntityContentBaseTest.php \Drupal\Tests\migrate\Unit\Plugin\migrate\destination\EntityContentBaseTest

Tests base entity migration destination functionality.

@coversDefaultClass \Drupal\migrate\Plugin\migrate\destination\EntityContentBase @group migrate

Hierarchy

Expanded class hierarchy of EntityContentBaseTest

File

core/modules/migrate/tests/src/Unit/Plugin/migrate/destination/EntityContentBaseTest.php, line 22

Namespace

Drupal\Tests\migrate\Unit\Plugin\migrate\destination
View source
class EntityContentBaseTest extends EntityTestBase {

  /**
   * Tests basic entity save.
   *
   * @covers ::import
   */
  public function testImport() {
    $bundles = [];
    $destination = new EntityTestDestination([], '', [], $this->migration
      ->reveal(), $this->storage
      ->reveal(), $bundles, $this->entityFieldManager
      ->reveal(), $this
      ->prophesize(FieldTypePluginManagerInterface::class)
      ->reveal(), $this
      ->prophesize(AccountSwitcherInterface::class)
      ->reveal());
    $entity = $this
      ->prophesize(ContentEntityInterface::class);
    $entity
      ->isValidationRequired()
      ->shouldBeCalledTimes(1);

    // Assert that save is called.
    $entity
      ->save()
      ->shouldBeCalledTimes(1);

    // Syncing should be set once.
    $entity
      ->setSyncing(Argument::exact(TRUE))
      ->shouldBeCalledTimes(1);

    // Set an id for the entity
    $entity
      ->id()
      ->willReturn(5);
    $destination
      ->setEntity($entity
      ->reveal());

    // Ensure the id is saved entity id is returned from import.
    $this
      ->assertEquals([
      5,
    ], $destination
      ->import(new Row()));

    // Assert that import set the rollback action.
    $this
      ->assertEquals(MigrateIdMapInterface::ROLLBACK_DELETE, $destination
      ->rollbackAction());
  }

  /**
   * Tests row skipping when we can't get an entity to save.
   *
   * @covers ::import
   */
  public function testImportEntityLoadFailure() {
    $bundles = [];
    $destination = new EntityTestDestination([], '', [], $this->migration
      ->reveal(), $this->storage
      ->reveal(), $bundles, $this->entityFieldManager
      ->reveal(), $this
      ->prophesize(FieldTypePluginManagerInterface::class)
      ->reveal(), $this
      ->prophesize(AccountSwitcherInterface::class)
      ->reveal());
    $destination
      ->setEntity(FALSE);
    $this
      ->expectException(MigrateException::class);
    $this
      ->expectExceptionMessage('Unable to get entity');
    $destination
      ->import(new Row());
  }

  /**
   * Tests that translation destination fails for untranslatable entities.
   */
  public function testUntranslatable() {

    // An entity type without a language.
    $this->entityType
      ->getKey('langcode')
      ->willReturn('');
    $this->entityType
      ->getKey('id')
      ->willReturn('id');
    $this->entityFieldManager
      ->getBaseFieldDefinitions('foo')
      ->willReturn([
      'id' => BaseFieldDefinitionTest::create('integer'),
    ]);
    $destination = new EntityTestDestination([
      'translations' => TRUE,
    ], '', [], $this->migration
      ->reveal(), $this->storage
      ->reveal(), [], $this->entityFieldManager
      ->reveal(), $this
      ->prophesize(FieldTypePluginManagerInterface::class)
      ->reveal(), $this
      ->prophesize(AccountSwitcherInterface::class)
      ->reveal());
    $this
      ->expectException(MigrateException::class);
    $this
      ->expectExceptionMessage('The "foo" entity type does not support translations.');
    $destination
      ->getIds();
  }

}

Members

Name Modifiers Type Descriptionsort descending Overrides
EntityTestBase::setUp protected function Overrides UnitTestCase::setUp 1
UnitTestCase::setUpBeforeClass public static function
UnitTestCase::__get public function
EntityTestBase::$migration protected property
EntityTestBase::$storage protected property
EntityTestBase::$entityType protected property
EntityTestBase::$entityFieldManager protected property
RandomGeneratorTrait::randomStringValidate Deprecated public function Callback for random string validation.
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
RandomGeneratorTrait::randomString public function Generates a pseudo-random string of ASCII characters of codes 32 to 126.
RandomGeneratorTrait::randomObject public function Generates a random PHP object.
RandomGeneratorTrait::randomMachineName protected function Generates a unique random string containing letters and numbers.
RandomGeneratorTrait::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
EntityContentBaseTest::testImport public function Tests basic entity save.
EntityContentBaseTest::testImportEntityLoadFailure public function Tests row skipping when we can't get an entity to save.
EntityContentBaseTest::testUntranslatable public function Tests that translation destination fails for untranslatable entities.
UnitTestCase::$root protected property The app root. 1