public function EntityContentBaseTest::testOverwriteProperties in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/migrate_drupal/src/Tests/d6/EntityContentBaseTest.php \Drupal\migrate_drupal\Tests\d6\EntityContentBaseTest::testOverwriteProperties()
Tests overwriting selected properties in the destination entity, specified in the destination configuration.
File
- core/
modules/ migrate_drupal/ src/ Tests/ d6/ EntityContentBaseTest.php, line 78 - Contains \Drupal\migrate_drupal\Tests\d6\EntityContentBaseTest.
Class
- EntityContentBaseTest
- @group migrate_drupal
Namespace
Drupal\migrate_drupal\Tests\d6Code
public function testOverwriteProperties() {
// Execute the migration in migrate_overwrite_test, which documents how
// property overwrites work.
$this
->executeMigration('users');
/** @var \Drupal\user\UserInterface $account */
$account = User::load(2);
$this
->assertIdentical('john.doe', $account
->label());
$this
->assertIdentical('john.doe@example.com', $account
->getEmail());
$this
->assertIdentical('The answer is 42.', $account->signature->value);
// This value is not overwritten because it's not listed in
// overwrite_properties.
$this
->assertIdentical('proto@zo.an', $account
->getInitialEmail());
}