22 use TYPO3\TestingFramework\Fluid\Unit\ViewHelpers\ViewHelperBaseTestcase;
23 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
40 protected function setUp()
43 $this->context = GeneralUtility::makeInstance(Context::class);
45 $user->user[
'uid'] = 13;
48 'title' => [
'Editor',
'OtherRole']
50 $this->context->setAspect(
'frontend.user',
new UserAspect($user, [1, 2]));
52 $this->injectDependenciesIntoViewHelper($this->viewHelper);
53 $this->viewHelper->initializeArguments();
58 GeneralUtility::removeSingletonInstance(Context::class, $this->context);
66 $actualResult = $this->viewHelper->renderStatic(
67 [
'role' =>
'Editor',
'then' =>
'then child',
'else' =>
'else child'],
70 $this->prophesize(RenderingContextInterface::class)->reveal()
73 $this->assertEquals(
'then child', $actualResult);
81 $actualResult = $this->viewHelper->renderStatic(
82 [
'role' => 1,
'then' =>
'then child',
'else' =>
'else child'],
85 $this->prophesize(RenderingContextInterface::class)->reveal()
88 $this->assertEquals(
'then child', $actualResult);
96 $actualResult = $this->viewHelper->renderStatic(
97 [
'role' =>
'NonExistingRole',
'then' =>
'then child',
'else' =>
'else child'],
100 $this->prophesize(RenderingContextInterface::class)->reveal()
103 $this->assertEquals(
'else child', $actualResult);
111 $actualResult = $this->viewHelper->renderStatic(
112 [
'role' => 123,
'then' =>
'then child',
'else' =>
'else child'],
115 $this->prophesize(RenderingContextInterface::class)->reveal()
118 $this->assertEquals(
'else child', $actualResult);