paragraphs-8.x-1.11/tests/src/Unit/migrate/ParagraphsFieldInstanceSettingsTest.php
tests/src/Unit/migrate/ParagraphsFieldInstanceSettingsTest.php
<?php
namespace Drupal\Tests\paragraphs\Unit\migrate;
use Drupal\paragraphs\Plugin\migrate\process\ParagraphsFieldInstanceSettings;
/**
* Test the ParagraphFieldInstanceSettings Process Plugin.
*
* @group paragraphs
* @coversDefaultClass \Drupal\paragraphs\Plugin\migrate\process\ParagraphsFieldInstanceSettings
*/
class ParagraphsFieldInstanceSettingsTest extends ProcessTestCase {
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->row->expects($this->any())
->method('getSourceProperty')
->with('type')
->willReturn('paragraphs');
$this->plugin = new ParagraphsFieldInstanceSettings([], 'paragraphs_field_instance_settings', [], $this->entityTypeBundleInfo);
}
/**
* Test settings for paragraphs field instances.
*
* @param array $source
* The data source.
* @param array $expected
* The expected result.
*
* @dataProvider getData
*/
public function testParagraphsInstanceFieldSettings(array $source, array $expected) {
$value = $this->plugin->transform($source, $this->migrateExecutable, $this->row, 'settings');
$this->assertEquals($expected, $value);
}
/**
* Data provider for unit test.
*
* @return array
* The source data and expected data.
*/
public static function getData() {
$data = [
'With one bundle allowed' => [
'source' => [
'allowed_bundles' => [
'paragraph_bundle_one' => 'paragraph_bundle_one',
'paragraph_bundle_two' => -1,
],
'bundle_weights' => [
'paragraph_bundle_one' => 1,
'paragraph_bundle_two' => 2,
],
],
'expected' => [
'handler_settings' => [
'negate' => 0,
'target_bundles' => [
'paragraph_bundle_one' => 'paragraph_bundle_one',
],
'target_bundles_drag_drop' => [
'paragraph_bundle_one' => [
'enabled' => TRUE,
'weight' => 1,
],
'paragraph_bundle_two' => [
'enabled' => FALSE,
'weight' => 2,
],
'field_collection_bundle_one' => [
'enabled' => FALSE,
'weight' => 3,
],
'field_collection_bundle_two' => [
'enabled' => FALSE,
'weight' => 4,
],
'prexisting_bundle_one' => [
'enabled' => FALSE,
'weight' => 5,
],
'prexisting_bundle_two' => [
'enabled' => FALSE,
'weight' => 6,
],
],
],
],
],
'With all bundles allowed' => [
'source' => [
'allowed_bundles' => [
'paragraph_bundle_one' => -1,
'paragraph_bundle_two' => -1,
],
'bundle_weights' => [
'paragraph_bundle_one' => 1,
'paragraph_bundle_two' => 2,
],
],
'expected' => [
'handler_settings' => [
'negate' => 0,
'target_bundles' => NULL,
'target_bundles_drag_drop' => [
'paragraph_bundle_one' => [
'enabled' => FALSE,
'weight' => 1,
],
'paragraph_bundle_two' => [
'enabled' => FALSE,
'weight' => 2,
],
'field_collection_bundle_one' => [
'enabled' => FALSE,
'weight' => 3,
],
'field_collection_bundle_two' => [
'enabled' => FALSE,
'weight' => 4,
],
'prexisting_bundle_one' => [
'enabled' => FALSE,
'weight' => 5,
],
'prexisting_bundle_two' => [
'enabled' => FALSE,
'weight' => 6,
],
],
],
],
],
];
return $data;
}
}
