From da05acc22d36106231f8c0be70a44563d68af932 Mon Sep 17 00:00:00 2001 From: lucashedding <lucashedding@1463982.no-reply.drupal.org> Date: Wed, 19 Dec 2018 09:21:02 -0600 Subject: [PATCH] Issue #3019796 by heddn, mikelutz: Run D.O. tests with deprecation notices enabled --- tests/src/Kernel/MigrationGroupTest.php | 13 ++++++------- .../Plugin/migrate/process/EntityGenerateTest.php | 2 +- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/tests/src/Kernel/MigrationGroupTest.php b/tests/src/Kernel/MigrationGroupTest.php index 53d3ad46..2909891c 100644 --- a/tests/src/Kernel/MigrationGroupTest.php +++ b/tests/src/Kernel/MigrationGroupTest.php @@ -69,10 +69,9 @@ class MigrationGroupTest extends KernelTestBase { $migration->save(); $expected_config = [ - 'migration_group' => $group_id, 'label' => 'Unaffected by the group', - 'migration_tags' => ['Drupal 7'], - 'source' => [ + 'getMigrationTags' => ['Drupal 7'], + 'getSourceConfiguration' => [ 'plugin' => 'empty', 'constants' => [ 'entity_type' => 'user', @@ -80,13 +79,13 @@ class MigrationGroupTest extends KernelTestBase { 'cardinality' => '3', ], ], - 'destination' => ['plugin' => 'field_storage_config'], + 'getDestinationConfiguration' => ['plugin' => 'field_storage_config'], ]; - /** @var \Drupal\migrate\Plugin\MigrationInterface $loaded_migration */ + /** @var \Drupal\migrate_plus\Plugin\MigrationInterface $loaded_migration */ $loaded_migration = $this->container->get('plugin.manager.migration') ->createInstance('specific_migration'); - foreach ($expected_config as $key => $expected_value) { - $actual_value = $loaded_migration->get($key); + foreach ($expected_config as $method => $expected_value) { + $actual_value = call_user_func([$loaded_migration, $method]); $this->assertEquals($expected_value, $actual_value); } } diff --git a/tests/src/Kernel/Plugin/migrate/process/EntityGenerateTest.php b/tests/src/Kernel/Plugin/migrate/process/EntityGenerateTest.php index 0240c104..fb9f7891 100644 --- a/tests/src/Kernel/Plugin/migrate/process/EntityGenerateTest.php +++ b/tests/src/Kernel/Plugin/migrate/process/EntityGenerateTest.php @@ -7,13 +7,13 @@ use Drupal\Core\Field\FieldStorageDefinitionInterface; use Drupal\Core\Language\LanguageInterface; use Drupal\field\Entity\FieldConfig; use Drupal\field\Entity\FieldStorageConfig; -use Drupal\field\Tests\EntityReference\EntityReferenceTestTrait; use Drupal\KernelTests\KernelTestBase; use Drupal\migrate\MigrateExecutable; use Drupal\migrate\MigrateMessageInterface; use Drupal\node\Entity\NodeType; use Drupal\taxonomy\Entity\Term; use Drupal\taxonomy\Entity\Vocabulary; +use Drupal\Tests\field\Traits\EntityReferenceTestTrait; /** * Tests the migration plugin. -- GitLab