You are here

class CommerceAttributeTargetTypeTest in Commerce Migrate 3.0.x

Same name and namespace in other branches
  1. 8.2 modules/commerce/tests/src/Unit/Plugin/migrate/process/commerce1/CommerceAttributeTargetTypeTest.php \Drupal\Tests\commerce_migrate_commerce\Unit\Plugin\migrate\process\commerce1\CommerceAttributeTargetTypeTest
  2. 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

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\commerce1
View 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

Namesort descending Modifiers Type Description Overrides
CommerceAttributeTargetTypeTest::providerTestCommerceAttributeTargetType public function Data provider for testCommerceAttributeTargetType().
CommerceAttributeTargetTypeTest::providerTestException public function Data provider for testException().
CommerceAttributeTargetTypeTest::setUp protected function Overrides MigrateProcessTestCase::setUp
CommerceAttributeTargetTypeTest::testCommerceAttributeTargetType public function Tests CommerceAttributeTargetType.
CommerceAttributeTargetTypeTest::testException public function Tests CommerceAttributeTargetType throws an exception.
MigrateProcessTestCase::$migrateExecutable protected property
MigrateProcessTestCase::$plugin protected property
MigrateProcessTestCase::$row protected property
MigrateTestCase::$idMap protected property The migration ID map.
MigrateTestCase::$migrationConfiguration protected property An array of migration configuration values. 7
MigrateTestCase::$migrationStatus protected property Local store for mocking setStatus()/getStatus().
MigrateTestCase::createSchemaFromRow protected function Generates a table schema from a row.
MigrateTestCase::getDatabase protected function Gets an SQLite database connection object for use in tests.
MigrateTestCase::getMigration protected function Retrieves a mocked migration.
MigrateTestCase::getValue protected function Gets the value on a row for a given key.
MigrateTestCase::queryResultTest public function Tests a query.
MigrateTestCase::retrievalAssertHelper protected function Asserts tested values during test retrieval.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function