WorkspaceToolbarIntegrationTest.php

Same filename and directory in other branches
  1. 9 core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
  2. 8.9.x core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php
  3. 10 core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php

Namespace

Drupal\Tests\workspaces\FunctionalJavascript

File

core/modules/workspaces/tests/src/FunctionalJavascript/WorkspaceToolbarIntegrationTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\workspaces\FunctionalJavascript;

use Drupal\Tests\system\FunctionalJavascript\OffCanvasTestBase;

/**
 * Tests workspace settings stray integration.
 *
 * @group workspaces
 */
class WorkspaceToolbarIntegrationTest extends OffCanvasTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'toolbar',
        'workspaces',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $admin_user = $this->drupalCreateUser([
            'administer workspaces',
            'access toolbar',
            'access administration pages',
        ]);
        $this->drupalLogin($admin_user);
    }
    
    /**
     * Tests workspace canvas can be toggled with JavaScript.
     */
    public function testWorkspaceCanvasToggling() : void {
        $page = $this->getSession()
            ->getPage();
        $assert_session = $this->assertSession();
        // Set size for horizontal toolbar.
        $this->getSession()
            ->resizeWindow(1200, 600);
        $this->drupalGet('<front>');
        // Wait for toolbar to appear.
        $this->assertNotEmpty($assert_session->waitForElement('css', 'body.toolbar-horizontal'));
        // Open workspace canvas.
        $page->clickLink('Switch workspace');
        $this->waitForOffCanvasToOpen('top');
        $assert_session->elementExists('css', '.workspaces-dialog');
        // Close Canvas.
        $page->pressButton('Close');
        $this->waitForOffCanvasToClose();
        $assert_session->assertNoElementAfterWait('css', '.workspaces-dialog');
    }
    
    /**
     * Tests workspace switch and landing page behavior.
     */
    public function testWorkspaceSwitch() : void {
        $page = $this->getSession()
            ->getPage();
        $assert_session = $this->assertSession();
        // Wait for toolbar to appear.
        $this->getSession()
            ->resizeWindow(1200, 600);
        $this->drupalGet('admin');
        // Wait for toolbar to appear.
        $this->assertNotEmpty($assert_session->waitForElement('css', 'body.toolbar-horizontal'));
        // Open workspace canvas.
        $page->clickLink('Switch workspace');
        $this->waitForOffCanvasToOpen('top');
        // Click 'stage' workspace and confirm switch.
        $page->clickLink('Stage');
        $this->assertElementVisibleAfterWait('css', '.workspace-activate-form.workspace-confirm-form');
        $page->find('css', '.ui-dialog-buttonset .button--primary')
            ->click();
        $assert_session->statusMessageContainsAfterWait('Stage is now the active workspace.', 'status');
        // Make sure we stay on same page after switch.
        $assert_session->addressEquals('admin');
    }

}

Classes

Title Deprecated Summary
WorkspaceToolbarIntegrationTest Tests workspace settings stray integration.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.