You are here

public function LogTest::testLog in Drupal 9

Same name in this branch
  1. 9 core/modules/migrate/tests/src/Unit/process/LogTest.php \Drupal\Tests\migrate\Unit\process\LogTest::testLog()
  2. 9 core/modules/migrate/tests/src/Kernel/Plugin/LogTest.php \Drupal\Tests\migrate\Kernel\Plugin\LogTest::testLog()

Tests the Log plugin.

@dataProvider providerTestLog()

File

core/modules/migrate/tests/src/Unit/process/LogTest.php, line 20

Class

LogTest
Tests the Log process plugin.

Namespace

Drupal\Tests\migrate\Unit\process

Code

public function testLog($value, $expected_message) {

  // Test the expected log message.
  $this->migrateExecutable
    ->expects($this
    ->once())
    ->method('saveMessage')
    ->with($expected_message);
  $plugin = new Log([], 'log', []);

  // Test the input value is not altered.
  $new_value = $plugin
    ->transform($value, $this->migrateExecutable, new Row(), 'foo');
  $this
    ->assertSame($value, $new_value);
}