2 declare(strict_types = 1);
28 use TYPO3\TestingFramework\Core\Unit\UnitTestCase;
29 use TYPO3\TestingFramework\Fluid\Unit\Core\Rendering\RenderingContextFixture;
30 use TYPO3Fluid\Fluid\Core\Compiler\TemplateCompiler;
31 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\AbstractNode;
32 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\RootNode;
33 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\TextNode;
34 use TYPO3Fluid\Fluid\Core\Parser\SyntaxTree\ViewHelperNode;
35 use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
36 use TYPO3Fluid\Fluid\Core\ViewHelper\ViewHelperVariableContainer;
86 protected function setUp()
88 $this->viewHelper = $this->getAccessibleMock(AbstractWidgetViewHelper::class, [
'validateArguments',
'initialize',
'callRenderMethod',
'getWidgetConfiguration',
'getRenderingContext']);
89 $this->mockExtensionService = $this->createMock(ExtensionService::class);
90 $this->viewHelper->_set(
'extensionService', $this->mockExtensionService);
91 $this->ajaxWidgetContextHolder = $this->createMock(AjaxWidgetContextHolder::class);
92 $this->viewHelper->injectAjaxWidgetContextHolder($this->ajaxWidgetContextHolder);
93 $this->widgetContext = $this->createMock(WidgetContext::class);
94 $this->objectManager = $this->createMock(ObjectManagerInterface::class);
95 $this->objectManager->expects($this->at(0))->method(
'get')->with(WidgetContext::class)->will($this->returnValue($this->widgetContext));
96 $this->viewHelper->injectObjectManager($this->objectManager);
97 $this->request = $this->createMock(Request::class);
98 $this->controllerContext = $this->createMock(ControllerContext::class);
99 $this->controllerContext->expects($this->any())->method(
'getRequest')->will($this->returnValue($this->request));
100 $this->renderingContext = $this->getMockBuilder(RenderingContextFixture::class)
101 ->setMethods([
'getControllerContext'])
103 $this->renderingContext->expects($this->any())->method(
'getControllerContext')->willReturn($this->controllerContext);
104 $this->viewHelper->_set(
'renderingContext', $this->renderingContext);
120 $this->viewHelper->_set(
'ajaxWidget',
true);
121 $this->ajaxWidgetContextHolder->expects($this->once())->method(
'store')->with($this->widgetContext);
130 $mockViewHelperVariableContainer = $this->createMock(ViewHelperVariableContainer::class);
131 $mockViewHelperVariableContainer->expects($this->any())->method(
'get')->willReturnArgument(2);
132 $mockRenderingContext = $this->createMock(RenderingContextFixture::class);
133 $mockRenderingContext->expects($this->atLeastOnce())->method(
'getViewHelperVariableContainer')->will($this->returnValue($mockViewHelperVariableContainer));
134 $mockRenderingContext->expects($this->any())->method(
'getControllerContext')->willReturn($this->controllerContext);
135 $this->viewHelper->setRenderingContext($mockRenderingContext);
136 $this->viewHelper->expects($this->once())->method(
'getWidgetConfiguration')->will($this->returnValue(
'Some Widget Configuration'));
137 $this->widgetContext->expects($this->once())->method(
'setWidgetConfiguration')->with(
'Some Widget Configuration');
138 $this->widgetContext->expects($this->once())->method(
'setWidgetIdentifier')->with(
'@widget_0');
139 $this->viewHelper->_set(
'controller',
new \stdClass());
140 $this->viewHelper->_set(
'renderingContext', $mockRenderingContext);
141 $this->widgetContext->expects($this->once())->method(
'setControllerObjectName')->with(
'stdClass');
142 $this->viewHelper->expects($this->once())->method(
'validateArguments');
143 $this->viewHelper->expects($this->once())->method(
'initialize');
144 $this->viewHelper->expects($this->once())->method(
'callRenderMethod')->will($this->returnValue(
'renderedResult'));
145 $output = $this->viewHelper->initializeArgumentsAndRender();
146 $this->assertEquals(
'renderedResult',
$output);
154 $node1 = $this->createMock(AbstractNode::class);
155 $node2 = $this->createMock(TextNode::class);
156 $node3 = $this->createMock(AbstractNode::class);
157 $rootNode = $this->createMock(RootNode::class);
158 $rootNode->expects($this->at(0))->method(
'addChildNode')->with($node1);
159 $rootNode->expects($this->at(1))->method(
'addChildNode')->with($node2);
160 $rootNode->expects($this->at(2))->method(
'addChildNode')->with($node3);
161 $this->objectManager->expects($this->once())->method(
'get')->with(RootNode::class)->will($this->returnValue($rootNode));
164 $this->widgetContext->expects($this->once())->method(
'setViewHelperChildNodes')->with($rootNode,
$renderingContext);
165 $this->viewHelper->setChildNodes([$node1, $node2, $node3]);
173 $controller = $this->createMock(AbstractWidgetViewHelper::class);
175 $this->expectException(MissingControllerException::class);
176 $this->expectExceptionCode(1289422564);
178 $this->viewHelper->_set(
'controller', $controller);
179 $this->viewHelper->_call(
'initiateSubRequest');
187 $controller = $this->createMock(AbstractWidgetController::class);
188 $this->viewHelper->_set(
'controller', $controller);
190 $widgetRequest = $this->createMock(WidgetRequest::class);
191 $response = $this->createMock(Response::class);
192 $this->objectManager->expects($this->at(0))->method(
'get')->with(WidgetRequest::class)->will($this->returnValue($widgetRequest));
193 $this->objectManager->expects($this->at(1))->method(
'get')->with(Response::class)->will($this->returnValue($response));
195 $widgetRequest->expects($this->once())->method(
'setWidgetContext')->with($this->widgetContext);
198 $this->controllerContext->expects($this->once())->method(
'getRequest')->will($this->returnValue($this->request));
199 $this->widgetContext->expects($this->once())->method(
'getWidgetIdentifier')->will($this->returnValue(
'widget-1'));
200 $this->request->expects($this->once())->method(
'getArguments')->will($this->returnValue([
205 'action' =>
'myAction'
208 $widgetRequest->expects($this->once())->method(
'setArguments')->with([
212 $widgetRequest->expects($this->once())->method(
'setControllerActionName')->with(
'myAction');
214 $controller->expects($this->once())->method(
'processRequest')->with($widgetRequest, $response);
215 $output = $this->viewHelper->_call(
'initiateSubRequest');
217 $this->assertSame($response,
$output);
225 $viewHelper = $this->getMockBuilder(AbstractWidgetViewHelper::class)
226 ->setMethods([
'dummy'])
229 $this->assertEquals([
'foo' =>
'bar'], $this->callInaccessibleMethod(
$viewHelper,
'getWidgetConfiguration'));
237 $viewHelper = $this->getMockBuilder(AbstractWidgetViewHelper::class)
238 ->setMethods([
'dummy'])
240 $node = $this->getMockBuilder(ViewHelperNode::class)
241 ->setMethods([
'dummy'])
242 ->disableOriginalConstructor()
244 $compiler = $this->getMockBuilder(TemplateCompiler::class)
245 ->setMethods([
'disable'])
247 $compiler->expects($this->once())->method(
'disable');
250 $this->assertEquals(
'\'\
'', $result);
251 $this->assertEquals(
'', $code);