コード例 #1
0
 /**
  * Tests the configurable text editor manager.
  */
 public function testEditorEntityHooks()
 {
     $image = entity_create('file');
     $image->setFileUri('core/misc/druplicon.png');
     $image->setFilename(drupal_basename($image->getFileUri()));
     $image->save();
     $file_usage = $this->container->get('file.usage');
     $this->assertIdentical(array(), $file_usage->listUsage($image), 'The image has zero usages.');
     $body_value = '<p>Hello, world!</p><img src="awesome-llama.jpg" data-editor-file-uuid="' . $image->uuid() . '" />';
     // Test handling of an invalid data- attribute.
     $body_value .= '<img src="awesome-llama.jpg" data-editor-file-uuid="invalid-editor-file-uuid-value" />';
     // Test handling of a non-existing UUID.
     $body_value .= '<img src="awesome-llama.jpg" data-editor-file-uuid="30aac704-ba2c-40fc-b609-9ed121aa90f4" />';
     // Test editor_entity_insert(): increment.
     $this->createUser();
     $node = entity_create('node', array('type' => 'page', 'title' => 'test', 'body' => array('value' => $body_value, 'format' => 'filtered_html'), 'uid' => 1));
     $node->save();
     $this->assertIdentical(array('editor' => array('node' => array(1 => '1'))), $file_usage->listUsage($image), 'The image has 1 usage.');
     // Test editor_entity_update(): increment, twice, by creating new revisions.
     $node->setNewRevision(TRUE);
     $node->save();
     $second_revision_id = $node->getRevisionId();
     $node->setNewRevision(TRUE);
     $node->save();
     $this->assertIdentical(array('editor' => array('node' => array(1 => '3'))), $file_usage->listUsage($image), 'The image has 3 usages.');
     // Test hook_entity_update(): decrement, by modifying the last revision:
     // remove the data- attribute from the body field.
     $body = $node->get('body')->first()->get('value');
     $original_value = $body->getValue();
     $new_value = str_replace('data-editor-file-uuid', 'data-editor-file-uuid-modified', $original_value);
     $body->setValue($new_value);
     $node->save();
     $this->assertIdentical(array('editor' => array('node' => array(1 => '2'))), $file_usage->listUsage($image), 'The image has 2 usages.');
     // Test hook_entity_update(): increment, by modifying the last revision:
     // readd the data- attribute to the body field.
     $node->get('body')->first()->get('value')->setValue($original_value);
     $node->save();
     $this->assertIdentical(array('editor' => array('node' => array(1 => '3'))), $file_usage->listUsage($image), 'The image has 3 usages.');
     // Test editor_entity_revision_delete(): decrement, by deleting a revision.
     entity_revision_delete('node', $second_revision_id);
     $this->assertIdentical(array('editor' => array('node' => array(1 => '2'))), $file_usage->listUsage($image), 'The image has 2 usages.');
     // Test editor_entity_delete().
     $node->delete();
     $this->assertIdentical(array(), $file_usage->listUsage($image), 'The image has zero usages again.');
 }
コード例 #2
0
 /**
  * Tests the configurable text editor manager.
  */
 public function testEditorEntityHooks()
 {
     $image_paths = array(0 => 'core/misc/druplicon.png', 1 => 'core/misc/tree.png', 2 => 'core/misc/help.png');
     $image_entities = array();
     foreach ($image_paths as $key => $image_path) {
         $image = File::create();
         $image->setFileUri($image_path);
         $image->setFilename(drupal_basename($image->getFileUri()));
         $image->save();
         $file_usage = $this->container->get('file.usage');
         $this->assertIdentical(array(), $file_usage->listUsage($image), 'The image ' . $image_paths[$key] . ' has zero usages.');
         $image_entities[] = $image;
     }
     $body = array();
     foreach ($image_entities as $key => $image_entity) {
         // Don't be rude, say hello.
         $body_value = '<p>Hello, world!</p>';
         // Test handling of a valid image entry.
         $body_value .= '<img src="awesome-llama-' . $key . '.jpg" data-entity-type="file" data-entity-uuid="' . $image_entity->uuid() . '" />';
         // Test handling of an invalid data-entity-uuid attribute.
         $body_value .= '<img src="awesome-llama-' . $key . '.jpg" data-entity-type="file" data-entity-uuid="invalid-entity-uuid-value" />';
         // Test handling of an invalid data-entity-type attribute.
         $body_value .= '<img src="awesome-llama-' . $key . '.jpg" data-entity-type="invalid-entity-type-value" data-entity-uuid="' . $image_entity->uuid() . '" />';
         // Test handling of a non-existing UUID.
         $body_value .= '<img src="awesome-llama-' . $key . '.jpg" data-entity-type="file" data-entity-uuid="30aac704-ba2c-40fc-b609-9ed121aa90f4" />';
         $body[] = array('value' => $body_value, 'format' => 'filtered_html');
     }
     // Test editor_entity_insert(): increment.
     $this->createUser();
     $node = $node = Node::create(['type' => 'page', 'title' => 'test', 'body' => $body, 'uid' => 1]);
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '1'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 1 usage.');
     }
     // Test editor_entity_update(): increment, twice, by creating new revisions.
     $node->setNewRevision(TRUE);
     $node->save();
     $second_revision_id = $node->getRevisionId();
     $node->setNewRevision(TRUE);
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '3'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 3 usages.');
     }
     // Test hook_entity_update(): decrement, by modifying the last revision:
     // remove the data-entity-type attribute from the body field.
     $original_values = array();
     for ($i = 0; $i < count($image_entities); $i++) {
         $original_value = $node->body[$i]->value;
         $new_value = str_replace('data-entity-type', 'data-entity-type-modified', $original_value);
         $node->body[$i]->value = $new_value;
         $original_values[$i] = $original_value;
     }
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '2'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 2 usages.');
     }
     // Test editor_entity_update(): increment again by creating a new revision:
     // read the data- attributes to the body field.
     $node->setNewRevision(TRUE);
     foreach ($original_values as $key => $original_value) {
         $node->body[$key]->value = $original_value;
     }
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '3'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 3 usages.');
     }
     // Test hook_entity_update(): decrement, by modifying the last revision:
     // remove the data-entity-uuid attribute from the body field.
     foreach ($original_values as $key => $original_value) {
         $original_value = $node->body[$key]->value;
         $new_value = str_replace('data-entity-type', 'data-entity-type-modified', $original_value);
         $node->body[$key]->value = $new_value;
     }
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '2'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 2 usages.');
     }
     // Test hook_entity_update(): increment, by modifying the last revision:
     // read the data- attributes to the body field.
     foreach ($original_values as $key => $original_value) {
         $node->body[$key]->value = $original_value;
     }
     $node->save();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '3'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 3 usages.');
     }
     // Test editor_entity_revision_delete(): decrement, by deleting a revision.
     entity_revision_delete('node', $second_revision_id);
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array('editor' => array('node' => array(1 => '2'))), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has 2 usages.');
     }
     // Test editor_entity_delete().
     $node->delete();
     foreach ($image_entities as $key => $image_entity) {
         $this->assertIdentical(array(), $file_usage->listUsage($image_entity), 'The image ' . $image_paths[$key] . ' has zero usages again.');
     }
 }
コード例 #3
0
ファイル: Import.php プロジェクト: sammarks/publisher
 protected function deleteRevision(Entity $entity, $revision_id)
 {
     // First, delete the revision using the entity API.
     entity_revision_delete($entity->type(), $revision_id);
     // Now, if workbench moderation is installed, remove the node history for the specific revision.
     if (module_exists('workbench_moderation') && $entity->type() == 'node') {
         db_delete('workbench_moderation_node_history')->condition('nid', $entity->id())->condition('vid', $revision_id)->execute();
     }
 }