You are here

EmailFieldRdfaTest.php in Drupal 9

File

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
 */
class EmailFieldRdfaTest extends FieldRdfaTestBase {

  /**
   * {@inheritdoc}
   */
  protected $fieldType = 'email';

  /**
   * {@inheritdoc}
   */
  protected static $modules = [
    'text',
  ];
  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

Namesort descending Description
EmailFieldRdfaTest Tests RDFa output by email field formatters.