You are here

public function ModuleTestBase::assertModuleTablesDoNotExist in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/system/tests/src/Functional/Module/ModuleTestBase.php \Drupal\Tests\system\Functional\Module\ModuleTestBase::assertModuleTablesDoNotExist()
  2. 9 core/modules/system/tests/src/Functional/Module/ModuleTestBase.php \Drupal\Tests\system\Functional\Module\ModuleTestBase::assertModuleTablesDoNotExist()

Assert that none of the tables defined in a module's hook_schema() exist.

Parameters

$module: The name of the module.

2 calls to ModuleTestBase::assertModuleTablesDoNotExist()
InstallUninstallTest::assertModuleNotInstalled in core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php
Asserts that a module is not yet installed.
InstallUninstallTest::assertSuccessfulUninstall in core/modules/system/tests/src/Functional/Module/InstallUninstallTest.php
Uninstalls a module and asserts that it was done correctly.

File

core/modules/system/tests/src/Functional/Module/ModuleTestBase.php, line 61

Class

ModuleTestBase
Helper class for module test cases.

Namespace

Drupal\Tests\system\Functional\Module

Code

public function assertModuleTablesDoNotExist($module) {
  $tables = array_keys(SchemaInspector::getTablesSpecification(\Drupal::moduleHandler(), $module));
  $tables_exist = FALSE;
  $schema = Database::getConnection()
    ->schema();
  foreach ($tables as $table) {
    if ($schema
      ->tableExists($table)) {
      $tables_exist = TRUE;
    }
  }
  $this
    ->assertFalse($tables_exist, new FormattableMarkup('None of the database tables defined by the @module module exist.', [
    '@module' => $module,
  ]));
}