protected function CommentViewsKernelTestBase::setUp in Drupal 9
Same name and namespace in other branches
- 8 core/modules/comment/tests/src/Kernel/Views/CommentViewsKernelTestBase.php \Drupal\Tests\comment\Kernel\Views\CommentViewsKernelTestBase::setUp()
Parameters
bool $import_test_views: Should the views specified on the test class be imported. If you need to setup some additional stuff, like fields, you need to call false and then call createTestViews for your own.
Overrides ViewsKernelTestBase::setUp
2 calls to CommentViewsKernelTestBase::setUp()
- CommentDepthTest::setUp in core/
modules/ comment/ tests/ src/ Kernel/ Views/ CommentDepthTest.php - CommentLinksTest::setUp in core/
modules/ comment/ tests/ src/ Kernel/ Views/ CommentLinksTest.php
2 methods override CommentViewsKernelTestBase::setUp()
- CommentDepthTest::setUp in core/
modules/ comment/ tests/ src/ Kernel/ Views/ CommentDepthTest.php - CommentLinksTest::setUp in core/
modules/ comment/ tests/ src/ Kernel/ Views/ CommentLinksTest.php
File
- core/
modules/ comment/ tests/ src/ Kernel/ Views/ CommentViewsKernelTestBase.php, line 42
Class
- CommentViewsKernelTestBase
- Provides a common test base for comment views tests.
Namespace
Drupal\Tests\comment\Kernel\ViewsCode
protected function setUp($import_test_views = TRUE) {
parent::setUp($import_test_views);
ViewTestData::createTestViews(static::class, [
'comment_test_views',
]);
$this
->installEntitySchema('user');
$this
->installEntitySchema('comment');
$this
->installConfig([
'user',
]);
$entity_type_manager = $this->container
->get('entity_type.manager');
$this->commentStorage = $entity_type_manager
->getStorage('comment');
$this->userStorage = $entity_type_manager
->getStorage('user');
// Insert a row for the anonymous user.
$this->userStorage
->create([
'uid' => 0,
'name' => '',
'status' => 0,
])
->save();
// Create user 1 so that the user created later in the test has a different
// user ID.
// @todo Remove in https://www.drupal.org/node/540008.
$this->userStorage
->create([
'uid' => 1,
'name' => 'user1',
])
->save();
$admin_role = Role::create([
'id' => 'admin',
]);
$admin_role
->grantPermission('administer comments');
$admin_role
->grantPermission('access comments');
$admin_role
->grantPermission('post comments');
$admin_role
->grantPermission('view test entity');
$admin_role
->save();
/** @var \Drupal\user\RoleInterface $anonymous_role */
$anonymous_role = Role::load(Role::ANONYMOUS_ID);
$anonymous_role
->grantPermission('access comments');
$anonymous_role
->save();
$this->adminUser = $this->userStorage
->create([
'name' => $this
->randomMachineName(),
]);
$this->adminUser
->addRole('admin');
$this->adminUser
->save();
}