MigrateBookConfigsTest.php
Same filename in this branch
Same filename in other branches
- 9 core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
- 9 core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php
- 8.9.x core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
- 8.9.x core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php
- 10 core/modules/book/tests/src/Kernel/Migrate/d6/MigrateBookConfigsTest.php
- 10 core/modules/book/tests/src/Kernel/Migrate/d7/MigrateBookConfigsTest.php
Namespace
Drupal\Tests\book\Kernel\Migrate\d7File
-
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.