class ParagraphsProcessOnValueTest in Paragraphs 8
Test class for the paragraphs_process_on_value process plugin.
@group paragraphs @coversDefaultClass \Drupal\paragraphs\Plugin\migrate\process\ParagraphsProcessOnValue
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\paragraphs\Unit\migrate\ProcessTestCase
- class \Drupal\Tests\paragraphs\Unit\migrate\ParagraphsProcessOnValueTest
- class \Drupal\Tests\paragraphs\Unit\migrate\ProcessTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
Expanded class hierarchy of ParagraphsProcessOnValueTest
File
- tests/
src/ Unit/ migrate/ ParagraphsProcessOnValueTest.php, line 17
Namespace
Drupal\Tests\paragraphs\Unit\migrateView source
class ParagraphsProcessOnValueTest extends ProcessTestCase {
/**
* {@inheritdoc}
*/
protected $migrationConfiguration = [
'id' => 'test',
];
/**
* {@inheritdoc}
*/
public function setUp() : void {
parent::setup();
$configuration = [
'source_value' => 'source',
'expected_value' => 'expected',
'process' => [
'plugin' => 'get',
'source' => 'theValue',
],
];
$this->plugin = new ParagraphsProcessOnValue($configuration, 'paragraphs_process_on_value', [], $this->entityTypeBundleInfo);
$this->row
->expects($this
->any())
->method('getSource')
->willReturn([
'theValue' => 'Final Value',
'source' => 'expected',
]);
}
/**
* Test processing if conditions are met.
*/
public function testProcess() {
$migration = $this
->getMigration();
$get = new Get([
'source' => 'theValue',
], 'get', []);
$migration
->expects($this
->any())
->method('getProcessPlugins')
->willReturn([
'destination' => [
$get,
],
]);
$this->row
->expects($this
->any())
->method('getSourceProperty')
->with('source')
->willReturn('expected');
$event_dispatcher = $this
->createMock(EventDispatcherInterface::class);
$message = $this
->createMock(MigrateMessageInterface::class);
$migrate_executable = new MigrateExecutable($migration, $message, $event_dispatcher);
$value = $this->plugin
->transform('Initial Value', $migrate_executable, $this->row, 'destination');
$this
->assertEquals('Final Value', $value);
}
/**
* Test not processing if conditions are not met.
*/
public function testSkip() {
$migration = $this
->getMigration();
$get = new Get([
'source' => 'theValue',
], 'get', []);
$migration
->expects($this
->any())
->method('getProcessPlugins')
->willReturn([
'destination' => [
$get,
],
]);
$this->row
->expects($this
->any())
->method('getSourceProperty')
->with('source')
->willReturn('unexpected');
$event_dispatcher = $this
->createMock(EventDispatcherInterface::class);
$message = $this
->createMock(MigrateMessageInterface::class);
$migrate_executable = new MigrateExecutable($migration, $message, $event_dispatcher);
$value = $this->plugin
->transform('Initial Value', $migrate_executable, $this->row, 'destination');
$this
->assertEquals('Initial Value', $value);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateTestCase:: |
protected | property | The migration ID map. | |
MigrateTestCase:: |
protected | property | Local store for mocking setStatus()/getStatus(). | |
MigrateTestCase:: |
protected | function | Generates a table schema from a row. | |
MigrateTestCase:: |
protected | function | Gets an SQLite database connection object for use in tests. | |
MigrateTestCase:: |
protected | function | Retrieves a mocked migration. | 1 |
MigrateTestCase:: |
protected | function | Gets the value on a row for a given key. | 1 |
MigrateTestCase:: |
public | function | Tests a query. | |
MigrateTestCase:: |
protected | function | Asserts tested values during test retrieval. | |
ParagraphsProcessOnValueTest:: |
protected | property |
An array of migration configuration values. Overrides MigrateTestCase:: |
|
ParagraphsProcessOnValueTest:: |
public | function |
Overrides ProcessTestCase:: |
|
ParagraphsProcessOnValueTest:: |
public | function | Test processing if conditions are met. | |
ParagraphsProcessOnValueTest:: |
public | function | Test not processing if conditions are not met. | |
PhpunitCompatibilityTrait:: |
public | function | Returns a mock object for the specified class using the available method. | |
PhpunitCompatibilityTrait:: |
public | function | Compatibility layer for PHPUnit 6 to support PHPUnit 4 code. | |
ProcessTestCase:: |
protected | property | The entity bundle info service. | |
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 | Mocks a block with a block plugin. | 1 |
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. |