Skip to content
Snippets Groups Projects
Commit 245c13b6 authored by Stefan Bürk's avatar Stefan Bürk Committed by Christian Kuhn
Browse files

[BUGFIX] Initialize backenduser for RedirectServiceTest

RedirectsServiceTests simulate frontend requests
without executing them really, which prevents from
running through the FE Bootstrap stack, thus not all
needed stuff are setup correctly, thus throwing a
warning that $GLOBALS['BE_USER'] is not defined.

This patch initialize a backenduser for the
RedirectServiceTest to setup a correct BackendUser
object, thus mitigating this warning.

Resolves: #95548
Releases: master
Change-Id: I8318738e22761f172383db3b981779e331043f3f
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/71518


Reviewed-by: default avatarGuido Schmechel <guido.schmechel@brandung.de>
Reviewed-by: default avatarOliver Klee <typo3-coding@oliverklee.de>
Reviewed-by: default avatarJochen <rothjochen@gmail.com>
Reviewed-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
Tested-by: default avatarcore-ci <typo3@b13.com>
Tested-by: default avatarJochen <rothjochen@gmail.com>
Tested-by: default avatarChristian Kuhn <lolli@schwarzbu.ch>
parent c4624cae
Branches
Tags
No related merge requests found
......@@ -45,6 +45,12 @@ class RedirectServiceTest extends FunctionalTestCase
protected array $testFilesToDelete = [];
protected function setUp(): void
{
parent::setUp();
$this->setUpBackendUserFromFixture(1);
}
protected function tearDown(): void
{
foreach ($this->testFilesToDelete as $filename) {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment