Further Drupal 8.6.4 changes. Some core files were not committed before a commit...
[yaffs-website] / web / core / modules / comment / tests / src / Kernel / Migrate / d6 / MigrateCommentTypeTest.php
1 <?php
2
3 namespace Drupal\Tests\comment\Kernel\Migrate\d6;
4
5 use Drupal\comment\Entity\CommentType;
6 use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;
7
8 /**
9  * Tests the migration of comment types from Drupal 6.
10  *
11  * @group comment
12  * @group migrate_drupal_6
13  */
14 class MigrateCommentTypeTest extends MigrateDrupal6TestBase {
15
16   /**
17    * {@inheritdoc}
18    */
19   public static $modules = ['comment'];
20
21   /**
22    * {@inheritdoc}
23    */
24   protected function setUp() {
25     parent::setUp();
26     $this->installConfig(['comment']);
27     $this->executeMigration('d6_comment_type');
28   }
29
30   /**
31    * Asserts a comment type entity.
32    *
33    * @param string $id
34    *   The entity ID.
35    * @param string $label
36    *   The entity label.
37    */
38   protected function assertEntity($id, $label) {
39     $entity = CommentType::load($id);
40     $this->assertInstanceOf(CommentType::class, $entity);
41     $this->assertSame($label, $entity->label());
42     $this->assertSame('node', $entity->getTargetEntityTypeId());
43   }
44
45   /**
46    * Tests the migrated comment types.
47    */
48   public function testMigration() {
49     $this->assertEntity('comment_node_article', 'Article comment');
50     $this->assertEntity('comment_node_company', 'Company comment');
51     $this->assertEntity('comment_node_employee', 'Employee comment');
52     $this->assertEntity('comment_node_event', 'Event comment');
53     $this->assertEntity('comment_forum', 'Forum topic comment');
54     $this->assertEntity('comment_node_page', 'Page comment');
55     $this->assertEntity('comment_node_sponsor', 'Sponsor comment');
56     $this->assertEntity('comment_node_story', 'Story comment');
57     $this->assertEntity('comment_node_test_event', 'Migrate test event comment');
58     $this->assertEntity('comment_node_test_page', 'Migrate test page comment');
59     $this->assertEntity('comment_node_test_planet', 'Migrate test planet comment');
60     $this->assertEntity('comment_node_test_story', 'Migrate test story comment');
61   }
62
63 }