function UserEntityLabelTest::testLabelCallback

Same name and namespace in other branches
  1. 9 core/modules/user/tests/src/Kernel/UserEntityLabelTest.php \Drupal\Tests\user\Kernel\UserEntityLabelTest::testLabelCallback()
  2. 8.9.x core/modules/user/tests/src/Kernel/UserEntityLabelTest.php \Drupal\Tests\user\Kernel\UserEntityLabelTest::testLabelCallback()
  3. 11.x core/modules/user/tests/src/Kernel/UserEntityLabelTest.php \Drupal\Tests\user\Kernel\UserEntityLabelTest::testLabelCallback()

Tests label callback.

File

core/modules/user/tests/src/Kernel/UserEntityLabelTest.php, line 32

Class

UserEntityLabelTest
Tests the label callback.

Namespace

Drupal\Tests\user\Kernel

Code

public function testLabelCallback() : void {
  $this->installEntitySchema('user');
  $this->installConfig([
    'user',
  ]);
  $account = $this->createUser();
  $anonymous = User::create([
    'uid' => 0,
  ]);
  $this->assertEquals($account->getAccountName(), $account->label());
  // Setup a random anonymous name to be sure the name is used.
  $name = $this->randomMachineName();
  $this->config('user.settings')
    ->set('anonymous', $name)
    ->save();
  $this->assertEquals($name, $anonymous->label());
  $this->assertEquals($name, $anonymous->getDisplayName());
  $this->assertEmpty($anonymous->getAccountName());
  // Set to test the altered username.
  \Drupal::state()->set('user_hooks_test_user_format_name_alter', TRUE);
  // The user display name should be altered.
  $this->assertEquals('<em>' . $account->id() . '</em>', $account->getDisplayName());
  // The user login name should not be altered.
  $this->assertEquals($account->name->value, $account->getAccountName());
}

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