class WorkspaceBypassTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php \Drupal\Tests\workspaces\Functional\WorkspaceBypassTest
- 9 core/modules/workspaces/tests/src/Functional/WorkspaceBypassTest.php \Drupal\Tests\workspaces\Functional\WorkspaceBypassTest
Tests access bypass permission controls on workspaces.
@group workspaces
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\workspaces\Functional\WorkspaceBypassTest uses ContentTypeCreationTrait, WorkspaceTestUtilities
Expanded class hierarchy of WorkspaceBypassTest
File
- core/
modules/ workspaces/ tests/ src/ Functional/ WorkspaceBypassTest.php, line 13
Namespace
Drupal\Tests\workspaces\FunctionalView source
class WorkspaceBypassTest extends BrowserTestBase {
use WorkspaceTestUtilities;
use ContentTypeCreationTrait;
/**
* {@inheritdoc}
*/
protected static $modules = [
'node',
'user',
'block',
'workspaces',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Verifies that a user can edit anything in a workspace they own.
*/
public function testBypassOwnWorkspace() {
$permissions = [
'create workspace',
'edit own workspace',
'view own workspace',
'bypass entity access own workspace',
];
$this
->createContentType([
'type' => 'test',
'label' => 'Test',
]);
$this
->setupWorkspaceSwitcherBlock();
$ditka = $this
->drupalCreateUser(array_merge($permissions, [
'create test content',
]));
// Login as a limited-access user and create a workspace.
$this
->drupalLogin($ditka);
$bears = $this
->createWorkspaceThroughUi('Bears', 'bears');
$this
->switchToWorkspace($bears);
// Now create a node in the Bears workspace, as the owner of that workspace.
$ditka_bears_node = $this
->createNodeThroughUi('Ditka Bears node', 'test');
$ditka_bears_node_id = $ditka_bears_node
->id();
// Editing both nodes should be possible.
$this
->drupalGet('/node/' . $ditka_bears_node_id . '/edit');
$this
->assertSession()
->statusCodeEquals(200);
// Create a new user that should be able to edit anything in the Bears
// workspace.
$lombardi = $this
->drupalCreateUser(array_merge($permissions, [
'view any workspace',
]));
$this
->drupalLogin($lombardi);
$this
->switchToWorkspace($bears);
// Editor 2 has the bypass permission but does not own the workspace and so,
// should not be able to create and edit any node.
$this
->drupalGet('/node/' . $ditka_bears_node_id . '/edit');
$this
->assertSession()
->statusCodeEquals(403);
}
}