class BlockTranslationTest
Same name in this branch
- 9 core/modules/block/tests/src/Kernel/Plugin/migrate/source/d7/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d7\BlockTranslationTest
Same name and namespace in other branches
- 11.x core/modules/block/tests/src/Kernel/Plugin/migrate/source/d6/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d6\BlockTranslationTest
- 11.x core/modules/block/tests/src/Kernel/Plugin/migrate/source/d7/BlockTranslationTest.php \Drupal\Tests\block\Kernel\Plugin\migrate\source\d7\BlockTranslationTest
Tests i18n block source plugin.
@covers \Drupal\block\Plugin\migrate\source\d6\BlockTranslation
@group content_translation
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \Drupal\Core\DependencyInjection\ServiceProviderInterface uses \Drupal\KernelTests\AssertLegacyTrait, \Drupal\KernelTests\AssertContentTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\ExtensionListTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase implements \Drupal\KernelTests\KernelTestBase
- class \Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase implements \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase
- class \Drupal\Tests\block\Kernel\Plugin\migrate\source\BlockTest implements \Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase
- class \Drupal\Tests\block\Kernel\Plugin\migrate\source\d6\BlockTranslationTest implements \Drupal\Tests\block\Kernel\Plugin\migrate\source\BlockTest
- class \Drupal\Tests\block\Kernel\Plugin\migrate\source\BlockTest implements \Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase
- class \Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase implements \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase
- class \Drupal\Tests\migrate\Kernel\MigrateSourceTestBase implements \Drupal\KernelTests\KernelTestBase
Expanded class hierarchy of BlockTranslationTest
File
-
core/
modules/ block/ tests/ src/ Kernel/ Plugin/ migrate/ source/ d6/ BlockTranslationTest.php, line 14
Namespace
Drupal\Tests\block\Kernel\Plugin\migrate\source\d6View source
class BlockTranslationTest extends BlockTest {
/**
* {@inheritdoc}
*/
protected static $modules = [
'block',
];
/**
* {@inheritdoc}
*/
public function providerSource() {
// Test data is the same as BlockTest, but with the addition of i18n_blocks.
$tests = parent::providerSource();
// The source data.
$tests[0]['source_data']['i18n_blocks'] = [
[
'ibid' => 1,
'module' => 'block',
'delta' => '1',
'type' => 0,
'language' => 'fr',
],
[
'ibid' => 2,
'module' => 'block',
'delta' => '2',
'type' => 0,
'language' => 'zu',
],
];
$tests[0]['source_data']['variables'] = [
[
'name' => 'default_theme',
'value' => 's:7:"garland";',
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'bid' => 1,
'module' => 'block',
'delta' => '1',
'title' => 'Test Title 01',
'ibid' => 1,
'type' => '0',
'language' => 'fr',
'default_theme' => 'Garland',
],
[
'bid' => 2,
'module' => 'block',
'delta' => '2',
'theme' => 'garland',
'title' => 'Test Title 02',
'ibid' => 2,
'type' => '0',
'language' => 'zu',
'default_theme' => 'Garland',
],
];
return $tests;
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.