class RangeFieldTest in Range 8
Same name in this branch
- 8 tests/src/Unit/Plugin/migrate/process/d6/RangeFieldTest.php \Drupal\Tests\range\Unit\Plugin\migrate\process\d6\RangeFieldTest
- 8 tests/src/Unit/Plugin/migrate/field/d6/RangeFieldTest.php \Drupal\Tests\range\Unit\Plugin\migrate\field\d6\RangeFieldTest
- 8 tests/src/Unit/Plugin/migrate/field/d7/RangeFieldTest.php \Drupal\Tests\range\Unit\Plugin\migrate\field\d7\RangeFieldTest
@coversDefaultClass \Drupal\range\Plugin\migrate\field\d6\RangeField @group range
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses PhpunitCompatibilityTrait
- class \Drupal\Tests\range\Unit\Plugin\migrate\field\d6\RangeFieldTest
Expanded class hierarchy of RangeFieldTest
File
- tests/
src/ Unit/ Plugin/ migrate/ field/ d6/ RangeFieldTest.php, line 15
Namespace
Drupal\Tests\range\Unit\Plugin\migrate\field\d6View source
class RangeFieldTest extends UnitTestCase {
protected const PLUGIN_DEFINITION = [
'id' => 'd6_range',
'core' => [
6,
],
'type_map' => [
'range_integer' => 'range_integer',
'range_decimal' => 'range_decimal',
'range_float' => 'range_float',
],
'source_module' => 'range',
'destination_module' => 'range',
];
/**
* Current migration row.
*
* @var \Drupal\migrate\Row|\PHPUnit\Framework\MockObject\MockObject
*/
protected $row;
/**
* Migration source.
*
* @var \Drupal\migrate\Plugin\MigrateSourceInterface|\PHPUnit\Framework\MockObject\MockObject
*/
protected $migrationSource;
/**
* Migration itself.
*
* @var \Drupal\migrate\Plugin\Migration|\PHPUnit\Framework\MockObject\MockObject
*/
protected $migration;
/**
* RangeField migration plugin.
*
* @var \Drupal\range\Plugin\migrate\field\d6\RangeField
*/
protected $plugin;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->row = $this
->createMock(Row::class);
$this->migrationSource = $this
->createMock(MigrateSourceInterface::class);
$this->migrationSource
->expects(self::atMost(1))
->method('current')
->willReturn($this->row);
$this->migration = $this
->createPartialMock(Migration::class, [
'getSourcePlugin',
]);
$this->migration
->expects(self::atMost(1))
->method('getSourcePlugin')
->willReturn($this->migrationSource);
$this->plugin = new RangeField([], 'range', self::PLUGIN_DEFINITION);
}
/**
* @covers ::alterFieldMigration
* @dataProvider alterMigrationDataProvider
*/
public function testAlterFieldMigration($field_type, $is_range_field_type) {
$this->row
->expects(self::once())
->method('getSourceProperty')
->willReturn($field_type);
$this->plugin
->alterFieldMigration($this->migration);
$process = $this->migration
->getProcess();
if ($is_range_field_type) {
$this
->assertSame([
'range_decimal' => [
'range' => 'range_decimal',
],
'range_float' => [
'range' => 'range_float',
],
'range_integer' => [
'range' => 'range_integer',
],
], $process['type'][0]['map']);
$expected_process = [
'plugin' => 'd6_range_field_settings',
];
$this
->assertSame([
$expected_process,
], $process['settings']);
}
else {
$this
->assertSame([], $process);
}
}
/**
* @covers ::alterFieldInstanceMigration
* @dataProvider alterMigrationDataProvider
*/
public function testAlterFieldInstanceMigration($field_type, $is_range_field_type) {
$this->row
->expects(self::once())
->method('getSourceProperty')
->willReturn($field_type);
$this->plugin
->alterFieldInstanceMigration($this->migration);
$process = $this->migration
->getProcess();
if ($is_range_field_type) {
$expected_process_settings = [
'plugin' => 'd6_range_field_instance_settings',
];
$this
->assertSame([
$expected_process_settings,
], $process['settings']);
$expected_process_defaults = [
'plugin' => 'd6_range_field_instance_defaults',
];
$this
->assertSame([
$expected_process_defaults,
], $process['default_value']);
}
else {
$this
->assertSame([], $process);
}
}
/**
* @covers ::alterFieldFormatterMigration
* @dataProvider alterMigrationDataProvider
*/
public function testAlterFieldFormatterMigration($field_type, $is_range_field_type) {
$this->row
->expects(self::once())
->method('getSourceProperty')
->willReturn($field_type);
$this->plugin
->alterFieldFormatterMigration($this->migration);
$process = $this->migration
->getProcess();
if ($is_range_field_type) {
$this
->assertSame([
'default' => 'range_decimal',
'us_0' => 'range_decimal',
'us_1' => 'range_decimal',
'us_2' => 'range_decimal',
'be_0' => 'range_decimal',
'be_1' => 'range_decimal',
'be_2' => 'range_decimal',
'fr_0' => 'range_decimal',
'fr_1' => 'range_decimal',
'fr_2' => 'range_decimal',
'unformatted' => 'range_unformatted',
], $process['options/type'][0]['map']['range_decimal']);
$this
->assertSame([
'default' => 'range_decimal',
'us_0' => 'range_decimal',
'us_1' => 'range_decimal',
'us_2' => 'range_decimal',
'be_0' => 'range_decimal',
'be_1' => 'range_decimal',
'be_2' => 'range_decimal',
'fr_0' => 'range_decimal',
'fr_1' => 'range_decimal',
'fr_2' => 'range_decimal',
'unformatted' => 'range_unformatted',
], $process['options/type'][0]['map']['range_float']);
$this
->assertSame([
'default' => 'range_integer',
'us_0' => 'range_integer',
'be_0' => 'range_integer',
'fr_0' => 'range_integer',
'unformatted' => 'range_unformatted',
], $process['options/type'][0]['map']['range_integer']);
$expected_process = [
'plugin' => 'd6_range_field_formatter_settings',
];
$this
->assertSame([
$expected_process,
], $process['options/settings']);
}
else {
$this
->assertSame([], $process);
}
}
/**
* @covers ::defineValueProcessPipeline
* @dataProvider alterMigrationDataProvider
*/
public function testDefineValueProcessPipeline($field_type) {
$this->plugin
->defineValueProcessPipeline($this->migration, $field_type, []);
$process = $this->migration
->getProcess();
$expected_process = [
'plugin' => 'd6_range_field',
'source' => $field_type,
];
$this
->assertSame([
$expected_process,
], $process[$field_type]);
}
/**
* Data provider.
*/
public function alterMigrationDataProvider() {
return [
'not range field' => [
'link',
FALSE,
],
'range integer field' => [
'range_integer',
TRUE,
],
'range decimal field' => [
'range_decimal',
TRUE,
],
'range float field' => [
'range_float',
TRUE,
],
];
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
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. | |
RangeFieldTest:: |
protected | property | Migration itself. | |
RangeFieldTest:: |
protected | property | Migration source. | |
RangeFieldTest:: |
protected | property | RangeField migration plugin. | |
RangeFieldTest:: |
protected | property | Current migration row. | |
RangeFieldTest:: |
public | function | Data provider. | |
RangeFieldTest:: |
protected | constant | ||
RangeFieldTest:: |
protected | function |
Overrides UnitTestCase:: |
|
RangeFieldTest:: |
public | function | @covers ::alterFieldFormatterMigration @dataProvider alterMigrationDataProvider | |
RangeFieldTest:: |
public | function | @covers ::alterFieldInstanceMigration @dataProvider alterMigrationDataProvider | |
RangeFieldTest:: |
public | function | @covers ::alterFieldMigration @dataProvider alterMigrationDataProvider | |
RangeFieldTest:: |
public | function | @covers ::defineValueProcessPipeline @dataProvider alterMigrationDataProvider | |
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. |