You are here

protected function AjaxTestBase::assertCommand in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Ajax/AjaxTestBase.php \Drupal\system\Tests\Ajax\AjaxTestBase::assertCommand()

Asserts the array of Ajax commands contains the searched command.

An AjaxResponse object stores an array of Ajax commands. This array sometimes includes commands automatically provided by the framework in addition to commands returned by a particular controller. During testing, we're usually interested that a particular command is present, and don't care whether other commands precede or follow the one we're interested in. Additionally, the command we're interested in may include additional data that we're not interested in. Therefore, this function simply asserts that one of the commands in $haystack contains all of the keys and values in $needle. Furthermore, if $needle contains a 'settings' key with an array value, we simply assert that all keys and values within that array are present in the command we're checking, and do not consider it a failure if the actual command contains additional settings that aren't part of $needle.

Parameters

$haystack: An array of rendered Ajax commands returned by the server.

$needle: Array of info we're expecting in one of those commands.

$message: An assertion message.

8 calls to AjaxTestBase::assertCommand()
AjaxFormPageCacheTest::testSimpleAJAXFormValue in core/modules/system/src/Tests/Ajax/AjaxFormPageCacheTest.php
Create a simple form, then submit the form via AJAX to change to it.
CommandsTest::testAjaxCommands in core/modules/system/src/Tests/Ajax/CommandsTest.php
Tests the various Ajax Commands.
CommandsTest::testAttachedSettings in core/modules/system/src/Tests/Ajax/CommandsTest.php
Regression test: Settings command exists regardless of JS aggregation.
FormValuesTest::testSimpleAjaxFormValue in core/modules/system/src/Tests/Ajax/FormValuesTest.php
Submits forms with select and checkbox elements via Ajax.
FrameworkTest::testAJAXRender in core/modules/system/src/Tests/Ajax/FrameworkTest.php
Ensures \Drupal\Core\Ajax\AjaxResponse::ajaxRender() returns JavaScript settings from the page request.

... See full list

File

core/modules/system/src/Tests/Ajax/AjaxTestBase.php, line 48
Contains \Drupal\system\Tests\Ajax\AjaxTestBase.

Class

AjaxTestBase
Provides a base class for Ajax tests.

Namespace

Drupal\system\Tests\Ajax

Code

protected function assertCommand($haystack, $needle, $message) {
  $found = FALSE;
  foreach ($haystack as $command) {

    // If the command has additional settings that we're not testing for, do
    // not consider that a failure.
    if (isset($command['settings']) && is_array($command['settings']) && isset($needle['settings']) && is_array($needle['settings'])) {
      $command['settings'] = array_intersect_key($command['settings'], $needle['settings']);
    }

    // If the command has additional data that we're not testing for, do not
    // consider that a failure. Also, == instead of ===, because we don't
    // require the key/value pairs to be in any particular order
    // (http://www.php.net/manual/language.operators.array.php).
    if (array_intersect_key($command, $needle) == $needle) {
      $found = TRUE;
      break;
    }
  }
  $this
    ->assertTrue($found, $message);
}