You are here

public function UserAccessControlHandlerTest::testHiddenUserSettings in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php \Drupal\Tests\user\Unit\UserAccessControlHandlerTest::testHiddenUserSettings()
  2. 10 core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php \Drupal\Tests\user\Unit\UserAccessControlHandlerTest::testHiddenUserSettings()

Tests that private user settings cannot be viewed by other users.

@dataProvider hiddenUserSettingsProvider

File

core/modules/user/tests/src/Unit/UserAccessControlHandlerTest.php, line 194

Class

UserAccessControlHandlerTest
Tests the user access controller.

Namespace

Drupal\Tests\user\Unit

Code

public function testHiddenUserSettings($field, $viewer, $target, $view, $edit) {
  $this
    ->assertFieldAccess($field, $viewer, $target, $view, $edit);
}