View source
<?php
namespace Drupal\rdf\Tests\Field;
use Drupal\field\Tests\EntityReference\EntityReferenceTestTrait;
use Drupal\user\Entity\Role;
use Drupal\user\RoleInterface;
class EntityReferenceRdfaTest extends FieldRdfaTestBase {
use EntityReferenceTestTrait;
protected $fieldType = 'entity_reference';
protected $entityType = 'entity_test';
protected $bundle = 'entity_test';
protected $targetEntity;
public static $modules = [
'text',
'filter',
];
protected function setUp() {
parent::setUp();
$this
->installEntitySchema('entity_test_rev');
$this
->installConfig(array(
'user',
));
Role::load(RoleInterface::ANONYMOUS_ID)
->grantPermission('view test entity')
->save();
$this
->createEntityReferenceField($this->entityType, $this->bundle, $this->fieldName, 'Field test', $this->entityType);
$mapping = rdf_get_mapping('entity_test', 'entity_test');
$mapping
->setFieldMapping($this->fieldName, array(
'properties' => array(
'schema:knows',
),
))
->save();
$this->targetEntity = entity_create($this->entityType, array(
'name' => $this
->randomMachineName(),
));
$this->targetEntity
->save();
$this->entity = entity_create($this->entityType, array(
'name' => $this
->randomMachineName(),
));
$this->entity
->save();
$this->entity->{$this->fieldName}->entity = $this->targetEntity;
$this->uri = $this
->getAbsoluteUri($this->entity);
}
public function testAllFormatters() {
$entity_uri = $this
->getAbsoluteUri($this->targetEntity);
$this
->assertFormatterRdfa(array(
'type' => 'entity_reference_label',
), 'http://schema.org/knows', array(
'value' => $entity_uri,
'type' => 'uri',
));
$this
->assertFormatterRdfa(array(
'type' => 'entity_reference_entity_view',
), 'http://schema.org/knows', array(
'value' => $entity_uri,
'type' => 'uri',
));
}
}