class AjaxCommandsUnitTest

Tests for all AJAX Commands.

Hierarchy

Expanded class hierarchy of AjaxCommandsUnitTest

File

drupal/core/modules/system/lib/Drupal/system/Tests/Ajax/AjaxCommandsUnitTest.php, line 31
Definition of Drupal\system\Tests\Ajax\AjaxCommandsUnitTest.

Namespace

Drupal\system\Tests\Ajax
View source
class AjaxCommandsUnitTest extends UnitTestBase {
  public static function getInfo() {
    return array(
      'name' => 'Ajax Command Objects',
      'description' => 'Test that each AJAX command object can be created and rendered',
      'group' => 'AJAX',
    );
  }

  /**
   * Tests that AddCssCommand objects can be constructed and rendered.
   */
  function testAddCssCommand() {
    $command = new AddCssCommand('p{ text-decoration:blink; }');
    $expected = array(
      'command' => 'add_css',
      'data' => 'p{ text-decoration:blink; }',
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'AddCssCommand::render() returns a proper array.');
  }

  /**
   * Tests that AfterCommand objecst can be constructed and rendered.
   */
  function testAfterCommand() {
    $command = new AfterCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'after',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'AfterCommand::render() returns a proper array.');
  }

  /**
   * Tests that AlertCommand objects can be constructed and rendered.
   */
  function testAlertCommand() {
    $command = new AlertCommand('Set condition 1 throughout the ship!');
    $expected = array(
      'command' => 'alert',
      'text' => 'Set condition 1 throughout the ship!',
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'AlertCommand::render() returns a proper array.');
  }

  /**
   * Tests that AppendCommand objects can be constructed and rendered.
   */
  function testAppendCommand() {

    // Test AppendCommand.
    $command = new AppendCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'append',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'AppendCommand::render() returns a proper array.');
  }

  /**
   * Tests that BeforeCommand objects can be constructed and rendered.
   */
  function testBeforeCommand() {
    $command = new BeforeCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'before',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'BeforeCommand::render() returns a proper array.');
  }

  /**
   * Tests that ChangedCommand objects can be constructed and rendered.
   */
  function testChangedCommand() {
    $command = new ChangedCommand('#page-title', '#page-title-changed');
    $expected = array(
      'command' => 'changed',
      'selector' => '#page-title',
      'asterisk' => '#page-title-changed',
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'ChangedCommand::render() returns a proper array.');
  }

  /**
   * Tests that CssCommand objects can be constructed and rendered.
   */
  function testCssCommand() {
    $command = new CssCommand('#page-title', array(
      'text-decoration' => 'blink',
    ));
    $command
      ->setProperty('font-size', '40px')
      ->setProperty('font-weight', 'bold');
    $expected = array(
      'command' => 'css',
      'selector' => '#page-title',
      'argument' => array(
        'text-decoration' => 'blink',
        'font-size' => '40px',
        'font-weight' => 'bold',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'CssCommand::render() returns a proper array.');
  }

  /**
   * Tests that DataCommand objects can be constructed and rendered.
   */
  function testDataCommand() {
    $command = new DataCommand('#page-title', 'my-data', array(
      'key' => 'value',
    ));
    $expected = array(
      'command' => 'data',
      'selector' => '#page-title',
      'name' => 'my-data',
      'value' => array(
        'key' => 'value',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'DataCommand::render() returns a proper array.');
  }

  /**
   * Tests that HtmlCommand objects can be constructed and rendered.
   */
  function testHtmlCommand() {
    $command = new HtmlCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'html',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'HtmlCommand::render() returns a proper array.');
  }

  /**
   * Tests that InsertCommand objects can be constructed and rendered.
   */
  function testInsertCommand() {
    $command = new InsertCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => NULL,
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'InsertCommand::render() returns a proper array.');
  }

  /**
   * Tests that InvokeCommand objects can be constructed and rendered.
   */
  function testInvokeCommand() {
    $command = new InvokeCommand('#page-title', 'myMethod', array(
      'var1',
      'var2',
    ));
    $expected = array(
      'command' => 'invoke',
      'selector' => '#page-title',
      'method' => 'myMethod',
      'args' => array(
        'var1',
        'var2',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'InvokeCommand::render() returns a proper array.');
  }

  /**
   * Tests that PrependCommand objects can be constructed and rendered.
   */
  function testPrependCommand() {
    $command = new PrependCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'prepend',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'PrependCommand::render() returns a proper array.');
  }

  /**
   * Tests that RemoveCommand objects can be constructed and rendered.
   */
  function testRemoveCommand() {
    $command = new RemoveCommand('#page-title');
    $expected = array(
      'command' => 'remove',
      'selector' => '#page-title',
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'RemoveCommand::render() returns a proper array.');
  }

  /**
   * Tests that ReplaceCommand objects can be constructed and rendered.
   */
  function testReplaceCommand() {
    $command = new ReplaceCommand('#page-title', '<p>New Text!</p>', array(
      'my-setting' => 'setting',
    ));
    $expected = array(
      'command' => 'insert',
      'method' => 'replaceWith',
      'selector' => '#page-title',
      'data' => '<p>New Text!</p>',
      'settings' => array(
        'my-setting' => 'setting',
      ),
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'ReplaceCommand::render() returns a proper array.');
  }

  /**
   * Tests that RestripeCommand objects can be constructed and rendered.
   */
  function testRestripeCommand() {
    $command = new RestripeCommand('#page-title');
    $expected = array(
      'command' => 'restripe',
      'selector' => '#page-title',
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'RestripeCommand::render() returns a proper array.');
  }

  /**
   * Tests that SettingsCommand objects can be constructed and rendered.
   */
  function testSettingsCommand() {
    $command = new SettingsCommand(array(
      'key' => 'value',
    ), TRUE);
    $expected = array(
      'command' => 'settings',
      'settings' => array(
        'key' => 'value',
      ),
      'merge' => TRUE,
    );
    $this
      ->assertEqual($command
      ->render(), $expected, 'SettingsCommand::render() returns a proper array.');
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AjaxCommandsUnitTest::getInfo public static function
AjaxCommandsUnitTest::testAddCssCommand function Tests that AddCssCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testAfterCommand function Tests that AfterCommand objecst can be constructed and rendered.
AjaxCommandsUnitTest::testAlertCommand function Tests that AlertCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testAppendCommand function Tests that AppendCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testBeforeCommand function Tests that BeforeCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testChangedCommand function Tests that ChangedCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testCssCommand function Tests that CssCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testDataCommand function Tests that DataCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testHtmlCommand function Tests that HtmlCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testInsertCommand function Tests that InsertCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testInvokeCommand function Tests that InvokeCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testPrependCommand function Tests that PrependCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testRemoveCommand function Tests that RemoveCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testReplaceCommand function Tests that ReplaceCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testRestripeCommand function Tests that RestripeCommand objects can be constructed and rendered.
AjaxCommandsUnitTest::testSettingsCommand function Tests that SettingsCommand objects can be constructed and rendered.
TestBase::$assertions protected property Assertions thrown in that test case.
TestBase::$databasePrefix protected property The database prefix of this test run.
TestBase::$originalFileDirectory protected property The original file directory, before it was changed for testing purposes.
TestBase::$originalPrefix protected property The original database prefix when running inside Simpletest.
TestBase::$results public property Current results of this test case.
TestBase::$setup protected property Flag to indicate whether the test has been set up.
TestBase::$setupDatabasePrefix protected property
TestBase::$setupEnvironment protected property
TestBase::$skipClasses protected property This class is skipped when looking for the source of an assertion.
TestBase::$testId protected property The test run ID.
TestBase::$timeLimit protected property Time limit for the test.
TestBase::$verbose protected property TRUE if verbose debugging is enabled.
TestBase::$verboseClassName protected property Safe class name for use in verbose output filenames.
TestBase::$verboseDirectory protected property Directory where verbose output files are put.
TestBase::$verboseDirectoryUrl protected property URL to the verbose output file directory.
TestBase::$verboseId protected property Incrementing identifier for verbose output filenames.
TestBase::assert protected function Internal helper: stores the assert.
TestBase::assertEqual protected function Check to see if two values are equal.
TestBase::assertFalse protected function Check to see if a value is false (an empty string, 0, NULL, or FALSE).
TestBase::assertIdentical protected function Check to see if two values are identical.
TestBase::assertIdenticalObject protected function Checks to see if two objects are identical.
TestBase::assertNotEqual protected function Check to see if two values are not equal.
TestBase::assertNotIdentical protected function Check to see if two values are not identical.
TestBase::assertNotNull protected function Check to see if a value is not NULL.
TestBase::assertNull protected function Check to see if a value is NULL.
TestBase::assertTrue protected function Check to see if a value is not false (not an empty string, 0, NULL, or FALSE).
TestBase::changeDatabasePrefix protected function Changes the database connection to the prefixed one.
TestBase::checkRequirements protected function Checks the matching requirements for Test. 3
TestBase::deleteAssert public static function Delete an assertion record by message ID.
TestBase::error protected function Fire an error assertion. 1
TestBase::errorHandler public function Handle errors during test runs.
TestBase::exceptionHandler protected function Handle exceptions.
TestBase::fail protected function Fire an assertion that is always negative.
TestBase::filePreDeleteCallback public static function Ensures test files are deletable within file_unmanaged_delete_recursive().
TestBase::generatePermutations public static function Converts a list of possible parameters into a stack of permutations.
TestBase::getAssertionCall protected function Cycles through backtrace until the first non-assertion method is found.
TestBase::getDatabaseConnection public static function Returns the database connection to the site running Simpletest.
TestBase::insertAssert public static function Store an assertion from outside the testing context.
TestBase::pass protected function Fire an assertion that is always positive.
TestBase::prepareDatabasePrefix protected function Generates a database prefix for running tests.
TestBase::prepareEnvironment protected function Prepares the current environment for running the test.
TestBase::randomName public static function Generates a random string containing letters and numbers.
TestBase::randomObject public static function Generates a random PHP object.
TestBase::randomString public static function Generates a random string of ASCII characters of codes 32 to 126.
TestBase::rebuildContainer protected function Rebuild drupal_container().
TestBase::run public function Run all tests in this class.
TestBase::tearDown protected function Deletes created files, database tables, and reverts all environment changes. 10
TestBase::verbose protected function Logs verbose message in a text file.
UnitTestBase::$configDirectories protected property
UnitTestBase::setUp protected function Sets up unit test environment. 22
UnitTestBase::__construct function Constructor for UnitTestBase. Overrides TestBase::__construct 6