View source
<?php
namespace Drupal\Tests\Core\Form;
use Drupal\Core\Form\FormCache;
use Drupal\Core\Form\FormState;
use Drupal\Tests\UnitTestCase;
class FormCacheTest extends UnitTestCase {
protected $formCache;
protected $keyValueExpirableFactory;
protected $account;
protected $csrfToken;
protected $moduleHandler;
protected $formCacheStore;
protected $formStateCacheStore;
protected $logger;
protected $requestStack;
protected $requestPolicy;
protected $runTestInSeparateProcess = TRUE;
protected $preserveGlobalState = FALSE;
protected function setUp() {
parent::setUp();
$this->moduleHandler = $this
->createMock('Drupal\\Core\\Extension\\ModuleHandlerInterface');
$this->formCacheStore = $this
->createMock('Drupal\\Core\\KeyValueStore\\KeyValueStoreExpirableInterface');
$this->formStateCacheStore = $this
->createMock('Drupal\\Core\\KeyValueStore\\KeyValueStoreExpirableInterface');
$this->keyValueExpirableFactory = $this
->createMock('Drupal\\Core\\KeyValueStore\\KeyValueExpirableFactoryInterface');
$this->keyValueExpirableFactory
->expects($this
->any())
->method('get')
->will($this
->returnValueMap([
[
'form',
$this->formCacheStore,
],
[
'form_state',
$this->formStateCacheStore,
],
]));
$this->csrfToken = $this
->getMockBuilder('Drupal\\Core\\Access\\CsrfTokenGenerator')
->disableOriginalConstructor()
->getMock();
$this->account = $this
->createMock('Drupal\\Core\\Session\\AccountInterface');
$this->logger = $this
->createMock('Psr\\Log\\LoggerInterface');
$this->requestStack = $this
->createMock('\\Symfony\\Component\\HttpFoundation\\RequestStack');
$this->requestPolicy = $this
->createMock('\\Drupal\\Core\\PageCache\\RequestPolicyInterface');
$this->formCache = new FormCache($this->root, $this->keyValueExpirableFactory, $this->moduleHandler, $this->account, $this->csrfToken, $this->logger, $this->requestStack, $this->requestPolicy);
}
public function testGetCacheValidToken() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cache_token = 'the_cache_token';
$cached_form = [
'#cache_token' => $cache_token,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->csrfToken
->expects($this
->once())
->method('validate')
->with($cache_token)
->willReturn(TRUE);
$this->account
->expects($this
->never())
->method('isAnonymous');
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertSame($cached_form, $form);
}
public function testGetCacheInvalidToken() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cache_token = 'the_cache_token';
$cached_form = [
'#cache_token' => $cache_token,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->csrfToken
->expects($this
->once())
->method('validate')
->with($cache_token)
->willReturn(FALSE);
$this->account
->expects($this
->never())
->method('isAnonymous');
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertNull($form);
}
public function testGetCacheAnonUser() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cached_form = [
'#cache_token' => NULL,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->account
->expects($this
->once())
->method('isAnonymous')
->willReturn(TRUE);
$this->csrfToken
->expects($this
->never())
->method('validate');
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertSame($cached_form, $form);
}
public function testGetCacheAuthUser() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cached_form = [
'#cache_token' => NULL,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->account
->expects($this
->once())
->method('isAnonymous')
->willReturn(FALSE);
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertNull($form);
}
public function testGetCacheNoForm() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cached_form = NULL;
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->account
->expects($this
->never())
->method('isAnonymous');
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertNull($form);
}
public function testGetCacheImmutableForm() {
$form_build_id = 'the_form_build_id';
$form_state = (new FormState())
->addBuildInfo('immutable', TRUE);
$cached_form = [
'#build_id' => 'the_old_build_form_id',
];
$this->account
->expects($this
->once())
->method('isAnonymous')
->willReturn(TRUE);
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$form = $this->formCache
->getCache($form_build_id, $form_state);
$this
->assertSame($cached_form['#build_id'], $form['#build_id_old']);
$this
->assertNotSame($cached_form['#build_id'], $form['#build_id']);
$this
->assertSame($form['#build_id'], $form['form_build_id']['#value']);
$this
->assertSame($form['#build_id'], $form['form_build_id']['#id']);
}
public function testLoadCachedFormState() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cached_form = [
'#cache_token' => NULL,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->account
->expects($this
->once())
->method('isAnonymous')
->willReturn(TRUE);
$cached_form_state = [
'storage' => [
'foo' => 'bar',
],
];
$this->formStateCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form_state);
$this->formCache
->getCache($form_build_id, $form_state);
$this
->assertSame($cached_form_state['storage'], $form_state
->getStorage());
}
public function testLoadCachedFormStateWithFiles() {
$form_build_id = 'the_form_build_id';
$form_state = new FormState();
$cached_form = [
'#cache_token' => NULL,
];
$this->formCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form);
$this->account
->expects($this
->once())
->method('isAnonymous')
->willReturn(TRUE);
$cached_form_state = [
'build_info' => [
'files' => [
[
'module' => 'a_module',
'type' => 'the_type',
'name' => 'some_name',
],
[
'module' => 'another_module',
],
],
],
];
$this->moduleHandler
->expects($this
->at(0))
->method('loadInclude')
->with('a_module', 'the_type', 'some_name');
$this->moduleHandler
->expects($this
->at(1))
->method('loadInclude')
->with('another_module', 'inc', 'another_module');
$this->formStateCacheStore
->expects($this
->once())
->method('get')
->with($form_build_id)
->willReturn($cached_form_state);
$this->formCache
->getCache($form_build_id, $form_state);
}
public function testSetCacheWithForm() {
$form_build_id = 'the_form_build_id';
$form = [
'#form_id' => 'the_form_id',
];
$form_state = new FormState();
$this->formCacheStore
->expects($this
->once())
->method('setWithExpire')
->with($form_build_id, $form, $this
->isType('int'));
$form_state_data = $form_state
->getCacheableArray();
$this->formStateCacheStore
->expects($this
->once())
->method('setWithExpire')
->with($form_build_id, $form_state_data, $this
->isType('int'));
$this->formCache
->setCache($form_build_id, $form, $form_state);
}
public function testSetCacheWithoutForm() {
$form_build_id = 'the_form_build_id';
$form = NULL;
$form_state = new FormState();
$this->formCacheStore
->expects($this
->never())
->method('setWithExpire');
$form_state_data = $form_state
->getCacheableArray();
$this->formStateCacheStore
->expects($this
->once())
->method('setWithExpire')
->with($form_build_id, $form_state_data, $this
->isType('int'));
$this->formCache
->setCache($form_build_id, $form, $form_state);
}
public function testSetCacheAuthUser() {
$form_build_id = 'the_form_build_id';
$form = [];
$form_state = new FormState();
$cache_token = 'the_cache_token';
$form_data = $form;
$form_data['#cache_token'] = $cache_token;
$this->formCacheStore
->expects($this
->once())
->method('setWithExpire')
->with($form_build_id, $form_data, $this
->isType('int'));
$form_state_data = $form_state
->getCacheableArray();
$this->formStateCacheStore
->expects($this
->once())
->method('setWithExpire')
->with($form_build_id, $form_state_data, $this
->isType('int'));
$this->csrfToken
->expects($this
->once())
->method('get')
->willReturn($cache_token);
$this->account
->expects($this
->once())
->method('isAuthenticated')
->willReturn(TRUE);
$this->formCache
->setCache($form_build_id, $form, $form_state);
}
public function testSetCacheBuildIdMismatch() {
$form_build_id = 'the_form_build_id';
$form = [
'#form_id' => 'the_form_id',
'#build_id' => 'stale_form_build_id',
];
$form_state = new FormState();
$this->formCacheStore
->expects($this
->never())
->method('setWithExpire');
$this->formStateCacheStore
->expects($this
->never())
->method('setWithExpire');
$this->logger
->expects($this
->once())
->method('error')
->with('Form build-id mismatch detected while attempting to store a form in the cache.');
$this->formCache
->setCache($form_build_id, $form, $form_state);
}
public function testDeleteCache() {
$form_build_id = 'the_form_build_id';
$this->formCacheStore
->expects($this
->once())
->method('delete')
->with($form_build_id);
$this->formStateCacheStore
->expects($this
->once())
->method('delete')
->with($form_build_id);
$this->formCache
->deleteCache($form_build_id);
}
}