MigrateBookConfigsTest.php

Same filename in this branch
  1. 11.x core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
Same filename and directory in other branches
  1. 9 core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
  2. 9 core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php
  3. 8.9.x core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
  4. 8.9.x core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php
  5. 10 core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
  6. 10 core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php

Namespace

Drupal\Tests\book\Kernel\Migrate\d7

File

core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php

View source
<?php

namespace Drupal\Tests\book\Kernel\Migrate\d7;

use Drupal\Tests\migrate_drupal\Kernel\d7\MigrateDrupal7TestBase;
use Drupal\Tests\SchemaCheckTestTrait;

/**
 * Tests the migration of Book settings.
 *
 * @group book
 */
class MigrateBookConfigsTest extends MigrateDrupal7TestBase {
    use SchemaCheckTestTrait;
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'book',
        'node',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->executeMigration('book_settings');
    }
    
    /**
     * Gets the path to the fixture file.
     */
    protected function getFixtureFilePath() {
        return __DIR__ . '/../../../../fixtures/drupal7.php';
    }
    
    /**
     * Tests migration of book variables to book.settings.yml.
     */
    public function testBookSettings() {
        $config = $this->config('book.settings');
        $this->assertSame('book', $config->get('child_type'));
        $this->assertSame('all pages', $config->get('block.navigation.mode'));
        $this->assertSame([
            'book',
        ], $config->get('allowed_types'));
        $this->assertConfigSchema(\Drupal::service('config.typed'), 'book.settings', $config->get());
    }

}

Classes

Title Deprecated Summary
MigrateBookConfigsTest Tests the migration of Book settings.

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