Same name in this branch
  1. 10 core/modules/field/tests/src/Functional/FieldAccessTest.php \Drupal\Tests\field\Functional\FieldAccessTest
  2. 10 core/tests/Drupal/KernelTests/Core/Field/FieldAccessTest.php \Drupal\KernelTests\Core\Field\FieldAccessTest
Same name and namespace in other branches
  1. 8.9.x core/modules/field/tests/src/Functional/FieldAccessTest.php \Drupal\Tests\field\Functional\FieldAccessTest
  2. 9 core/modules/field/tests/src/Functional/FieldAccessTest.php \Drupal\Tests\field\Functional\FieldAccessTest

Tests Field access.

@group field

Hierarchy

  • class \Drupal\Tests\field\Functional\FieldTestBase extends \Drupal\Tests\BrowserTestBase

Expanded class hierarchy of FieldAccessTest

File

core/modules/field/tests/src/Functional/FieldAccessTest.php, line 15

Namespace

Drupal\Tests\field\Functional
View source
class FieldAccessTest extends FieldTestBase {

  /**
   * Modules to enable.
   *
   * @var array
   */
  protected static $modules = [
    'node',
    'field_test',
  ];

  /**
   * {@inheritdoc}
   */
  protected $defaultTheme = 'stark';

  /**
   * Node entity to use in this test.
   *
   * @var \Drupal\node\Entity\Node
   */
  protected $node;

  /**
   * Field value to test display on nodes.
   *
   * @var string
   */
  protected $testViewFieldValue;

  /**
   * {@inheritdoc}
   */
  protected function setUp() : void {
    parent::setUp();
    $web_user = $this
      ->drupalCreateUser([
      'view test_view_field content',
    ]);
    $this
      ->drupalLogin($web_user);

    // Create content type.
    $content_type_info = $this
      ->drupalCreateContentType();
    $content_type = $content_type_info
      ->id();
    $field_storage = [
      'field_name' => 'test_view_field',
      'entity_type' => 'node',
      'type' => 'text',
    ];
    FieldStorageConfig::create($field_storage)
      ->save();
    $field = [
      'field_name' => $field_storage['field_name'],
      'entity_type' => 'node',
      'bundle' => $content_type,
    ];
    FieldConfig::create($field)
      ->save();

    // Assign display properties for the 'default' and 'teaser' view modes.
    foreach ([
      'default',
      'teaser',
    ] as $view_mode) {
      \Drupal::service('entity_display.repository')
        ->getViewDisplay('node', $content_type, $view_mode)
        ->setComponent($field_storage['field_name'])
        ->save();
    }

    // Create test node.
    $this->testViewFieldValue = 'This is some text';
    $settings = [];
    $settings['type'] = $content_type;
    $settings['title'] = 'Field view access test';
    $settings['test_view_field'] = [
      [
        'value' => $this->testViewFieldValue,
      ],
    ];
    $this->node = $this
      ->drupalCreateNode($settings);
  }

  /**
   * Tests that hook_entity_field_access() is called.
   */
  public function testFieldAccess() {

    // Assert the text is visible.
    $this
      ->drupalGet('node/' . $this->node
      ->id());
    $this
      ->assertSession()
      ->pageTextContains($this->testViewFieldValue);

    // Assert the text is not visible for anonymous users.
    // The field_test module implements hook_entity_field_access() which will
    // specifically target the 'test_view_field' field.
    $this
      ->drupalLogout();
    $this
      ->drupalGet('node/' . $this->node
      ->id());
    $this
      ->assertSession()
      ->pageTextNotContains($this->testViewFieldValue);
  }

}

Members

Namesort descending Modifiers Type Description Overrides
FieldAccessTest::$defaultTheme protected property
FieldAccessTest::$modules protected static property Modules to enable.
FieldAccessTest::$node protected property Node entity to use in this test.
FieldAccessTest::$testViewFieldValue protected property Field value to test display on nodes.
FieldAccessTest::setUp protected function
FieldAccessTest::testFieldAccess public function Tests that hook_entity_field_access() is called.
FieldTestBase::assertFieldValues public function Assert that a field has the expected values in an entity.
FieldTestBase::_generateTestFieldValues public function Generate random values for a field_test field.