function TestCoverageTest::setUp
Same name in other branches
- 9 core/modules/jsonapi/tests/src/Kernel/TestCoverageTest.php \Drupal\Tests\jsonapi\Kernel\TestCoverageTest::setUp()
- 8.9.x core/modules/jsonapi/tests/src/Functional/TestCoverageTest.php \Drupal\Tests\jsonapi\Functional\TestCoverageTest::setUp()
- 11.x core/modules/jsonapi/tests/src/Kernel/TestCoverageTest.php \Drupal\Tests\jsonapi\Kernel\TestCoverageTest::setUp()
Overrides KernelTestBase::setUp
File
-
core/
modules/ jsonapi/ tests/ src/ Kernel/ TestCoverageTest.php, line 36
Class
- TestCoverageTest
- Checks that all core content/config entity types have JSON:API test coverage.
Namespace
Drupal\Tests\jsonapi\KernelCode
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();
});
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.