LanguageEntityFieldAccessHookTest.php

Same filename and directory in other branches
  1. 8.9.x core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php
  2. 10 core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php
  3. 11.x core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php

Namespace

Drupal\Tests\language\Functional

File

core/modules/language/tests/src/Functional/LanguageEntityFieldAccessHookTest.php

View source
<?php

namespace Drupal\Tests\language\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests language picker compatibility with hook_entity_field_access.
 *
 * @group language
 */
class LanguageEntityFieldAccessHookTest extends BrowserTestBase {
    
    /**
     * Modules to enable.
     *
     * @var array
     */
    protected static $modules = [
        'node',
        'text',
        'field',
        'filter',
        'language',
        'language_entity_field_access_test',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests compatibility with hook_entity_field_access().
     */
    public function testHookEntityFieldAccess() {
        // 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();
    }

}

Classes

Title Deprecated Summary
LanguageEntityFieldAccessHookTest Tests language picker compatibility with hook_entity_field_access.

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