PerComponentEntityFormDisplayTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
  2. 10 core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php
  3. 11.x core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php

Contains \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest.

Namespace

Drupal\Tests\migrate\Unit\destination

File

core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php

View source
<?php


/**
 * @file
 * Contains \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest.
 */

namespace Drupal\Tests\migrate\Unit\destination;

use Drupal\migrate\Plugin\migrate\destination\PerComponentEntityFormDisplay;
use Drupal\migrate\Row;
use Drupal\Tests\migrate\Unit\MigrateTestCase;

/**
 * Tests the entity display destination plugin.
 *
 * @group migrate
 */
class PerComponentEntityFormDisplayTest extends MigrateTestCase {
  
  /**
   * Tests the entity display import method.
   */
  public function testImport() {
    $values = [
      'entity_type' => 'entity_type_test',
      'bundle' => 'bundle_test',
      'form_mode' => 'form_mode_test',
      'field_name' => 'field_name_test',
      'options' => [
        'test setting',
      ],
    ];
    $row = new Row();
    foreach ($values as $key => $value) {
      $row->setDestinationProperty($key, $value);
    }
    $entity = $this->getMockBuilder('Drupal\\Core\\Entity\\Entity\\EntityFormDisplay')
      ->disableOriginalConstructor()
      ->getMock();
    $entity->expects($this->once())
      ->method('setComponent')
      ->with('field_name_test', [
      'test setting',
    ])
      ->will($this->returnSelf());
    $entity->expects($this->once())
      ->method('save')
      ->with();
    $plugin = new TestPerComponentEntityFormDisplay($entity);
    $this->assertSame([
      'entity_type_test',
      'bundle_test',
      'form_mode_test',
      'field_name_test',
    ], $plugin->import($row));
    $this->assertSame([
      'entity_type_test',
      'bundle_test',
      'form_mode_test',
    ], $plugin->getTestValues());
  }

}
class TestPerComponentEntityFormDisplay extends PerComponentEntityFormDisplay {
  const MODE_NAME = 'form_mode';
  protected $testValues;
  protected $entity;
  public function __construct($entity) {
    $this->entity = $entity;
  }
  protected function getEntity($entity_type, $bundle, $form_mode) {
    $this->testValues = func_get_args();
    return $this->entity;
  }
  public function getTestValues() {
    return $this->testValues;
  }

}

Classes

Title Deprecated Summary
PerComponentEntityFormDisplayTest Tests the entity display destination plugin.
TestPerComponentEntityFormDisplay

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