You are here

public function FormAjaxSubscriberTest::testOnException in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/tests/Drupal/Tests/Core/Form/EventSubscriber/FormAjaxSubscriberTest.php \Drupal\Tests\Core\Form\EventSubscriber\FormAjaxSubscriberTest::testOnException()

@covers ::onException

File

core/tests/Drupal/Tests/Core/Form/EventSubscriber/FormAjaxSubscriberTest.php, line 66
Contains \Drupal\Tests\Core\Form\EventSubscriber\FormAjaxSubscriberTest.

Class

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

Namespace

Drupal\Tests\Core\Form\EventSubscriber

Code

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);
  $event = $this
    ->assertResponseFromException($request, $exception, $response);
  $this
    ->assertSame(200, $event
    ->getResponse()->headers
    ->get('X-Status-Code'));
}