public function WorkspaceSwitcherTest::testSwitchingWorkspaces in Drupal 8
Same name and namespace in other branches
- 9 core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php \Drupal\Tests\workspaces\Functional\WorkspaceSwitcherTest::testSwitchingWorkspaces()
- 10 core/modules/workspaces/tests/src/Functional/WorkspaceSwitcherTest.php \Drupal\Tests\workspaces\Functional\WorkspaceSwitcherTest::testSwitchingWorkspaces()
Test switching workspace via the switcher block and admin page.
File
- core/
modules/ workspaces/ tests/ src/ Functional/ WorkspaceSwitcherTest.php, line 50
Class
- WorkspaceSwitcherTest
- Tests workspace switching functionality.
Namespace
Drupal\Tests\workspaces\FunctionalCode
public function testSwitchingWorkspaces() {
$vultures = $this
->createWorkspaceThroughUi('Vultures', 'vultures');
$this
->switchToWorkspace($vultures);
$gravity = $this
->createWorkspaceThroughUi('Gravity', 'gravity');
$this
->drupalGet('/admin/config/workflow/workspaces/manage/' . $gravity
->id() . '/activate');
$this
->assertSession()
->statusCodeEquals(200);
$page = $this
->getSession()
->getPage();
$page
->findButton('Confirm')
->click();
// Check that WorkspaceCacheContext provides the cache context used to
// support its functionality.
$this
->assertCacheContext('session');
$page
->findLink($gravity
->label());
}