class NodeReferenceFieldTest
Tests legacy NodeReference migrate field plugin.
@coversDefaultClass \Drupal\migrate_drupal\Plugin\migrate\field\NodeReference
      
    
@group migrate_drupal
@group legacy
Hierarchy
- class \Drupal\Tests\UnitTestCase uses \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait extends \PHPUnit\Framework\TestCase- class \Drupal\Tests\migrate_drupal\Unit\Plugin\migrate\field\d6\NodeReferenceFieldTest extends \Drupal\Tests\UnitTestCase
 
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, 'field_name', []);
    $expected = [
      'plugin' => 'sub_process',
      'source' => 'field_name',
      'process' => [
        'target_id' => 'nid',
      ],
    ];
    $this->assertSame($expected, $this->migration
      ->getProcess());
  }
}Members
| Title Sort descending | Deprecated | Modifiers | Object type | Summary | Overriden Title | Overrides | 
|---|---|---|---|---|---|---|
| NodeReferenceFieldTest::$migration | protected | property | The prophesize migration. | |||
| NodeReferenceFieldTest::$plugin | protected | property | The plugin being tested. | |||
| NodeReferenceFieldTest::setUp | protected | function | Overrides UnitTestCase::setUp | |||
| NodeReferenceFieldTest::testDefineValueProcessPipeline | public | function | @covers ::defineValueProcessPipeline[[api-linebreak]] @runInSeparateProcess | |||
| PhpUnitWarnings::$deprecationWarnings | private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |||
| PhpUnitWarnings::addWarning | public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |||
| UnitTestCase::$randomGenerator | protected | property | The random generator. | |||
| UnitTestCase::$root | protected | property | The app root. | 1 | ||
| UnitTestCase::assertArrayEquals | Deprecated | protected | function | Asserts if two arrays are equal by sorting them first. | ||
| 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::getContainerWithCacheTagsInvalidator | protected | function | Sets up a container with a cache tags invalidator. | |||
| UnitTestCase::getRandomGenerator | protected | function | Gets the random generator for the utility methods. | |||
| UnitTestCase::getStringTranslationStub | public | function | Returns a stub translation manager that just returns the passed string. | |||
| UnitTestCase::randomMachineName | public | function | Generates a unique random string containing letters and numbers. | |||
| UnitTestCase::setUpBeforeClass | public static | function | 
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
