class AjaxRendererTest in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/tests/Drupal/Tests/Core/Controller/AjaxRendererTest.php \Drupal\Tests\Core\Controller\AjaxRendererTest
@coversDefaultClass \Drupal\Core\Render\MainContent\AjaxRenderer @group Ajax
Hierarchy
- class \Drupal\Tests\UnitTestCase extends \Drupal\Tests\PHPUnit_Framework_TestCase
- class \Drupal\Tests\Core\Controller\AjaxRendererTest
Expanded class hierarchy of AjaxRendererTest
File
- core/
tests/ Drupal/ Tests/ Core/ Controller/ AjaxRendererTest.php, line 19 - Contains \Drupal\Tests\Core\Controller\AjaxRendererTest.
Namespace
Drupal\Tests\Core\ControllerView source
class AjaxRendererTest extends UnitTestCase {
/**
* The tested ajax controller.
*
* @var \Drupal\Core\Render\MainContent\AjaxRenderer
*/
protected $ajaxRenderer;
/**
* The renderer.
*
* @var \Drupal\Core\Render\RendererInterface|\PHPUnit_Framework_MockObject_MockObject
*/
protected $renderer;
/**
* {@inheritdoc}
*/
protected function setUp() {
$element_info_manager = $this
->getMock('Drupal\\Core\\Render\\ElementInfoManagerInterface');
$element_info_manager
->expects($this
->any())
->method('getInfo')
->with('ajax')
->willReturn([
'#header' => TRUE,
'#commands' => array(),
'#error' => NULL,
]);
$this->ajaxRenderer = new TestAjaxRenderer($element_info_manager);
$this->renderer = $this
->getMockBuilder('Drupal\\Core\\Render\\Renderer')
->disableOriginalConstructor()
->setMethods(NULL)
->getMock();
$container = new ContainerBuilder();
$container
->set('renderer', $this->renderer);
\Drupal::setContainer($container);
}
/**
* Tests the content method.
*
* @covers ::renderResponse
*/
public function testRenderWithFragmentObject() {
$main_content = [
'#markup' => 'example content',
];
$request = new Request();
$route_match = $this
->getMock('Drupal\\Core\\Routing\\RouteMatchInterface');
/** @var \Drupal\Core\Ajax\AjaxResponse $result */
$result = $this->ajaxRenderer
->renderResponse($main_content, $request, $route_match);
$this
->assertInstanceOf('Drupal\\Core\\Ajax\\AjaxResponse', $result);
$commands = $result
->getCommands();
$this
->assertEquals('insert', $commands[0]['command']);
$this
->assertEquals('example content', $commands[0]['data']);
$this
->assertEquals('insert', $commands[1]['command']);
$this
->assertEquals('status_messages', $commands[1]['data']);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
AjaxRendererTest:: |
protected | property | The tested ajax controller. | |
AjaxRendererTest:: |
protected | property | The renderer. | |
AjaxRendererTest:: |
protected | function |
Overrides UnitTestCase:: |
|
AjaxRendererTest:: |
public | function | Tests the content method. | |
UnitTestCase:: |
protected | property | The random generator. | |
UnitTestCase:: |
protected | property | The app root. | |
UnitTestCase:: |
protected | function | Asserts if two arrays are equal by sorting them first. | |
UnitTestCase:: |
protected | function | Mocks a block with a block plugin. | |
UnitTestCase:: |
protected | function | Returns a stub class resolver. | |
UnitTestCase:: |
public | function | Returns a stub config factory that behaves according to the passed in array. | |
UnitTestCase:: |
public | function | Returns a stub config storage that returns the supplied configuration. | |
UnitTestCase:: |
protected | function | Sets up a container with a cache tags invalidator. | |
UnitTestCase:: |
protected | function | Gets the random generator for the utility methods. | |
UnitTestCase:: |
public | function | Returns a stub translation manager that just returns the passed string. | |
UnitTestCase:: |
public | function | Generates a unique random string containing letters and numbers. |