class Test
Same name in this branch
- 11.x core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php \Drupal\media_test_source\Plugin\media\Source\Test
Same name in other branches
- 9 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php \Drupal\media_test_source\Plugin\media\Source\Test
- 9 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test
- 8.9.x core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php \Drupal\media_test_source\Plugin\media\Source\Test
- 8.9.x core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test
- 10 core/modules/media/tests/modules/media_test_source/src/Plugin/media/Source/Test.php \Drupal\media_test_source\Plugin\media\Source\Test
- 10 core/modules/system/tests/modules/test_page_test/src/Controller/Test.php \Drupal\test_page_test\Controller\Test
Defines a test controller for page titles.
Hierarchy
- class \Drupal\test_page_test\Controller\Test
Expanded class hierarchy of Test
837 string references to 'Test'
- AccessAwareRouterTest::setUp in core/
tests/ Drupal/ Tests/ Core/ Routing/ AccessAwareRouterTest.php - ActionValidationTest::setUp in core/
modules/ system/ tests/ src/ Kernel/ Entity/ ActionValidationTest.php - ActionValidationTest::setUp in core/
modules/ system/ tests/ src/ Kernel/ Entity/ ActionValidationTest.php - ActiveLinkResponseFilterTest::providerTestSetLinkActiveClass in core/
tests/ Drupal/ Tests/ Core/ EventSubscriber/ ActiveLinkResponseFilterTest.php - Provides test data for testSetLinkActiveClass().
- ActiveWorkspaceUpdateTest::testActiveWorkspaceDuringUpdate in core/
modules/ workspaces/ tests/ src/ Functional/ UpdateSystem/ ActiveWorkspaceUpdateTest.php - Tests that there is no active workspace during database updates.
File
-
core/
modules/ system/ tests/ modules/ test_page_test/ src/ Controller/ Test.php, line 15
Namespace
Drupal\test_page_test\ControllerView source
class Test {
/**
* Renders a page with a title.
*
* @return array
* A render array as expected by
* \Drupal\Core\Render\RendererInterface::render().
*/
public function renderTitle() {
$build = [];
$build['#markup'] = 'Hello Drupal';
$build['#title'] = 'Foo';
return $build;
}
/**
* Renders a page.
*
* @return array
* A render array as expected by
* \Drupal\Core\Render\RendererInterface::render().
*/
public function staticTitle() {
$build = [];
$build['#markup'] = 'Hello Drupal';
return $build;
}
/**
* Returns a 'dynamic' title for the '_title_callback' route option.
*
* @return string
* The page title.
*/
public function dynamicTitle() {
return 'Dynamic title';
}
/**
* Defines a controller with a cached render array.
*
* @return array
* A render array
*/
public function controllerWithCache() {
$build = [];
$build['#title'] = '<span>Cached title</span>';
$build['#cache']['keys'] = [
'test_controller',
'with_title',
];
return $build;
}
/**
* Returns a generic page render array for title tests.
*
* @return array
* A render array as expected by
* \Drupal\Core\Render\RendererInterface::render().
*/
public function renderPage() {
return [
'#markup' => 'Content',
];
}
/**
* Throws a HTTP exception.
*
* @param int $code
* The status code.
*/
public function httpResponseException(int $code) {
throw new HttpException($code);
}
public function error() {
trigger_error('foo', E_USER_NOTICE);
return [
'#markup' => 'Content',
];
}
public function escapedCharacters() {
return [
'#prefix' => '<div class="escaped">',
'#plain_text' => 'Escaped: <"\'&>',
'#suffix' => '</div>',
];
}
public function escapedScript() {
return [
'#prefix' => '<div class="escaped">',
// We use #plain_text because #markup would be filtered and that is not
// being tested here.
'#plain_text' => "<script>alert('XSS');alert(\"XSS\");</script>",
'#suffix' => '</div>',
];
}
public function unEscapedScript() {
return [
'#prefix' => '<div class="unescaped">',
'#markup' => Markup::create("<script>alert('Marked safe');alert(\"Marked safe\");</script>"),
'#suffix' => '</div>',
];
}
/**
* Loads a page that does a redirect.
*
* Drupal uses Symfony's RedirectResponse for generating redirects. That class
* uses a lower-case 'http-equiv="refresh"'.
*
* @see \Symfony\Component\HttpFoundation\RedirectResponse
*/
public function metaRefresh() {
return new RedirectResponse(Url::fromRoute('test_page_test.test_page', [], [
'absolute' => TRUE,
])->toString(), 302);
}
/**
* Returns a page while triggering deprecation notices.
*/
public function deprecations() {
// Create 2 identical deprecation messages. This should only trigger a
// single response header.
// phpcs:ignore Drupal.Semantics.FunctionTriggerError
@trigger_error('Test deprecation message', E_USER_DEPRECATED);
// phpcs:ignore Drupal.Semantics.FunctionTriggerError
@trigger_error('Test deprecation message', E_USER_DEPRECATED);
return [
'#markup' => 'Content that triggers deprecation messages',
];
}
}
Members
Title Sort descending | Modifiers | Object type | Summary |
---|---|---|---|
Test::controllerWithCache | public | function | Defines a controller with a cached render array. |
Test::deprecations | public | function | Returns a page while triggering deprecation notices. |
Test::dynamicTitle | public | function | Returns a 'dynamic' title for the '_title_callback' route option. |
Test::error | public | function | |
Test::escapedCharacters | public | function | |
Test::escapedScript | public | function | |
Test::httpResponseException | public | function | Throws a HTTP exception. |
Test::metaRefresh | public | function | Loads a page that does a redirect. |
Test::renderPage | public | function | Returns a generic page render array for title tests. |
Test::renderTitle | public | function | Renders a page with a title. |
Test::staticTitle | public | function | Renders a page. |
Test::unEscapedScript | public | function |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.