Test shutdown functions.

File

modules/system/system.test, line 2799
Tests for system.module.

Class

ShutdownFunctionsTest
Functional tests shutdown functions.

Code

function testShutdownFunctions() {
  $arg1 = $this
    ->randomName();
  $arg2 = $this
    ->randomName();
  $this
    ->drupalGet('system-test/shutdown-functions/' . $arg1 . '/' . $arg2);
  $this
    ->assertText(t('First shutdown function, arg1 : @arg1, arg2: @arg2', array(
    '@arg1' => $arg1,
    '@arg2' => $arg2,
  )));
  $this
    ->assertText(t('Second shutdown function, arg1 : @arg1, arg2: @arg2', array(
    '@arg1' => $arg1,
    '@arg2' => $arg2,
  )));

  // Make sure exceptions displayed through _drupal_render_exception_safe()
  // are correctly escaped.
  $this
    ->assertRaw('Drupal is <blink>awesome</blink>.');
}