You are here

public function QuickEditIntegrationTest::testGetUntransformedTextCommand in Drupal 8

Tests GetUntransformedTextCommand AJAX command.

File

core/modules/editor/tests/src/Kernel/QuickEditIntegrationTest.php, line 210

Class

QuickEditIntegrationTest
Tests Edit module integration (Editor module's inline editing support).

Namespace

Drupal\Tests\editor\Kernel

Code

public function testGetUntransformedTextCommand() {

  // Create an entity with values for the field.
  $entity = EntityTest::create();
  $entity->{$this->fieldName}->value = 'Test';
  $entity->{$this->fieldName}->format = 'full_html';
  $entity
    ->save();
  $entity = EntityTest::load($entity
    ->id());

  // Verify AJAX response.
  $controller = new EditorController();
  $request = new Request();
  $response = $controller
    ->getUntransformedText($entity, $this->fieldName, LanguageInterface::LANGCODE_DEFAULT, 'default');
  $expected = [
    [
      'command' => 'editorGetUntransformedText',
      'data' => 'Test',
    ],
  ];
  $ajax_response_attachments_processor = \Drupal::service('ajax_response.attachments_processor');
  $subscriber = new AjaxResponseSubscriber($ajax_response_attachments_processor);
  $event = new FilterResponseEvent(\Drupal::service('http_kernel'), $request, HttpKernelInterface::MASTER_REQUEST, $response);
  $subscriber
    ->onResponse($event);
  $this
    ->assertEqual(Json::encode($expected), $response
    ->getContent(), 'The GetUntransformedTextCommand AJAX command works correctly.');
}