You are here

UriItemTest.php in Zircon Profile 8.0

Same filename and directory in other branches
  1. 8 core/modules/field/src/Tests/Uri/UriItemTest.php

File

core/modules/field/src/Tests/Uri/UriItemTest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\field\Tests\Uri\UriItemTest.
 */
namespace Drupal\field\Tests\Uri;

use Drupal\Component\Utility\Unicode;
use Drupal\field\Entity\FieldConfig;
use Drupal\field\Entity\FieldStorageConfig;
use Drupal\field\Tests\FieldUnitTestBase;

/**
 * Tests URI field functionality.
 *
 * @see \Drupal\Core\Field\Plugin\Field\FieldType\UriItem
 *
 * @group field
 */
class UriItemTest extends FieldUnitTestBase {

  /**
   * A field to use in this test class.
   *
   * @var \Drupal\field\Entity\FieldStorageConfig
   */
  protected $fieldStorage;

  /**
   * The field used in this test class.
   *
   * @var \Drupal\field\Entity\FieldConfig
   */
  protected $field;

  /**
   * Tests URI field.
   */
  public function testUriField() {
    $label = $this
      ->randomMachineName();

    // Create a field with settings to validate.
    $field_name = Unicode::strtolower($this
      ->randomMachineName());
    $this->fieldStorage = FieldStorageConfig::create([
      'field_name' => $field_name,
      'entity_type' => 'entity_test',
      'type' => 'uri',
    ]);
    $this->fieldStorage
      ->save();
    $this->field = FieldConfig::create([
      'field_name' => $field_name,
      'entity_type' => 'entity_test',
      'bundle' => 'entity_test',
      'label' => $label,
      'required' => TRUE,
      'settings' => [
        'size' => 123,
        'placeholder' => '',
      ],
    ]);
    $this->field
      ->save();

    // Create a form display for the default form mode.
    entity_get_form_display('entity_test', 'entity_test', 'default')
      ->setComponent($field_name, [
      'type' => 'uri',
    ])
      ->save();

    // Test the generateSampleValue() method.
    $entity = entity_create('entity_test');
    $entity->{$field_name}
      ->generateSampleItems();
    $this
      ->entityValidateAndSave($entity);
  }

}

Classes

Namesort descending Description
UriItemTest Tests URI field functionality.