MigratePostRowSaveEventTest.php in Drupal 9
File
core/modules/migrate/tests/src/Unit/Event/MigratePostRowSaveEventTest.php
View source
<?php
namespace Drupal\Tests\migrate\Unit\Event;
use Drupal\migrate\Event\MigratePostRowSaveEvent;
class MigratePostRowSaveEventTest extends EventBaseTest {
public function testGetDestinationIdValues() {
$migration = $this
->prophesize('\\Drupal\\migrate\\Plugin\\MigrationInterface')
->reveal();
$message_service = $this
->prophesize('\\Drupal\\migrate\\MigrateMessageInterface')
->reveal();
$row = $this
->prophesize('\\Drupal\\migrate\\Row')
->reveal();
$event = new MigratePostRowSaveEvent($migration, $message_service, $row, [
1,
2,
3,
]);
$this
->assertSame([
1,
2,
3,
], $event
->getDestinationIdValues());
}
public function testGetRow() {
$migration = $this
->prophesize('\\Drupal\\migrate\\Plugin\\MigrationInterface')
->reveal();
$message_service = $this
->prophesize('\\Drupal\\migrate\\MigrateMessageInterface');
$row = $this
->prophesize('\\Drupal\\migrate\\Row')
->reveal();
$event = new MigratePostRowSaveEvent($migration, $message_service
->reveal(), $row, [
1,
2,
3,
]);
$this
->assertSame($row, $event
->getRow());
}
}