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 / RdfMapping / RdfMappingResourceTestBase.php
index c826be0f8548cee8070582a900efe6898dd94d98..7c2dd6d5347a79c466d99294bcaa13d448d9cd64 100644 (file)
 
 namespace Drupal\Tests\rest\Functional\EntityResource\RdfMapping;
 
-use Drupal\node\Entity\NodeType;
-use Drupal\rdf\Entity\RdfMapping;
-use Drupal\Tests\rest\Functional\EntityResource\EntityResourceTestBase;
+@trigger_error('The ' . __NAMESPACE__ . '\RdfMappingResourceTestBase is deprecated in Drupal 8.6.x and will be removed before Drupal 9.0.0. Instead, use Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase. See https://www.drupal.org/node/2971931.', E_USER_DEPRECATED);
 
-abstract class RdfMappingResourceTestBase extends EntityResourceTestBase {
-
-  /**
-   * {@inheritdoc}
-   */
-  public static $modules = ['node', 'rdf'];
-
-  /**
-   * {@inheritdoc}
-   */
-  protected static $entityTypeId = 'rdf_mapping';
-
-  /**
-   * @var \Drupal\rdf\RdfMappingInterface
-   */
-  protected $entity;
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function setUpAuthorization($method) {
-    $this->grantPermissionsToTestedRole(['administer site configuration']);
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function createEntity() {
-    // Create a "Camelids" node type.
-    $camelids = NodeType::create([
-      'name' => 'Camelids',
-      'type' => 'camelids',
-    ]);
-
-    $camelids->save();
-
-    // Create the RDF mapping.
-    $llama = RdfMapping::create([
-      'targetEntityType' => 'node',
-      'bundle' => 'camelids',
-    ]);
-    $llama->setBundleMapping([
-      'types' => ['sioc:Item', 'foaf:Document'],
-    ])
-      ->setFieldMapping('title', [
-        'properties' => ['dc:title'],
-      ])
-      ->setFieldMapping('created', [
-        'properties' => ['dc:date', 'dc:created'],
-        'datatype' => 'xsd:dateTime',
-        'datatype_callback' => ['callable' => 'Drupal\rdf\CommonDataConverter::dateIso8601Value'],
-      ])
-      ->save();
-
-    return $llama;
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedNormalizedEntity() {
-    return [
-      'bundle' => 'camelids',
-      'dependencies' => [
-        'config' => [
-          'node.type.camelids',
-        ],
-        'module' => [
-          'node',
-        ],
-      ],
-      'fieldMappings' => [
-        'title' => [
-          'properties' => [
-            'dc:title',
-          ],
-        ],
-        'created' => [
-          'properties' => [
-            'dc:date',
-            'dc:created',
-          ],
-          'datatype' => 'xsd:dateTime',
-          'datatype_callback' => [
-            'callable' => 'Drupal\rdf\CommonDataConverter::dateIso8601Value',
-          ],
-        ],
-      ],
-      'id' => 'node.camelids',
-      'langcode' => 'en',
-      'status' => TRUE,
-      'targetEntityType' => 'node',
-      'types' => [
-        'sioc:Item',
-        'foaf:Document',
-      ],
-      'uuid' => $this->entity->uuid(),
-    ];
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getNormalizedPostEntity() {
-    // @todo Update in https://www.drupal.org/node/2300677.
-  }
-
-  /**
-   * {@inheritdoc}
-   */
-  protected function getExpectedCacheContexts() {
-    return [
-      'user.permissions',
-    ];
-  }
+use Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase as RdfMappingResourceTestBaseReal;
 
+/**
+ * @deprecated in Drupal 8.6.x. Will be removed before Drupal 9.0.0. Use
+ *   Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase instead.
+ *
+ * @see https://www.drupal.org/node/2971931
+ */
+abstract class RdfMappingResourceTestBase extends RdfMappingResourceTestBaseReal {
 }