CommentTypeTest.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/jsonapi/tests/src/Functional/CommentTypeTest.php
- 9 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/CommentTypeTest.php
- 9 core/modules/comment/tests/src/Functional/CommentTypeTest.php
- 10 core/modules/jsonapi/tests/src/Functional/CommentTypeTest.php
- 10 core/modules/comment/tests/src/Kernel/Plugin/migrate/source/CommentTypeTest.php
- 10 core/modules/comment/tests/src/Functional/CommentTypeTest.php
- 11.x core/modules/jsonapi/tests/src/Functional/CommentTypeTest.php
- 11.x core/modules/comment/tests/src/Kernel/Plugin/migrate/source/CommentTypeTest.php
- 11.x core/modules/comment/tests/src/Functional/CommentTypeTest.php
Namespace
Drupal\Tests\comment\Kernel\Plugin\migrate\source\d7File
-
core/
modules/ comment/ tests/ src/ Kernel/ Plugin/ migrate/ source/ d7/ CommentTypeTest.php
View source
<?php
namespace Drupal\Tests\comment\Kernel\Plugin\migrate\source\d7;
use Drupal\Tests\migrate\Kernel\MigrateSqlSourceTestBase;
/**
* Tests D7 comment type source plugin.
*
* @covers \Drupal\comment\Plugin\migrate\source\d7\CommentType
* @group comment
* @group legacy
*/
class CommentTypeTest extends MigrateSqlSourceTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
'comment',
'migrate_drupal',
];
/**
* {@inheritdoc}
*
* @dataProvider providerSource
* @requires extension pdo_sqlite
* @expectedDeprecation CommentType is deprecated in Drupal 8.4.x and will be removed before Drupal 9.0.x. Use \Drupal\node\Plugin\migrate\source\d7\NodeType instead.
*/
public function testSource(array $source_data, array $expected_data, $expected_count = NULL, array $configuration = [], $high_water = NULL) {
parent::testSource($source_data, $expected_data, $expected_count, $configuration, $high_water);
}
/**
* {@inheritdoc}
*/
public function providerSource() {
$tests = [];
// The source data.
$tests[0]['source_data']['node_type'] = [
[
'type' => 'article',
'name' => 'Article',
'base' => 'node_content',
'module' => 'node',
'description' => 'Use <em>articles</em> for time-sensitive content like news, press releases or blog posts.',
'help' => 'Help text for articles',
'has_title' => '1',
'title_label' => 'Title',
'custom' => '1',
'modified' => '1',
'locked' => '0',
'disabled' => '0',
'orig_type' => 'article',
],
];
$tests[0]['source_data']['field_config_instance'] = [
[
'id' => '14',
'field_id' => '1',
'field_name' => 'comment_body',
'entity_type' => 'comment',
'bundle' => 'comment_node_article',
'data' => 'a:0:{}',
'deleted' => '0',
],
];
$tests[0]['source_data']['variable'] = [
[
'name' => 'comment_default_mode_article',
'value' => serialize(1),
],
[
'name' => 'comment_per_page_article',
'value' => serialize(50),
],
[
'name' => 'comment_anonymous_article',
'value' => serialize(0),
],
[
'name' => 'comment_form_location_article',
'value' => serialize(1),
],
[
'name' => 'comment_preview_article',
'value' => serialize(0),
],
[
'name' => 'comment_subject_article',
'value' => serialize(1),
],
];
// The expected results.
$tests[0]['expected_data'] = [
[
'bundle' => 'comment_node_article',
'node_type' => 'article',
'default_mode' => '1',
'per_page' => '50',
'anonymous' => '0',
'form_location' => '1',
'preview' => '0',
'subject' => '1',
'label' => 'Article comment',
],
];
return $tests;
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
CommentTypeTest | Tests D7 comment type source plugin. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.