function PermissionsTest::testAccessContentPermission
Tests the 'access content' permission is provided by the System module.
File
- 
              core/
modules/ system/ tests/ src/ Kernel/ PermissionsTest.php, line 25  
Class
- PermissionsTest
 - @group system
 
Namespace
Drupal\Tests\system\KernelCode
public function testAccessContentPermission() : void {
  // Uninstalling modules requires the users_data table to exist.
  $this->installSchema('user', [
    'users_data',
  ]);
  $permissions = $this->container
    ->get('user.permissions')
    ->getPermissions();
  $this->assertSame('system', $permissions['access content']['provider']);
  // Install the 'node' module, assert that it is now the 'node' module
  // providing the 'access content' permission.
  $this->container
    ->get('module_installer')
    ->install([
    'node',
  ]);
  $permissions = $this->container
    ->get('user.permissions')
    ->getPermissions();
  $this->assertSame('system', $permissions['access content']['provider']);
  // Uninstall the 'node' module, assert that it is again the 'system' module.
  $this->container
    ->get('module_installer')
    ->uninstall([
    'node',
  ]);
  $permissions = $this->container
    ->get('user.permissions')
    ->getPermissions();
  $this->assertSame('system', $permissions['access content']['provider']);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.