You are here

function FormCacheTest::testCacheToken in Zircon Profile 8.0

Same name and namespace in other branches
  1. 8 core/modules/system/src/Tests/Form/FormCacheTest.php \Drupal\system\Tests\Form\FormCacheTest::testCacheToken()

Tests the form cache with a logged-in user.

File

core/modules/system/src/Tests/Form/FormCacheTest.php, line 60
Contains \Drupal\system\Tests\Form\FormCacheTest.

Class

FormCacheTest
Tests \Drupal::formBuilder()->setCache() and \Drupal::formBuilder()->getCache().

Namespace

Drupal\system\Tests\Form

Code

function testCacheToken() {
  \Drupal::currentUser()
    ->setAccount(new UserSession(array(
    'uid' => 1,
  )));
  \Drupal::formBuilder()
    ->setCache($this->formBuildId, $this->form, $this->formState);
  $cached_form_state = new FormState();
  $cached_form = \Drupal::formBuilder()
    ->getCache($this->formBuildId, $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->formState
    ->get('example'), $cached_form_state
    ->get('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 = new FormState();
  $cached_form = \Drupal::formBuilder()
    ->getCache($this->formBuildId, $cached_form_state);
  $this
    ->assertFalse($cached_form, 'No form returned from cache');
  $cached_form_state_example = $cached_form_state
    ->get('example');
  $this
    ->assertTrue(empty($cached_form_state_example));

  // Test that loading the cache with a different form_id fails.
  $wrong_form_build_id = $this
    ->randomMachineName(9);
  $cached_form_state = new FormState();
  $this
    ->assertFalse(\Drupal::formBuilder()
    ->getCache($wrong_form_build_id, $cached_form_state), 'No form returned from cache');
  $cached_form_state_example = $cached_form_state
    ->get('example');
  $this
    ->assertTrue(empty($cached_form_state_example), 'Cached form state was not loaded');
}