View source
<?php
namespace Drupal\simpletest\Tests;
use Drupal\Core\Database\Database;
use Drupal\field\Entity\FieldConfig;
use Drupal\simpletest\KernelTestBase;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\Core\Entity\Entity\EntityViewDisplay;
class KernelTestBaseTest extends KernelTestBase {
public static $modules = [
'entity_test',
];
protected function setUp() {
$php = <<<'EOS'
<?php
# Make sure that the $test_class variable is defined when this file is included.
if ($test_class) {
}
# Define a function to be able to check that this file was loaded with
# function_exists().
if (!function_exists('simpletest_test_stub_settings_function')) {
function simpletest_test_stub_settings_function() {}
}
EOS;
$settings_testing_file = $this->siteDirectory . '/settings.testing.php';
file_put_contents($settings_testing_file, $php);
$original_container = $this->originalContainer;
parent::setUp();
$this
->assertNotIdentical(\Drupal::getContainer(), $original_container, 'KernelTestBase test creates a new container.');
}
public function testSetUp() {
$modules = [
'entity_test',
];
$table = 'entity_test';
$this
->assertTrue(function_exists('entity_test_entity_bundle_info'), 'entity_test.module was loaded.');
$this
->assertIdentical(array_keys(\Drupal::moduleHandler()
->getModuleList()), $modules);
$this
->assertIdentical(\Drupal::moduleHandler()
->getImplementations('entity_bundle_info'), [
'entity_test',
]);
$this
->assertIdentical(\Drupal::moduleHandler()
->getImplementations('entity_type_alter'), [
'entity_test',
]);
$this
->assertFalse(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table not found.");
$this
->assertTrue(function_exists('simpletest_test_stub_settings_function'));
$database = $this->container
->get('database');
if ($database
->driver() == 'pgsql') {
$this
->assertEqual('on', $database
->query("SHOW standard_conforming_strings")
->fetchField());
$this
->assertEqual('escape', $database
->query("SHOW bytea_output")
->fetchField());
}
}
public function testEnableModulesLoad() {
$module = 'field_test';
$this
->assertFalse(\Drupal::moduleHandler()
->moduleExists($module), "{$module} module not found.");
$list = array_keys(\Drupal::moduleHandler()
->getModuleList());
$this
->assertFalse(in_array($module, $list), "{$module} module not found in the extension handler's module list.");
$list = \Drupal::moduleHandler()
->getImplementations('entity_display_build_alter');
$this
->assertFalse(in_array($module, $list), "{$module}_entity_display_build_alter() in \\Drupal::moduleHandler()->getImplementations() not found.");
$this
->enableModules([
$module,
]);
$this
->assertTrue(\Drupal::moduleHandler()
->moduleExists($module), "{$module} module found.");
$list = array_keys(\Drupal::moduleHandler()
->getModuleList());
$this
->assertTrue(in_array($module, $list), "{$module} module found in the extension handler's module list.");
$list = \Drupal::moduleHandler()
->getImplementations('query_efq_table_prefixing_test_alter');
$this
->assertTrue(in_array($module, $list), "{$module}_query_efq_table_prefixing_test_alter() in \\Drupal::moduleHandler()->getImplementations() found.");
}
public function testEnableModulesInstall() {
$module = 'module_test';
$table = 'module_test';
$this
->assertFalse(\Drupal::moduleHandler()
->moduleExists($module), "{$module} module not found.");
$list = array_keys(\Drupal::moduleHandler()
->getModuleList());
$this
->assertFalse(in_array($module, $list), "{$module} module not found in the extension handler's module list.");
$list = \Drupal::moduleHandler()
->getImplementations('hook_info');
$this
->assertFalse(in_array($module, $list), "{$module}_hook_info() in \\Drupal::moduleHandler()->getImplementations() not found.");
$this
->assertFalse(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table not found.");
\Drupal::service('module_installer')
->install([
$module,
]);
$this
->assertTrue(\Drupal::moduleHandler()
->moduleExists($module), "{$module} module found.");
$list = array_keys(\Drupal::moduleHandler()
->getModuleList());
$this
->assertTrue(in_array($module, $list), "{$module} module found in the extension handler's module list.");
$list = \Drupal::moduleHandler()
->getImplementations('hook_info');
$this
->assertTrue(in_array($module, $list), "{$module}_hook_info() in \\Drupal::moduleHandler()->getImplementations() found.");
$this
->assertTrue(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table found.");
$schema = drupal_get_module_schema($module, $table);
$this
->assertTrue($schema, "'{$table}' table schema found.");
}
public function testEnableModulesInstallContainer() {
$this
->enableModules([
'user',
'field',
'node',
]);
$this
->installEntitySchema('node', [
'node',
'node_field_data',
]);
$query = \Drupal::entityQuery('node');
$query
->accessCheck(FALSE);
$query
->condition('nid', 1);
$query
->execute();
$this
->pass('Entity field query was executed.');
}
public function testInstallSchema() {
$module = 'entity_test';
$table = 'entity_test_example';
$this
->installSchema($module, $table);
$this
->assertTrue(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table found.");
$schema = drupal_get_module_schema($module, $table);
$this
->assertTrue($schema, "'{$table}' table schema found.");
$table = 'unknown_entity_test_table';
try {
$this
->installSchema($module, $table);
$this
->fail('Exception for non-retrievable schema found.');
} catch (\Exception $e) {
$this
->pass('Exception for non-retrievable schema found.');
}
$this
->assertFalse(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table not found.");
$schema = drupal_get_module_schema($module, $table);
$this
->assertFalse($schema, "'{$table}' table schema not found.");
$module = 'database_test';
$table = 'test';
try {
$this
->installSchema($module, $table);
$this
->fail('Exception for non-retrievable schema found.');
} catch (\Exception $e) {
$this
->pass('Exception for non-retrievable schema found.');
}
$this
->assertFalse(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table not found.");
$schema = drupal_get_module_schema($module, $table);
$this
->assertTrue($schema, "'{$table}' table schema found.");
$this
->enableModules([
$module,
]);
$this
->installSchema($module, $table);
$this
->assertTrue(Database::getConnection()
->schema()
->tableExists($table), "'{$table}' database table found.");
$schema = drupal_get_module_schema($module, $table);
$this
->assertTrue($schema, "'{$table}' table schema found.");
}
public function testInstallEntitySchema() {
$entity = 'entity_test';
$this
->enableModules([
'user',
]);
$this
->installEntitySchema($entity);
$this
->assertTrue(Database::getConnection()
->schema()
->tableExists($entity), "'{$entity}' database table found.");
}
public function testInstallConfig() {
$this
->enableModules([
'system',
]);
$module = 'user';
try {
$this
->installConfig([
$module,
]);
$this
->fail('Exception for non-enabled module found.');
} catch (\Exception $e) {
$this
->pass('Exception for non-enabled module found.');
}
$this
->assertFalse($this->container
->get('config.storage')
->exists('user.settings'));
$this
->enableModules([
'user',
]);
$this
->installConfig([
'user',
]);
$this
->assertTrue($this->container
->get('config.storage')
->exists('user.settings'));
$this
->assertTrue($this
->config('user.settings')
->get('register'));
}
public function testEnableModulesFixedList() {
$this->container
->get('module_installer')
->install([
'system',
'user',
'menu_link_content',
]);
$entity_manager = \Drupal::entityTypeManager();
$this
->assertEqual($this->container
->get('module_handler')
->moduleExists('entity_test'), TRUE);
$this
->assertTrue(TRUE == $entity_manager
->getDefinition('entity_test'));
$this
->enableModules([
'field',
'text',
'entity_test',
]);
$this
->assertEqual($this->container
->get('module_handler')
->moduleExists('entity_test'), TRUE);
$this
->assertTrue(TRUE == $entity_manager
->getDefinition('entity_test'));
$this->container
->get('module_installer')
->install([
'user',
'field',
'field_test',
], FALSE);
$this
->assertEqual($this->container
->get('module_handler')
->moduleExists('entity_test'), TRUE);
$this
->assertTrue(TRUE == $entity_manager
->getDefinition('entity_test'));
$this->container
->get('module_installer')
->uninstall([
'field_test',
]);
$this
->assertEqual($this->container
->get('module_handler')
->moduleExists('entity_test'), TRUE);
$this
->assertTrue(TRUE == $entity_manager
->getDefinition('entity_test'));
module_set_weight('field', -1);
$this
->assertEqual($this->container
->get('module_handler')
->moduleExists('entity_test'), TRUE);
$this
->assertTrue(TRUE == $entity_manager
->getDefinition('entity_test'));
$this
->enableModules([
'field_test',
]);
$this
->installEntitySchema('entity_test');
$display = EntityViewDisplay::create([
'targetEntityType' => 'entity_test',
'bundle' => 'entity_test',
'mode' => 'default',
]);
$field_storage = FieldStorageConfig::create([
'field_name' => 'test_field',
'entity_type' => 'entity_test',
'type' => 'test_field',
]);
$field_storage
->save();
FieldConfig::create([
'field_storage' => $field_storage,
'bundle' => 'entity_test',
])
->save();
}
public function testEnableModulesTheme() {
$renderer = $this->container
->get('renderer');
$original_element = $element = [
'#type' => 'container',
'#markup' => 'Foo',
'#attributes' => [],
];
$this
->enableModules([
'system',
]);
$this
->assertTrue($renderer
->renderRoot($element));
$element = $original_element;
$this
->disableModules([
'entity_test',
]);
$this
->assertTrue($renderer
->renderRoot($element));
}
public function testNoThemeByDefault() {
$themes = $this
->config('core.extension')
->get('theme');
$this
->assertEqual($themes, []);
$extensions = $this->container
->get('config.storage')
->read('core.extension');
$this
->assertEqual($extensions['theme'], []);
$active_theme = $this->container
->get('theme.manager')
->getActiveTheme();
$this
->assertEqual($active_theme
->getName(), 'core');
}
public function testDrupalGetProfile() {
$this
->assertNull(\Drupal::installProfile());
}
public function run(array $methods = []) {
parent::run($methods);
$connection = Database::getConnection();
if ($connection
->databaseType() != 'sqlite') {
$tables = $connection
->schema()
->findTables($this->databasePrefix . '%');
$this
->assertTrue(empty($tables), 'All test tables have been removed.');
}
else {
$info = Database::getConnectionInfo();
$connection
->query('ATTACH DATABASE :database AS :prefix', [
':database' => $info['default']['database'] . '-' . $this->databasePrefix,
':prefix' => $this->databasePrefix,
]);
$result = $connection
->query("SELECT name FROM " . $this->databasePrefix . ".sqlite_master WHERE type = :type AND name LIKE :table_name AND name NOT LIKE :pattern", [
':type' => 'table',
':table_name' => '%',
':pattern' => 'sqlite_%',
])
->fetchAllKeyed(0, 0);
$this
->assertTrue(empty($result), 'All test tables have been removed.');
}
}
}