class NodeReferenceFieldTest in Drupal 9
Tests legacy NodeReference migrate field plugin.
@coversDefaultClass \Drupal\migrate_drupal\Plugin\migrate\field\NodeReference @group migrate_drupal @group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\migrate_drupal\Unit\Plugin\migrate\field\d6\NodeReferenceFieldTest
Expanded class hierarchy of NodeReferenceFieldTest
File
- core/
modules/ migrate_drupal/ tests/ src/ Unit/ Plugin/ migrate/ field/ d6/ NodeReferenceFieldTest.php, line 17
Namespace
Drupal\Tests\migrate_drupal\Unit\Plugin\migrate\field\d6View source
class NodeReferenceFieldTest extends UnitTestCase {
/**
* The plugin being tested.
*
* @var \Drupal\migrate_drupal\Plugin\MigrateFieldInterface
*/
protected $plugin;
/**
* The prophesize migration.
*
* @var \Drupal\migrate\Plugin\MigrationInterface|\Prophecy\Prophecy\ProphecyInterface
*/
protected $migration;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
$this->plugin = new NodeReference([], 'nodereference', []);
$migration = $this
->prophesize(MigrationInterface::class);
$migration
->setProcessOfProperty(Argument::type('string'), Argument::type('array'))
->will(function ($arguments) use ($migration) {
$migration
->getProcess()
->willReturn($arguments[1]);
});
$this->migration = $migration
->reveal();
}
/**
* @covers ::defineValueProcessPipeline
* @runInSeparateProcess
*/
public function testDefineValueProcessPipeline() {
$this
->expectDeprecation('The Drupal\\migrate_drupal\\Plugin\\migrate\\field\\NodeReference is deprecated in drupal:9.1.0 and will be removed from drupal:10.0.0. Instead use \\Drupal\\migrate_drupal\\Plugin\\migrate\\field\\d6\\NodeReference. See https://www.drupal.org/node/3159537.');
$this->plugin
->defineValueProcessPipeline($this->migration, 'somefieldname', []);
$expected = [
'plugin' => 'sub_process',
'source' => 'somefieldname',
'process' => [
'target_id' => 'nid',
],
];
$this
->assertSame($expected, $this->migration
->getProcess());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
NodeReferenceFieldTest:: |
protected | property | The prophesize migration. | |
NodeReferenceFieldTest:: |
protected | property | The plugin being tested. | |
NodeReferenceFieldTest:: |
protected | function |
Overrides UnitTestCase:: |
|
NodeReferenceFieldTest:: |
public | function | @covers ::defineValueProcessPipeline @runInSeparateProcess | |
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 1 |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. | |
UnitTestCase:: |
public static | function |