class CommerceAttributeTargetTypeTest in Commerce Migrate 3.0.x
Same name and namespace in other branches
- 8.2 modules/commerce/tests/src/Unit/Plugin/migrate/process/commerce1/CommerceAttributeTargetTypeTest.php \Drupal\Tests\commerce_migrate_commerce\Unit\Plugin\migrate\process\commerce1\CommerceAttributeTargetTypeTest
- 3.1.x modules/commerce/tests/src/Unit/Plugin/migrate/process/commerce1/CommerceAttributeTargetTypeTest.php \Drupal\Tests\commerce_migrate_commerce\Unit\Plugin\migrate\process\commerce1\CommerceAttributeTargetTypeTest
Tests the CommerceAttributeTargetType plugin.
@coversDefaultClass \Drupal\commerce_migrate_commerce\Plugin\migrate\process\commerce1\CommerceAttributeTargetType
@group commerce_migrate_commerce
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \PHPUnit\Framework\TestCase uses \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, PhpUnitCompatibilityTrait, PhpUnitWarnings
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\commerce_migrate_commerce\Unit\Plugin\migrate\process\commerce1\CommerceAttributeTargetTypeTest
- class \Drupal\Tests\migrate\Unit\process\MigrateProcessTestCase
- class \Drupal\Tests\migrate\Unit\MigrateTestCase
Expanded class hierarchy of CommerceAttributeTargetTypeTest
File
- modules/
commerce/ tests/ src/ Unit/ Plugin/ migrate/ process/ commerce1/ CommerceAttributeTargetTypeTest.php, line 16
Namespace
Drupal\Tests\commerce_migrate_commerce\Unit\Plugin\migrate\process\commerce1View source
class CommerceAttributeTargetTypeTest extends MigrateProcessTestCase {
/**
* {@inheritdoc}
*/
protected function setUp() {
parent::setUp();
$this->plugin = new CommerceAttributeTargetType([], 'test', []);
}
/**
* Tests CommerceAttributeTargetType.
*
* @dataProvider providerTestCommerceAttributeTargetType
*/
public function testCommerceAttributeTargetType($src = NULL, $dst = NULL, $expected = NULL) {
$this->row
->expects($this
->once())
->method('getDestinationProperty')
->willReturn($dst);
$this->row
->method('getSourceProperty')
->will($this
->onConsecutiveCalls($src[0], $src[1], $src[2]));
$value = $this->plugin
->transform('', $this->migrateExecutable, $this->row, $dst);
$this
->assertSame($expected, $value);
}
/**
* Data provider for testCommerceAttributeTargetType().
*/
public function providerTestCommerceAttributeTargetType() {
// Tests when this is an attribute value.
$entity_type = 'commerce_product';
$type = 'taxonomy_term_reference';
$instances = [
[
'data' => serialize([
'widget' => [
'type' => 'options_select',
],
]),
],
];
$tests[0]['source_properties'] = [
$entity_type,
$type,
$instances,
];
$tests[0]['destination_property'] = 'original_target_type';
$tests[0]['expected'] = 'commerce_product_attribute_value';
// Tests when not an attribute value.
$entity_type = 'commerce_product';
$type = 'taxonomy_term_reference';
$instances = [
[
'data' => serialize([
'widget' => [
'type' => 'text',
],
]),
],
];
$tests[1]['source_properties'] = [
$entity_type,
$type,
$instances,
];
$tests[1]['destination_property'] = 'original_target_type';
$tests[1]['expected'] = 'original_target_type';
return $tests;
}
/**
* Tests CommerceAttributeTargetType throws an exception.
*
* @dataProvider providerTestException
*/
public function testException($src = NULL, $dst = NULL, $expected = NULL) {
$this->row
->expects($this
->once())
->method('getDestinationProperty')
->willReturn($dst);
$this->row
->method('getSourceProperty')
->will($this
->onConsecutiveCalls($src[0], $src[1], $src[2]));
$this
->expectException(MigrateSkipRowException::class);
$this
->expectExceptionMessage($expected);
$this->plugin
->transform('', $this->migrateExecutable, $this->row, $dst);
}
/**
* Data provider for testException().
*/
public function providerTestException() {
$tests = [];
// Empty array of instances.
$tests[0]['source_properties'] = [
'commerce_product',
'taxonomy_term_reference',
[],
];
$tests[0]['destination_property'] = 'original_target_type';
$tests[0]['expected'] = "No instances for attribute for destination 'original_target_type'";
// Instances is NULL.
$tests[1] = $tests[0];
$tests[1]['source_properties'] = [
'commerce_product',
'taxonomy_term_reference',
NULL,
];
$tests[1]['destination_property'] = 'original_target_type';
$tests[1]['expected'] = "No instances for attribute for destination 'original_target_type'";
return $tests;
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
CommerceAttributeTargetTypeTest:: |
public | function | Data provider for testCommerceAttributeTargetType(). | |
CommerceAttributeTargetTypeTest:: |
public | function | Data provider for testException(). | |
CommerceAttributeTargetTypeTest:: |
protected | function |
Overrides MigrateProcessTestCase:: |
|
CommerceAttributeTargetTypeTest:: |
public | function | Tests CommerceAttributeTargetType. | |
CommerceAttributeTargetTypeTest:: |
public | function | Tests CommerceAttributeTargetType throws an exception. | |
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateProcessTestCase:: |
protected | property | ||
MigrateTestCase:: |
protected | property | The migration ID map. | |
MigrateTestCase:: |
protected | property | An array of migration configuration values. | 7 |
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. | |
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 | Asserts if two arrays are equal by sorting them first. | |
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:: |
public static | function |