View source
<?php
namespace Drupal\Tests\Core\Render\Element;
use Drupal\Core\DependencyInjection\ContainerBuilder;
use Drupal\Core\Form\FormBuilderInterface;
use Drupal\Core\GeneratedUrl;
use Drupal\Core\Render\Element\RenderElement;
use Drupal\Tests\UnitTestCase;
use Symfony\Component\HttpFoundation\Request;
use Symfony\Component\HttpFoundation\RequestStack;
class RenderElementTest extends UnitTestCase {
protected $requestStack;
protected $container;
protected function setUp() {
parent::setUp();
$this->requestStack = new RequestStack();
$this->container = new ContainerBuilder();
$this->container
->set('request_stack', $this->requestStack);
\Drupal::setContainer($this->container);
}
public function testPreRenderAjaxForm() {
$request = Request::create('/test');
$request->query
->set('foo', 'bar');
$this->requestStack
->push($request);
$prophecy = $this
->prophesize('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url = '/test?foo=bar&ajax_form=1';
$prophecy
->generateFromRoute('<current>', [], [
'query' => [
'foo' => 'bar',
FormBuilderInterface::AJAX_FORM_REQUEST => TRUE,
],
], TRUE)
->willReturn((new GeneratedUrl())
->setCacheContexts([
'route',
])
->setGeneratedUrl($url));
$url_generator = $prophecy
->reveal();
$this->container
->set('url_generator', $url_generator);
$element = [
'#type' => 'select',
'#id' => 'test',
'#ajax' => [
'wrapper' => 'foo',
'callback' => 'test-callback',
],
];
$element = RenderElement::preRenderAjaxForm($element);
$this
->assertTrue($element['#ajax_processed']);
$this
->assertEquals($url, $element['#attached']['drupalSettings']['ajax']['test']['url']);
}
public function testPreRenderAjaxFormWithQueryOptions() {
$request = Request::create('/test');
$request->query
->set('foo', 'bar');
$this->requestStack
->push($request);
$prophecy = $this
->prophesize('Drupal\\Core\\Routing\\UrlGeneratorInterface');
$url = '/test?foo=bar&other=query&ajax_form=1';
$prophecy
->generateFromRoute('<current>', [], [
'query' => [
'foo' => 'bar',
'other' => 'query',
FormBuilderInterface::AJAX_FORM_REQUEST => TRUE,
],
], TRUE)
->willReturn((new GeneratedUrl())
->setCacheContexts([
'route',
])
->setGeneratedUrl($url));
$url_generator = $prophecy
->reveal();
$this->container
->set('url_generator', $url_generator);
$element = [
'#type' => 'select',
'#id' => 'test',
'#ajax' => [
'wrapper' => 'foo',
'callback' => 'test-callback',
'options' => [
'query' => [
'other' => 'query',
],
],
],
];
$element = RenderElement::preRenderAjaxForm($element);
$this
->assertTrue($element['#ajax_processed']);
$this
->assertEquals($url, $element['#attached']['drupalSettings']['ajax']['test']['url']);
}
}