Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / web / core / modules / rest / tests / src / Functional / EntityResource / Shortcut / ShortcutResourceTestBase.php
index 36be5b58f099382236d06ad2ae2e32b2ab12c662..9c852fb90c01c4742bb98d6a410b197ec7dda30c 100644 (file)
 
 namespace Drupal\Tests\rest\Functional\EntityResource\Shortcut;
 
-use Drupal\shortcut\Entity\Shortcut;
-use Drupal\shortcut\Entity\ShortcutSet;
-use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
+@trigger_error('The ' . __NAMESPACE__ . '\ShortcutResourceTestBase is deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Instead, use Drupal\Tests\shortcut\Functional\Rest\ShortcutResourceTestBase. See https://www.drupal.org/node/2971931.', E_USER_DEPRECATED);
+
+use Drupal\Tests\shortcut\Functional\Rest\ShortcutResourceTestBase as ShortcutResourceTestBaseReal;
 
 /**
- * ResourceTestBase for Shortcut entity.
+ * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use
+ *   Drupal\Tests\shortcut\Functional\Rest\ShortcutResourceTestBase instead.
+ *
+ * @see https://www.drupal.org/node/2971931
  */
-abstract class ShortcutResourceTestBase extends EntityResourceTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['comment', 'shortcut'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $entityTypeId = 'shortcut';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $patchProtectedFieldNames = [];
-
-  /**
-   * The Shortcut entity.
-   *
-   * @var \Drupal\shortcut\ShortcutInterface
-   */
-  protected $entity;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUpAuthorization($method) {
-    switch ($method) {
-      case 'GET':
-      case 'POST':
-      case 'PATCH':
-      case 'DELETE':
-        $this->grantPermissionsToTestedRole(['access shortcuts', 'customize shortcut links']);
-        break;
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function createEntity() {
-    // Create shortcut.
-    $shortcut = Shortcut::create([
-      'shortcut_set' => 'default',
-      'title' => t('Comments'),
-      'weight' => -20,
-      'link' => [
-        'uri' => 'internal:/admin/content/comment',
-      ],
-    ]);
-    $shortcut->save();
-
-    return $shortcut;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedNormalizedEntity() {
-    return [
-      'uuid' => [
-        [
-          'value' => $this->entity->uuid(),
-        ],
-      ],
-      'id' => [
-        [
-          'value' => (int) $this->entity->id(),
-        ],
-      ],
-      'title' => [
-        [
-          'value' => 'Comments',
-        ],
-      ],
-      'shortcut_set' => [
-        [
-          'target_id' => 'default',
-          'target_type' => 'shortcut_set',
-          'target_uuid' => ShortcutSet::load('default')->uuid(),
-        ],
-      ],
-      'link' => [
-        [
-          'uri' => 'internal:/admin/content/comment',
-          'title' => NULL,
-          'options' => [],
-        ],
-      ],
-      'weight' => [
-        [
-          'value' => -20,
-        ],
-      ],
-      'langcode' => [
-        [
-          'value' => 'en',
-        ],
-      ],
-      'default_langcode' => [
-        [
-          'value' => TRUE,
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    return [
-      'title' => [
-        [
-          'value' => 'Comments',
-        ],
-      ],
-      'link' => [
-        [
-          'uri' => 'internal:/',
-        ],
-      ],
-      'shortcut_set' => [
-        [
-          'target_id' => 'default',
-        ],
-      ],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedUnauthorizedAccessMessage($method) {
-    if ($this->config('rest.settings')->get('bc_entity_resource_permissions')) {
-      return parent::getExpectedUnauthorizedAccessMessage($method);
-    }
-
-    switch ($method) {
-      case 'GET':
-      case 'POST':
-      case 'PATCH':
-      case 'DELETE':
-        return "The shortcut set must be the currently displayed set for the user and the user must have 'access shortcuts' AND 'customize shortcut links' permissions.";
-
-      default:
-        return parent::getExpectedUnauthorizedAccessMessage($method);
-    }
-  }
-
+abstract class ShortcutResourceTestBase extends ShortcutResourceTestBaseReal {
 }