class LanguageContentSettingsTest

Same name in this branch
  1. 9 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest
Same name and namespace in other branches
  1. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d6\LanguageContentSettingsTest
  2. 10 core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest
  3. 11.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d6\LanguageContentSettingsTest
  4. 11.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest
  5. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d6\LanguageContentSettingsTest
  6. 8.9.x core/modules/language/tests/src/Kernel/Plugin/migrate/source/d7/LanguageContentSettingsTest.php \Drupal\Tests\language\Kernel\Plugin\migrate\source\d7\LanguageContentSettingsTest

Tests menu source plugin.

@covers \Drupal\language\Plugin\migrate\source\d6\LanguageContentSettings

@group language

Hierarchy

Expanded class hierarchy of LanguageContentSettingsTest

File

core/modules/language/tests/src/Kernel/Plugin/migrate/source/d6/LanguageContentSettingsTest.php, line 14

Namespace

Drupal\Tests\language\Kernel\Plugin\migrate\source\d6
View source
class LanguageContentSettingsTest extends MigrateSqlSourceTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'language',
    'migrate_drupal',
  ];
  
  /**
   * {@inheritdoc}
   */
  public function providerSource() {
    $tests = [];
    // The source data.
    $tests[0]['source_data']['node_type'] = [
      [
        'type' => 'article',
        'name' => 'Article',
        'module' => 'node',
        'description' => 'An <em>article</em>, content type.',
        'help' => '',
        'has_title' => 1,
        'title_label' => 'Title',
        'has_body' => 1,
        'body_label' => 'Body',
        'min_word_count' => 0,
        'custom' => 1,
        'modified' => 1,
        'locked' => 0,
        'orig_type' => 'story',
      ],
      [
        'type' => 'company',
        'name' => 'Company',
        'module' => 'node',
        'description' => 'Company node type',
        'help' => '',
        'has_title' => 1,
        'title_label' => 'Name',
        'has_body' => 1,
        'body_label' => 'Description',
        'min_word_count' => 0,
        'custom' => 0,
        'modified' => 1,
        'locked' => 0,
        'orig_type' => 'company',
      ],
    ];
    foreach ($tests[0]['source_data']['node_type'] as $node_type) {
      $tests[0]['expected_data'][] = [
        'type' => $node_type['type'],
        'language_content_type' => NULL,
        'i18n_lock_node' => 0,
      ];
    }
    return $tests;
  }

}

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