class FormAjaxSubscriberTest

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

@coversDefaultClass \Drupal\Core\Form\EventSubscriber\FormAjaxSubscriber @group EventSubscriber

Hierarchy

Expanded class hierarchy of FormAjaxSubscriberTest

File

core/tests/Drupal/Tests/Core/Form/EventSubscriber/FormAjaxSubscriberTest.php, line 23

Namespace

Drupal\Tests\Core\Form\EventSubscriber
View source
class FormAjaxSubscriberTest extends UnitTestCase {
    
    /**
     * @var \Drupal\Core\Form\EventSubscriber\FormAjaxSubscriber
     */
    protected $subscriber;
    
    /**
     * @var \Drupal\Core\Form\FormAjaxResponseBuilderInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $formAjaxResponseBuilder;
    
    /**
     * @var \Symfony\Component\HttpKernel\HttpKernelInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $httpKernel;
    
    /**
     * The mocked string translation.
     *
     * @var \Drupal\Core\StringTranslation\TranslationInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $stringTranslation;
    
    /**
     * The mocked messenger.
     *
     * @var \Drupal\Core\Messenger\MessengerInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $messenger;
    
    /**
     * The event used to derive the response.
     *
     * @var \Symfony\Component\HttpKernel\Event\ExceptionEvent
     */
    protected $event = NULL;
    
    /**
     * {@inheritdoc}
     */
    protected function setUp() : void {
        parent::setUp();
        $this->httpKernel = $this->createMock('Symfony\\Component\\HttpKernel\\HttpKernelInterface');
        $this->formAjaxResponseBuilder = $this->createMock('Drupal\\Core\\Form\\FormAjaxResponseBuilderInterface');
        $this->stringTranslation = $this->getStringTranslationStub();
        $this->messenger = $this->createMock(MessengerInterface::class);
        $this->subscriber = new FormAjaxSubscriber($this->formAjaxResponseBuilder, $this->stringTranslation, $this->messenger);
    }
    
    /**
     * @covers ::onException
     */
    public function testOnException() {
        $form = [
            '#type' => 'form',
            '#build_id' => 'the_build_id',
        ];
        $expected_form = $form + [
            '#build_id_old' => 'the_build_id',
        ];
        $form_state = new FormState();
        $exception = new FormAjaxException($form, $form_state);
        $request = new Request([], [
            'form_build_id' => 'the_build_id',
        ]);
        $commands = [];
        $response = new Response('');
        $this->formAjaxResponseBuilder
            ->expects($this->once())
            ->method('buildResponse')
            ->with($request, $expected_form, $form_state, $commands)
            ->willReturn($response);
        $this->assertResponseFromException($request, $exception, $response);
        $this->assertTrue($this->event
            ->isAllowingCustomResponseCode());
        $this->assertSame(200, $this->event
            ->getResponse()
            ->getStatusCode());
    }
    
    /**
     * @covers ::onException
     */
    public function testOnExceptionNewBuildId() {
        $form = [
            '#type' => 'form',
            '#build_id' => 'the_build_id',
        ];
        $expected_form = $form + [
            '#build_id_old' => 'a_new_build_id',
        ];
        $form_state = new FormState();
        $exception = new FormAjaxException($form, $form_state);
        $request = new Request([], [
            'form_build_id' => 'a_new_build_id',
        ]);
        $commands = [];
        $response = new Response('');
        $this->formAjaxResponseBuilder
            ->expects($this->once())
            ->method('buildResponse')
            ->with($request, $expected_form, $form_state, $commands)
            ->willReturn($response);
        $this->assertResponseFromException($request, $exception, $response);
        $this->assertTrue($this->event
            ->isAllowingCustomResponseCode());
        $this->assertSame(200, $this->event
            ->getResponse()
            ->getStatusCode());
    }
    
    /**
     * @covers ::onException
     */
    public function testOnExceptionOtherClass() {
        $request = new Request();
        $exception = new \Exception();
        $this->formAjaxResponseBuilder
            ->expects($this->never())
            ->method('buildResponse');
        $this->assertResponseFromException($request, $exception, NULL);
    }
    
    /**
     * @covers ::onException
     */
    public function testOnExceptionResponseBuilderException() {
        $form = [
            '#type' => 'form',
            '#build_id' => 'the_build_id',
        ];
        $expected_form = $form + [
            '#build_id_old' => 'the_build_id',
        ];
        $form_state = new FormState();
        $exception = new FormAjaxException($form, $form_state);
        $request = new Request([], [
            'form_build_id' => 'the_build_id',
        ]);
        $commands = [];
        $expected_exception = new HttpException(500, 'The specified #ajax callback is empty or not callable.');
        $this->formAjaxResponseBuilder
            ->expects($this->once())
            ->method('buildResponse')
            ->with($request, $expected_form, $form_state, $commands)
            ->willThrowException($expected_exception);
        $this->assertResponseFromException($request, $exception, NULL);
        $this->assertSame($expected_exception, $this->event
            ->getThrowable());
    }
    
    /**
     * @covers ::onException
     */
    public function testOnExceptionBrokenPostRequest() {
        $this->formAjaxResponseBuilder
            ->expects($this->never())
            ->method('buildResponse');
        $this->messenger
            ->expects($this->once())
            ->method('addError');
        $this->subscriber = $this->getMockBuilder('\\Drupal\\Core\\Form\\EventSubscriber\\FormAjaxSubscriber')
            ->setConstructorArgs([
            $this->formAjaxResponseBuilder,
            $this->getStringTranslationStub(),
            $this->messenger,
        ])
            ->onlyMethods([
            'formatSize',
        ])
            ->getMock();
        $this->subscriber
            ->expects($this->once())
            ->method('formatSize')
            ->with(32 * 1000000.0)
            ->willReturn('32M');
        $rendered_output = 'the rendered output';
        // CommandWithAttachedAssetsTrait::getRenderedContent() will call the
        // renderer service via the container.
        $renderer = $this->createMock('Drupal\\Core\\Render\\RendererInterface');
        $renderer->expects($this->once())
            ->method('renderRoot')
            ->with()
            ->willReturnCallback(function (&$elements) use ($rendered_output) {
            $elements['#attached'] = [];
            return $rendered_output;
        });
        $container = new ContainerBuilder();
        $container->set('renderer', $renderer);
        \Drupal::setContainer($container);
        $exception = new BrokenPostRequestException(32 * 1000000.0);
        $request = new Request([
            FormBuilderInterface::AJAX_FORM_REQUEST => TRUE,
        ]);
        $event = new ExceptionEvent($this->httpKernel, $request, HttpKernelInterface::MASTER_REQUEST, $exception);
        $this->subscriber
            ->onException($event);
        $this->assertTrue($event->isAllowingCustomResponseCode());
        $actual_response = $event->getResponse();
        $this->assertInstanceOf('\\Drupal\\Core\\Ajax\\AjaxResponse', $actual_response);
        $this->assertSame(200, $actual_response->getStatusCode());
        $expected_commands[] = [
            'command' => 'insert',
            'method' => 'prepend',
            'selector' => NULL,
            'data' => $rendered_output,
            'settings' => NULL,
        ];
        $this->assertSame($expected_commands, $actual_response->getCommands());
    }
    
    /**
     * @covers ::onException
     * @covers ::getFormAjaxException
     */
    public function testOnExceptionNestedException() {
        $form = [
            '#type' => 'form',
            '#build_id' => 'the_build_id',
        ];
        $expected_form = $form + [
            '#build_id_old' => 'the_build_id',
        ];
        $form_state = new FormState();
        $form_exception = new FormAjaxException($form, $form_state);
        $exception = new \Exception('', 0, $form_exception);
        $request = new Request([], [
            'form_build_id' => 'the_build_id',
        ]);
        $commands = [];
        $response = new Response('');
        $this->formAjaxResponseBuilder
            ->expects($this->once())
            ->method('buildResponse')
            ->with($request, $expected_form, $form_state, $commands)
            ->willReturn($response);
        $this->assertResponseFromException($request, $exception, $response);
    }
    
    /**
     * @covers ::getFormAjaxException
     */
    public function testOnExceptionNestedWrongException() {
        $nested_exception = new \Exception();
        $exception = new \Exception('', 0, $nested_exception);
        $request = new Request();
        $this->formAjaxResponseBuilder
            ->expects($this->never())
            ->method('buildResponse');
        $this->assertResponseFromException($request, $exception, NULL);
    }
    
    /**
     * Asserts that the expected response is derived from the given exception.
     *
     * @param \Symfony\Component\HttpFoundation\Request $request
     *   The request.
     * @param \Exception $exception
     *   The exception to pass to the event.
     * @param \Symfony\Component\HttpFoundation\Response|null $expected_response
     *   The response expected to be set on the event.
     *
     * @internal
     */
    protected function assertResponseFromException(Request $request, \Exception $exception, ?Response $expected_response) : void {
        $this->event = new ExceptionEvent($this->httpKernel, $request, HttpKernelInterface::MASTER_REQUEST, $exception);
        $this->subscriber
            ->onException($this->event);
        $this->assertSame($expected_response, $this->event
            ->getResponse());
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
FormAjaxSubscriberTest::$event protected property The event used to derive the response.
FormAjaxSubscriberTest::$formAjaxResponseBuilder protected property
FormAjaxSubscriberTest::$httpKernel protected property
FormAjaxSubscriberTest::$messenger protected property The mocked messenger.
FormAjaxSubscriberTest::$stringTranslation protected property The mocked string translation.
FormAjaxSubscriberTest::$subscriber protected property
FormAjaxSubscriberTest::assertResponseFromException protected function Asserts that the expected response is derived from the given exception.
FormAjaxSubscriberTest::setUp protected function Overrides UnitTestCase::setUp
FormAjaxSubscriberTest::testOnException public function @covers ::onException
FormAjaxSubscriberTest::testOnExceptionBrokenPostRequest public function @covers ::onException
FormAjaxSubscriberTest::testOnExceptionNestedException public function @covers ::onException
@covers ::getFormAjaxException
FormAjaxSubscriberTest::testOnExceptionNestedWrongException public function @covers ::getFormAjaxException
FormAjaxSubscriberTest::testOnExceptionNewBuildId public function @covers ::onException
FormAjaxSubscriberTest::testOnExceptionOtherClass public function @covers ::onException
FormAjaxSubscriberTest::testOnExceptionResponseBuilderException public function @covers ::onException
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.