EmailFieldRdfaTest.php
Same filename in other branches
Namespace
Drupal\Tests\rdf\Kernel\FieldFile
-
core/
modules/ rdf/ tests/ src/ Kernel/ Field/ EmailFieldRdfaTest.php
View source
<?php
namespace Drupal\Tests\rdf\Kernel\Field;
use Drupal\entity_test\Entity\EntityTest;
/**
* Tests RDFa output by email field formatters.
*
* @group rdf
* @group legacy
*/
class EmailFieldRdfaTest extends FieldRdfaTestBase {
/**
* {@inheritdoc}
*/
protected $fieldType = 'email';
/**
* {@inheritdoc}
*/
protected static $modules = [
'text',
];
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this->createTestField();
// Add the mapping.
$mapping = rdf_get_mapping('entity_test', 'entity_test');
$mapping->setFieldMapping($this->fieldName, [
'properties' => [
'schema:email',
],
])
->save();
// Set up test values.
$this->testValue = 'test@example.com';
$this->entity = EntityTest::create([]);
$this->entity->{$this->fieldName}->value = $this->testValue;
}
/**
* Tests all email formatters.
*/
public function testAllFormatters() {
// Test the plain formatter.
$this->assertFormatterRdfa([
'type' => 'string',
], 'http://schema.org/email', [
'value' => $this->testValue,
]);
// Test the mailto formatter.
$this->assertFormatterRdfa([
'type' => 'email_mailto',
], 'http://schema.org/email', [
'value' => $this->testValue,
]);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
EmailFieldRdfaTest | Tests RDFa output by email field formatters. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.