AjaxPageStateTest.php

Same filename in this branch
  1. 11.x core/tests/Drupal/Tests/Core/StackMiddleware/AjaxPageStateTest.php
Same filename and directory in other branches
  1. 9 core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php
  2. 8.9.x core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php
  3. 10 core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php

Namespace

Drupal\Tests\system\Functional\Render

File

core/modules/system/tests/src/Functional/Render/AjaxPageStateTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\system\Functional\Render;

use Drupal\Component\Utility\UrlHelper;
use Drupal\Tests\BrowserTestBase;

/**
 * Performs tests for the effects of the ajax_page_state query parameter.
 *
 * @group Render
 */
class AjaxPageStateTest extends BrowserTestBase {
  
  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'node',
    'views',
  ];
  
  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';
  
  /**
   * User account with all available permissions.
   *
   * @var \Drupal\Core\Session\AccountInterface
   */
  protected $adminUser;
  
  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    // Create an administrator with all permissions.
    $this->adminUser = $this->drupalCreateUser(array_keys(\Drupal::service('user.permissions')->getPermissions()));
    // Log in so there are more libraries to test for.
    $this->drupalLogin($this->adminUser);
  }
  
  /**
   * Default functionality without the param ajax_page_state[libraries].
   *
   * The libraries active-link and drupalSettings are loaded default from core
   * and available in code as scripts. Do this as the base test.
   */
  public function testLibrariesAvailable() : void {
    $this->drupalGet('node', []);
    // The active link library from core should be loaded.
    $this->assertSession()
      ->responseContains('/core/misc/active-link.js');
    // The drupalSettings library from core should be loaded.
    $this->assertSession()
      ->responseContains('/core/misc/drupalSettingsLoader.js');
  }
  
  /**
   * Give ajax_page_state[libraries]=core/drupalSettings to exclude the library.
   *
   * When called with ajax_page_state[libraries]=core/drupalSettings the library
   * should be excluded as it is already loaded. This should not affect other
   * libraries so test if active-link is still available.
   */
  public function testDrupalSettingsIsNotLoaded() : void {
    $this->drupalGet('node', [
      'query' => [
        'ajax_page_state' => [
          'libraries' => UrlHelper::compressQueryParameter('core/drupalSettings'),
        ],
      ],
    ]);
    // The drupalSettings library from core should be excluded from loading.
    $this->assertSession()
      ->responseNotContains('/core/misc/drupalSettingsLoader.js');
    // The active-link library from core should be loaded.
    $this->assertSession()
      ->responseContains('/core/misc/active-link.js');
  }
  
  /**
   * Tests if multiple libraries can be excluded.
   *
   * The ajax_page_state[libraries] should be able to support multiple libraries
   * comma separated.
   */
  public function testMultipleLibrariesAreNotLoaded() : void {
    $this->drupalGet('node', [
      'query' => [
        'ajax_page_state' => [
          'libraries' => UrlHelper::compressQueryParameter('core/drupal,core/drupalSettings'),
        ],
      ],
    ]);
    $this->assertSession()
      ->statusCodeEquals(200);
    // The drupal library from core should be excluded from loading.
    $this->assertSession()
      ->responseNotContains('/core/misc/drupal.js');
    // The drupalSettings library from core should be excluded from loading.
    $this->assertSession()
      ->responseNotContains('/core/misc/drupalSettingsLoader.js');
    $this->drupalGet('node');
    // The drupal library from core should be included in loading.
    $this->assertSession()
      ->responseContains('/core/misc/drupal.js');
    // The drupalSettings library from core should be included in loading.
    $this->assertSession()
      ->responseContains('/core/misc/drupalSettingsLoader.js');
  }

}

Classes

Title Deprecated Summary
AjaxPageStateTest Performs tests for the effects of the ajax_page_state query parameter.

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