MigrateForumConfigsTest.php

Same filename and directory in other branches
  1. 9 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php
  2. 8.9.x core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php
  3. 10 core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php

Namespace

Drupal\Tests\forum\Kernel\Migrate\d6

File

core/modules/forum/tests/src/Kernel/Migrate/d6/MigrateForumConfigsTest.php

View source
<?php

namespace Drupal\Tests\forum\Kernel\Migrate\d6;

use Drupal\Tests\SchemaCheckTestTrait;
use Drupal\Tests\migrate_drupal\Kernel\d6\MigrateDrupal6TestBase;

/**
 * Upgrade variables to forum.settings.yml.
 *
 * @group migrate_drupal_6
 * @group legacy
 */
class MigrateForumConfigsTest extends MigrateDrupal6TestBase {
    use SchemaCheckTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'comment',
        'forum',
        'taxonomy',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->executeMigration('d6_taxonomy_vocabulary');
        $this->executeMigration('d6_forum_settings');
    }
    
    /**
     * Gets the path to the fixture file.
     */
    protected function getFixtureFilePath() {
        return __DIR__ . '/../../../../fixtures/drupal6.php';
    }
    
    /**
     * Tests migration of forum variables to forum.settings.yml.
     */
    public function testForumSettings() {
        $config = $this->config('forum.settings');
        $this->assertSame(15, $config->get('topics.hot_threshold'));
        $this->assertSame(25, $config->get('topics.page_limit'));
        $this->assertSame(1, $config->get('topics.order'));
        $this->assertSame('forums', $config->get('vocabulary'));
        // This is 'forum_block_num_0' in D6, but block:active:limit' in D8.
        $this->assertSame(3, $config->get('block.active.limit'));
        // This is 'forum_block_num_1' in D6, but 'block:new:limit' in D8.
        $this->assertSame(4, $config->get('block.new.limit'));
        $this->assertConfigSchema(\Drupal::service('config.typed'), 'forum.settings', $config->get());
    }

}

Classes

Title Deprecated Summary
MigrateForumConfigsTest Upgrade variables to forum.settings.yml.

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