function EntityRevisionTest::testNoRevisionSupport

Tests entities that do not support revisions.

File

core/modules/migrate/tests/src/Unit/Plugin/migrate/destination/EntityRevisionTest.php, line 44

Class

EntityRevisionTest
Tests entity revision destination functionality.

Namespace

Drupal\Tests\migrate\Unit\Plugin\migrate\destination

Code

public function testNoRevisionSupport() : void {
  $this->entityType
    ->getKey('id')
    ->willReturn('id');
  $this->entityType
    ->getKey('revision')
    ->willReturn('');
  $this->entityFieldManager
    ->getBaseFieldDefinitions('foo')
    ->willReturn([
    'id' => BaseFieldDefinitionTest::create('integer'),
  ]);
  $destination = new EntityRevisionTestDestination([], '', [], $this->migration
    ->reveal(), $this->storage
    ->reveal(), [], $this->entityFieldManager
    ->reveal(), $this->prophesize(FieldTypePluginManagerInterface::class)
    ->reveal(), $this->prophesize(AccountSwitcherInterface::class)
    ->reveal(), $this->prophesize(EntityTypeBundleInfoInterface::class)
    ->reveal());
  $this->expectException(MigrateException::class);
  $this->expectExceptionMessage('The "foo" entity type does not support revisions.');
  $destination->getIds();
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.