function RdfMappingResourceTestBase::getExpectedNormalizedEntity

Same name in other branches
  1. 9 core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php \Drupal\Tests\rdf\Functional\Rest\RdfMappingResourceTestBase::getExpectedNormalizedEntity()

Overrides EntityResourceTestBase::getExpectedNormalizedEntity

File

core/modules/rdf/tests/src/Functional/Rest/RdfMappingResourceTestBase.php, line 69

Class

RdfMappingResourceTestBase

Namespace

Drupal\Tests\rdf\Functional\Rest

Code

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(),
    ];
}

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