function VocabularyPerTypeTest::providerSource

Same name and namespace in other branches
  1. 9 core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyPerTypeTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\VocabularyPerTypeTest::providerSource()
  2. 8.9.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyPerTypeTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\VocabularyPerTypeTest::providerSource()
  3. 11.x core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyPerTypeTest.php \Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6\VocabularyPerTypeTest::providerSource()

File

core/modules/taxonomy/tests/src/Kernel/Plugin/migrate/source/d6/VocabularyPerTypeTest.php, line 26

Class

VocabularyPerTypeTest
Tests D6 vocabulary per type source plugin.

Namespace

Drupal\Tests\taxonomy\Kernel\Plugin\migrate\source\d6

Code

public static function providerSource() {
  $tests = [];
  // The source data.
  $tests[0]['source_data']['vocabulary'] = [
    [
      'vid' => 1,
      'name' => 'Tags',
      'description' => 'Tags description.',
      'help' => 1,
      'relations' => 0,
      'hierarchy' => 0,
      'multiple' => 0,
      'required' => 0,
      'tags' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
    ],
    [
      'vid' => 2,
      'name' => 'Categories',
      'description' => 'Categories description.',
      'help' => 1,
      'relations' => 1,
      'hierarchy' => 1,
      'multiple' => 0,
      'required' => 1,
      'tags' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
    ],
  ];
  $tests[0]['source_data']['vocabulary_node_types'] = [
    [
      'vid' => 1,
      'type' => 'page',
    ],
    [
      'vid' => 1,
      'type' => 'article',
    ],
    [
      'vid' => 2,
      'type' => 'article',
    ],
  ];
  $tests[0]['source_data']['variable'] = [
    [
      'name' => 'i18ntaxonomy_vocabulary',
      'value' => 'a:2:{i:1;s:1:"3";i:2;s:1:"2";}',
    ],
  ];
  // The expected results.
  $tests[0]['expected_data'] = [
    [
      'vid' => 1,
      'name' => 'Tags',
      'description' => 'Tags description.',
      'help' => 1,
      'relations' => 0,
      'hierarchy' => 0,
      'multiple' => 0,
      'required' => 0,
      'tags' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'page',
        'article',
      ],
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
      'i18ntaxonomy_vocabulary' => '3',
    ],
    [
      'vid' => 1,
      'name' => 'Tags',
      'description' => 'Tags description.',
      'help' => 1,
      'relations' => 0,
      'hierarchy' => 0,
      'multiple' => 0,
      'required' => 0,
      'tags' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'page',
        'article',
      ],
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
      'i18ntaxonomy_vocabulary' => '3',
    ],
    [
      'vid' => 2,
      'name' => 'Categories',
      'description' => 'Categories description.',
      'help' => 1,
      'relations' => 1,
      'hierarchy' => 1,
      'multiple' => 0,
      'required' => 1,
      'tags' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'article',
      ],
      'cardinality' => 1,
      'i18ntaxonomy_vocabulary' => '2',
    ],
  ];
  // The source data.
  $tests[1] = $tests[0];
  unset($tests[1]['source_data']['variable']);
  // The expected results.
  $tests[1]['expected_data'] = [
    [
      'vid' => 1,
      'name' => 'Tags',
      'description' => 'Tags description.',
      'help' => 1,
      'relations' => 0,
      'hierarchy' => 0,
      'multiple' => 0,
      'required' => 0,
      'tags' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'page',
        'article',
      ],
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
      'i18ntaxonomy_vocabulary' => '',
    ],
    [
      'vid' => 1,
      'name' => 'Tags',
      'description' => 'Tags description.',
      'help' => 1,
      'relations' => 0,
      'hierarchy' => 0,
      'multiple' => 0,
      'required' => 0,
      'tags' => 1,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'page',
        'article',
      ],
      'cardinality' => FieldStorageDefinitionInterface::CARDINALITY_UNLIMITED,
      'i18ntaxonomy_vocabulary' => '',
    ],
    [
      'vid' => 2,
      'name' => 'Categories',
      'description' => 'Categories description.',
      'help' => 1,
      'relations' => 1,
      'hierarchy' => 1,
      'multiple' => 0,
      'required' => 1,
      'tags' => 0,
      'module' => 'taxonomy',
      'weight' => 0,
      'node_types' => [
        'article',
      ],
      'cardinality' => 1,
      'i18ntaxonomy_vocabulary' => '',
    ],
  ];
  return $tests;
}

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