class PerComponentEntityFormDisplayTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest
- 9 core/modules/migrate/tests/src/Unit/destination/PerComponentEntityFormDisplayTest.php \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest
Tests the entity display destination plugin.
@group migrate
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitWarnings
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
- class \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
Expanded class hierarchy of PerComponentEntityFormDisplayTest
File
- core/
modules/ migrate/ tests/ src/ Unit/ destination/ PerComponentEntityFormDisplayTest.php, line 19 - Contains \Drupal\Tests\migrate\Unit\destination\PerComponentEntityFormDisplayTest.
Namespace
Drupal\Tests\migrate\Unit\destinationView source
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());
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
MigrateTestCase:: |
protected | property | The migration ID map. | |
MigrateTestCase:: |
protected | property | An array of migration configuration values. | 5 |
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. | |
MigrateTestCase:: |
protected | function | Gets the value on a row for a given key. | |
MigrateTestCase:: |
public | function | Tests a query. | |
MigrateTestCase:: |
protected | function | Asserts tested values during test retrieval. | |
PerComponentEntityFormDisplayTest:: |
public | function | Tests the entity display import method. | |
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | 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. | |
UnitTestCase:: |
protected | function | 206 | |
UnitTestCase:: |
public static | function |