View source
<?php
namespace Drupal\editor\Tests;
use Drupal\Component\Serialization\Json;
use Drupal\Core\EventSubscriber\MainContentViewSubscriber;
use Drupal\simpletest\WebTestBase;
class QuickEditIntegrationLoadingTest extends WebTestBase {
public static $modules = array(
'quickedit',
'filter',
'node',
'editor',
);
protected static $basicPermissions = array(
'access content',
'create article content',
'use text format filtered_html',
'access contextual links',
);
protected function setUp() {
parent::setUp();
$filtered_html_format = entity_create('filter_format', array(
'format' => 'filtered_html',
'name' => 'Filtered HTML',
'weight' => 0,
'filters' => array(
'filter_caption' => array(
'status' => 1,
),
),
));
$filtered_html_format
->save();
$this
->drupalCreateContentType(array(
'type' => 'article',
'name' => 'Article',
));
$this
->drupalCreateNode(array(
'type' => 'article',
'body' => array(
0 => array(
'value' => '<p>Do you also love Drupal?</p><img src="druplicon.png" data-caption="Druplicon" />',
'format' => 'filtered_html',
),
),
));
}
public function testUsersWithoutPermission() {
$users = array(
$this
->drupalCreateUser(static::$basicPermissions),
$this
->drupalCreateUser(array_merge(static::$basicPermissions, array(
'edit any article content',
))),
$this
->drupalCreateUser(array_merge(static::$basicPermissions, array(
'access in-place editing',
))),
);
foreach ($users as $user) {
$this
->drupalLogin($user);
$this
->drupalGet('node/1');
$this
->assertRaw('<p>Do you also love Drupal?</p><figure role="group" class="caption caption-img"><img src="druplicon.png" /><figcaption>Druplicon</figcaption></figure>');
$response = $this
->drupalPost('editor/' . 'node/1/body/en/full', '', array(), array(
'query' => array(
MainContentViewSubscriber::WRAPPER_FORMAT => 'drupal_ajax',
),
));
$this
->assertResponse(403);
$this
->assertIdentical('{}', $response);
}
}
public function testUserWithPermission() {
$user = $this
->drupalCreateUser(array_merge(static::$basicPermissions, array(
'edit any article content',
'access in-place editing',
)));
$this
->drupalLogin($user);
$this
->drupalGet('node/1');
$this
->assertRaw('<p>Do you also love Drupal?</p><figure role="group" class="caption caption-img"><img src="druplicon.png" /><figcaption>Druplicon</figcaption></figure>');
$response = $this
->drupalPost('editor/' . 'node/1/body/en/full', 'application/vnd.drupal-ajax', array());
$this
->assertResponse(200);
$ajax_commands = Json::decode($response);
$this
->assertIdentical(1, count($ajax_commands), 'The untransformed text POST request results in one AJAX command.');
$this
->assertIdentical('editorGetUntransformedText', $ajax_commands[0]['command'], 'The first AJAX command is an editorGetUntransformedText command.');
$this
->assertIdentical('<p>Do you also love Drupal?</p><img src="druplicon.png" data-caption="Druplicon" />', $ajax_commands[0]['data'], 'The editorGetUntransformedText command contains the expected data.');
}
}