function AjaxBasePageNegotiatorTest::testDetermineActiveThemeDefaultTheme
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Theme/AjaxBasePageNegotiatorTest.php \Drupal\Tests\Core\Theme\AjaxBasePageNegotiatorTest::testDetermineActiveThemeDefaultTheme()
- 8.9.x core/tests/Drupal/Tests/Core/Theme/AjaxBasePageNegotiatorTest.php \Drupal\Tests\Core\Theme\AjaxBasePageNegotiatorTest::testDetermineActiveThemeDefaultTheme()
- 11.x core/tests/Drupal/Tests/Core/Theme/AjaxBasePageNegotiatorTest.php \Drupal\Tests\Core\Theme\AjaxBasePageNegotiatorTest::testDetermineActiveThemeDefaultTheme()
@covers ::determineActiveTheme
File
-
core/
tests/ Drupal/ Tests/ Core/ Theme/ AjaxBasePageNegotiatorTest.php, line 119
Class
- AjaxBasePageNegotiatorTest
- @coversDefaultClass \Drupal\Core\Theme\AjaxBasePageNegotiator @group Theme
Namespace
Drupal\Tests\Core\ThemeCode
public function testDetermineActiveThemeDefaultTheme() : void {
$theme = 'stark';
// When the theme is the system default, an empty string is provided as the
// theme token. See system_js_settings_alter().
$theme_token = '';
$request = new Request([]);
$request->query
->set('ajax_page_state', [
'theme' => $theme,
'theme_token' => $theme_token,
]);
$request->request = new InputBag($request->request
->all());
$this->requestStack
->push($request);
$route_match = RouteMatch::createFromRequest($request);
$this->tokenGenerator
->validate(Argument::cetera())
->shouldNotBeCalled();
$result = $this->negotiator
->determineActiveTheme($route_match);
$this->assertSame($theme, $result);
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.