function LanguageEntityFieldAccessHookTest::testHookEntityFieldAccess

Same name and namespace in other branches
  1. 9 core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php \Drupal\Tests\language\Functional\LanguageEntityFieldAccessHookTest::testHookEntityFieldAccess()
  2. 8.9.x core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php \Drupal\Tests\language\Functional\LanguageEntityFieldAccessHookTest::testHookEntityFieldAccess()
  3. 10 core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php \Drupal\Tests\language\Functional\LanguageEntityFieldAccessHookTest::testHookEntityFieldAccess()

Tests compatibility with hook_entity_field_access().

File

core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php, line 38

Class

LanguageEntityFieldAccessHookTest
Tests language picker compatibility with hook_entity_field_access.

Namespace

Drupal\Tests\language\Functional

Code

public function testHookEntityFieldAccess() : void {
    // Create an admin user and do the login.
    $user = $this->drupalCreateUser([], NULL, TRUE);
    $this->drupalLogin($user);
    // Assess the field is not visible.
    $this->drupalGet('node/add/page');
    $this->assertSession()
        ->fieldNotExists('langcode[0][value]');
    $this->drupalLogout();
}

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