FormCacheTest.php

Contains \Drupal\system\Tests\Form\FormCacheTest.

Namespace

Drupal\system\Tests\Form

File

drupal/core/modules/system/lib/Drupal/system/Tests/Form/FormCacheTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\system\Tests\Form\FormCacheTest.
 */
namespace Drupal\system\Tests\Form;

use Drupal\simpletest\DrupalUnitTestBase;

/**
 * Tests form caching.
 */
class FormCacheTest extends DrupalUnitTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  public static $modules = array(
    'system',
    'user',
  );
  public static function getInfo() {
    return array(
      'name' => 'Form cache tests',
      'description' => 'Tests form_set_cache() and form_get_cache()',
      'group' => 'Form API',
    );
  }
  public function setUp() {
    parent::setUp();
    $this
      ->installSchema('system', array(
      'key_value_expire',
    ));
    $this->form_build_id = $this
      ->randomName();
    $this->form = array(
      '#property' => $this
        ->randomName(),
    );
    $this->form_state = form_state_defaults();
    $this->form_state['example'] = $this
      ->randomName();
  }

  /**
   * Tests the form cache with a logged-in user.
   */
  function testCacheToken() {
    $GLOBALS['user']->uid = 1;
    form_set_cache($this->form_build_id, $this->form, $this->form_state);
    $cached_form_state = form_state_defaults();
    $cached_form = form_get_cache($this->form_build_id, $cached_form_state);
    $this
      ->assertEqual($this->form['#property'], $cached_form['#property']);
    $this
      ->assertTrue(!empty($cached_form['#cache_token']), 'Form has a cache token');
    $this
      ->assertEqual($this->form_state['example'], $cached_form_state['example']);

    // Test that the form cache isn't loaded when the session/token has changed.
    // Change the private key. (We cannot change the session ID because this
    // will break the parent site test runner batch.)
    \Drupal::state()
      ->set('system.private_key', 'invalid');
    $cached_form_state = form_state_defaults();
    $cached_form = form_get_cache($this->form_build_id, $cached_form_state);
    $this
      ->assertFalse($cached_form, 'No form returned from cache');
    $this
      ->assertTrue(empty($cached_form_state['example']));

    // Test that loading the cache with a different form_id fails.
    $wrong_form_build_id = $this
      ->randomName(9);
    $cached_form_state = form_state_defaults();
    $this
      ->assertFalse(form_get_cache($wrong_form_build_id, $cached_form_state), 'No form returned from cache');
    $this
      ->assertTrue(empty($cached_form_state['example']), 'Cached form state was not loaded');
  }

  /**
   * Tests the form cache without a logged-in user.
   */
  function testNoCacheToken() {
    $GLOBALS['user']->uid = 0;
    $this->form_state['example'] = $this
      ->randomName();
    form_set_cache($this->form_build_id, $this->form, $this->form_state);
    $cached_form_state = form_state_defaults();
    $cached_form = form_get_cache($this->form_build_id, $cached_form_state);
    $this
      ->assertEqual($this->form['#property'], $cached_form['#property']);
    $this
      ->assertTrue(empty($cached_form['#cache_token']), 'Form has no cache token');
    $this
      ->assertEqual($this->form_state['example'], $cached_form_state['example']);
  }

}

Classes

Namesort descending Description
FormCacheTest Tests form caching.