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 / ShortcutSet / ShortcutSetResourceTestBase.php
index 97ae1a66aa15241c637d3da3527f7a28ba71f3e7..5ade571bfa68f4720bc2cc39db7b0478c4bcc149 100644 (file)
@@ -2,87 +2,15 @@
 
 namespace Drupal\Tests\rest\Functional\EntityResource\ShortcutSet;
 
-use Drupal\shortcut\Entity\ShortcutSet;
-use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
+@trigger_error('The ' . __NAMESPACE__ . '\ShortcutSetResourceTestBase is deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Instead, use Drupal\Tests\shortcut\Functional\Rest\ShortcutSetResourceTestBase. See https://www.drupal.org/node/2971931.', E_USER_DEPRECATED);
+
+use Drupal\Tests\shortcut\Functional\Rest\ShortcutSetResourceTestBase as ShortcutSetResourceTestBaseReal;
 
 /**
- * ResourceTestBase for ShortcutSet entity.
+ * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use
+ *   Drupal\Tests\shortcut\Functional\Rest\ShortcutSetResourceTestBase instead.
+ *
+ * @see https://www.drupal.org/node/2971931
  */
-abstract class ShortcutSetResourceTestBase extends EntityResourceTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['shortcut'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $entityTypeId = 'shortcut_set';
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $patchProtectedFieldNames = [];
-
-  /**
-   * The ShortcutSet entity.
-   *
-   * @var \Drupal\shortcut\ShortcutSetInterface
-   */
-  protected $entity;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUpAuthorization($method) {
-    switch ($method) {
-      case 'GET':
-        $this->grantPermissionsToTestedRole(['access shortcuts']);
-        break;
-
-      case 'POST':
-      case 'PATCH':
-        $this->grantPermissionsToTestedRole(['access shortcuts', 'customize shortcut links']);
-        break;
-
-      case 'DELETE':
-        $this->grantPermissionsToTestedRole(['administer shortcuts']);
-        break;
-    }
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function createEntity() {
-    $set = ShortcutSet::create([
-      'id' => 'llama_set',
-      'label' => 'Llama Set',
-    ]);
-    $set->save();
-    return $set;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedNormalizedEntity() {
-    return [
-      'id' => 'llama_set',
-      'uuid' => $this->entity->uuid(),
-      'label' => 'Llama Set',
-      'status' => TRUE,
-      'langcode' => 'en',
-      'dependencies' => [],
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    // @todo Update in https://www.drupal.org/node/2300677.
-  }
-
+abstract class ShortcutSetResourceTestBase extends ShortcutSetResourceTestBaseReal {
 }