
| Current Path : /var/www/html/rocksensor1/web/core/modules/system/tests/src/Functional/Theme/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/core/modules/system/tests/src/Functional/Theme/FastTest.php |
<?php
declare(strict_types=1);
namespace Drupal\Tests\system\Functional\Theme;
use Drupal\Tests\BrowserTestBase;
use Drupal\user\Entity\User;
/**
* Tests autocompletion not loading registry.
*
* @group Theme
*/
class FastTest extends BrowserTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = ['theme_test'];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* User allowed to access use profiles.
*
* @var \Drupal\user\Entity\User
*/
protected User $account;
/**
* {@inheritdoc}
*/
protected function setUp(): void {
parent::setUp();
$this->account = $this->drupalCreateUser(['access user profiles']);
}
/**
* Tests access to user autocompletion and verify the correct results.
*/
public function testUserAutocomplete(): void {
$this->drupalLogin($this->account);
$this->drupalGet('user/autocomplete', ['query' => ['q' => $this->account->getAccountName()]]);
$this->assertSession()->responseContains($this->account->getAccountName());
$this->assertSession()->pageTextNotContains('registry initialized');
}
}