RdfMappingTest.php

Same filename in this branch
  1. 9 core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php
Same filename and directory in other branches
  1. 8.9.x core/modules/jsonapi/tests/src/Functional/RdfMappingTest.php
  2. 8.9.x core/modules/rdf/tests/src/Kernel/Plugin/migrate/source/d7/RdfMappingTest.php

Namespace

Drupal\Tests\rdf\Functional\Jsonapi

File

core/modules/rdf/tests/src/Functional/Jsonapi/RdfMappingTest.php

View source
<?php

namespace Drupal\Tests\rdf\Functional\Jsonapi;

use Drupal\Core\Url;
use Drupal\node\Entity\NodeType;
use Drupal\rdf\Entity\RdfMapping;
use Drupal\Tests\jsonapi\Functional\ConfigEntityResourceTestBase;

/**
 * JSON:API integration test for the "RdfMapping" config entity type.
 *
 * @group jsonapi
 * @group rdf
 * @group legacy
 */
class RdfMappingTest extends ConfigEntityResourceTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected static $modules = [
        'node',
        'rdf',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * {@inheritdoc}
     */
    protected static $entityTypeId = 'rdf_mapping';
    
    /**
     * {@inheritdoc}
     */
    protected static $resourceTypeName = 'rdf_mapping--rdf_mapping';
    
    /**
     * {@inheritdoc}
     *
     * @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 getExpectedDocument() {
        $self_url = Url::fromUri('base:/jsonapi/rdf_mapping/rdf_mapping/' . $this->entity
            ->uuid())
            ->setAbsolute()
            ->toString(TRUE)
            ->getGeneratedUrl();
        return [
            'jsonapi' => [
                'meta' => [
                    'links' => [
                        'self' => [
                            'href' => 'http://jsonapi.org/format/1.0/',
                        ],
                    ],
                ],
                'version' => '1.0',
            ],
            'links' => [
                'self' => [
                    'href' => $self_url,
                ],
            ],
            'data' => [
                'id' => $this->entity
                    ->uuid(),
                'type' => 'rdf_mapping--rdf_mapping',
                'links' => [
                    'self' => [
                        'href' => $self_url,
                    ],
                ],
                'attributes' => [
                    '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',
                            ],
                        ],
                    ],
                    'langcode' => 'en',
                    'status' => TRUE,
                    'targetEntityType' => 'node',
                    'types' => [
                        'sioc:Item',
                        'foaf:Document',
                    ],
                    'drupal_internal__id' => 'node.camelids',
                ],
            ],
        ];
    }
    
    /**
     * {@inheritdoc}
     */
    protected function getPostDocument() {
        // @todo Update in https://www.drupal.org/node/2300677.
        return [];
    }

}

Classes

Title Deprecated Summary
RdfMappingTest JSON:API integration test for the "RdfMapping" config entity type.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.