class AjaxRendererTest

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Controller/AjaxRendererTest.php \Drupal\Tests\Core\Controller\AjaxRendererTest
  2. 10 core/tests/Drupal/Tests/Core/Controller/AjaxRendererTest.php \Drupal\Tests\Core\Controller\AjaxRendererTest
  3. 11.x core/tests/Drupal/Tests/Core/Controller/AjaxRendererTest.php \Drupal\Tests\Core\Controller\AjaxRendererTest

@coversDefaultClass \Drupal\Core\Render\MainContent\AjaxRenderer @group Ajax

Hierarchy

Expanded class hierarchy of AjaxRendererTest

File

core/tests/Drupal/Tests/Core/Controller/AjaxRendererTest.php, line 14

Namespace

Drupal\Tests\Core\Controller
View 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() : void {
        $element_info_manager = $this->createMock('Drupal\\Core\\Render\\ElementInfoManagerInterface');
        $element_info_manager->expects($this->any())
            ->method('getInfo')
            ->with('ajax')
            ->willReturn([
            '#header' => TRUE,
            '#commands' => [],
            '#error' => NULL,
        ]);
        $renderer = $this->createMock(RendererInterface::class);
        $renderer->expects($this->any())
            ->method('renderRoot')
            ->willReturnCallback(function (&$elements, $is_root_call = FALSE) {
            $elements += [
                '#attached' => [],
            ];
            if (isset($elements['#markup'])) {
                return $elements['#markup'];
            }
            elseif (isset($elements['#type'])) {
                return $elements['#type'];
            }
            else {
                return 'Markup';
            }
        });
        $this->ajaxRenderer = new AjaxRenderer($element_info_manager, $renderer);
    }
    
    /**
     * Tests the content method.
     *
     * @covers ::renderResponse
     */
    public function testRenderWithFragmentObject() {
        $main_content = [
            '#markup' => 'example content',
        ];
        $request = new Request();
        $route_match = $this->createMock('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

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
AjaxRendererTest::$ajaxRenderer protected property The tested ajax controller.
AjaxRendererTest::$renderer protected property The renderer.
AjaxRendererTest::setUp protected function Overrides UnitTestCase::setUp
AjaxRendererTest::testRenderWithFragmentObject public function Tests the content method.
PhpUnitWarnings::$deprecationWarnings private static property Deprecation warnings from PHPUnit to raise with @trigger_error().
PhpUnitWarnings::addWarning public function Converts PHPUnit deprecation warnings to E_USER_DEPRECATED.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals Deprecated protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.
UnitTestCase::setUpBeforeClass public static function

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.