StringFieldRdfaTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/rdf/tests/src/Kernel/Field/StringFieldRdfaTest.php

Namespace

Drupal\Tests\rdf\Kernel\Field

File

core/modules/rdf/tests/src/Kernel/Field/StringFieldRdfaTest.php

View source
<?php

namespace Drupal\Tests\rdf\Kernel\Field;

use Drupal\entity_test\Entity\EntityTest;

/**
 * Tests RDFa output by text field formatters.
 *
 * @group rdf
 * @group legacy
 */
class StringFieldRdfaTest extends FieldRdfaTestBase {
    
    /**
     * {@inheritdoc}
     */
    protected $fieldType = 'string';
    
    /**
     * The 'value' property value for testing.
     *
     * @var string
     */
    protected $testValue = 'test_text_value';
    
    /**
     * The 'summary' property value for testing.
     *
     * @var string
     */
    protected $testSummary = 'test_summary_value';
    
    /**
     * {@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:text',
            ],
        ])
            ->save();
        // Set up test entity.
        $this->entity = EntityTest::create();
        $this->entity->{$this->fieldName}->value = $this->testValue;
        $this->entity->{$this->fieldName}->summary = $this->testSummary;
    }
    
    /**
     * Tests string formatters.
     */
    public function testStringFormatters() {
        // Tests the string formatter.
        $this->assertFormatterRdfa([
            'type' => 'string',
        ], 'http://schema.org/text', [
            'value' => $this->testValue,
        ]);
    }

}

Classes

Title Deprecated Summary
StringFieldRdfaTest Tests RDFa output by text field formatters.

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