You are here

protected function TestCoverageTest::setUp in Drupal 10

File

core/modules/jsonapi/tests/src/Kernel/TestCoverageTest.php, line 33

Class

TestCoverageTest
Checks that all core content/config entity types have JSON:API test coverage.

Namespace

Drupal\Tests\jsonapi\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  $all_modules = \Drupal::service('extension.list.module')
    ->getList();
  $stable_core_modules = array_filter($all_modules, function ($module) {

    // Filter out contrib, hidden, testing, experimental, and deprecated
    // modules. We also don't need to enable modules that are already enabled.
    return $module->origin === 'core' && empty($module->info['hidden']) && $module->status == FALSE && $module->info['package'] !== 'Testing' && $module->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER] !== ExtensionLifecycle::EXPERIMENTAL && $module->info[ExtensionLifecycle::LIFECYCLE_IDENTIFIER] !== ExtensionLifecycle::DEPRECATED;
  });
  $this->container
    ->get('module_installer')
    ->install(array_keys($stable_core_modules));
  $this->definitions = $this->container
    ->get('entity_type.manager')
    ->getDefinitions();

  // Entity types marked as "internal" are not exposed by JSON:API and hence
  // also don't need test coverage.
  $this->definitions = array_filter($this->definitions, function (EntityTypeInterface $entity_type) {
    return !$entity_type
      ->isInternal();
  });
}