public function WorkspaceSwitcherTest::testQueryParameterNegotiator in Drupal 10
Same name and namespace in other branches
- 8 core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php \Drupal\Tests\workspaces\Functional\WorkspaceSwitcherTest::testQueryParameterNegotiator()
- 9 core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php \Drupal\Tests\workspaces\Functional\WorkspaceSwitcherTest::testQueryParameterNegotiator()
Tests switching workspace via a query parameter.
File
- core/
modules/ workspaces/ tests/ src/ Functional/ WorkspaceSwitcherTest.php, line 72
Class
- WorkspaceSwitcherTest
- Tests workspace switching functionality.
Namespace
Drupal\Tests\workspaces\FunctionalCode
public function testQueryParameterNegotiator() {
$web_assert = $this
->assertSession();
// Initially the default workspace should be active.
$web_assert
->elementContains('css', '#block-workspaceswitcher', 'None');
// When adding a query parameter the workspace will be switched.
$current_user_url = \Drupal::currentUser()
->getAccount()
->toUrl();
$this
->drupalGet($current_user_url, [
'query' => [
'workspace' => 'stage',
],
]);
$web_assert
->elementContains('css', '#block-workspaceswitcher', 'Stage');
// The workspace switching via query parameter should persist.
$this
->drupalGet($current_user_url);
$web_assert
->elementContains('css', '#block-workspaceswitcher', 'Stage');
// Check that WorkspaceCacheContext provides the cache context used to
// support its functionality.
$this
->assertCacheContext('session');
}