Neos\FluidAdaptor\Tests\Functional\View\StandaloneViewTest::interceptorsWorkInPartialRenderedInStandaloneSection PHP Method

interceptorsWorkInPartialRenderedInStandaloneSection() public method

Tests the wrong interceptor behavior described in ticket FLOW-430 Basically the rendering should be consistent regardless of cache flushes, but due to the way the interceptor configuration was build the second second rendering was bound to fail, this should never happen.
    public function interceptorsWorkInPartialRenderedInStandaloneSection()
    {
        $httpRequest = Request::create(new Uri('http://localhost'));
        $actionRequest = new ActionRequest($httpRequest);
        $actionRequest->setFormat('html');
        $standaloneView = new StandaloneView($actionRequest, $this->standaloneViewNonce);
        $standaloneView->assign('hack', '<h1>HACK</h1>');
        $standaloneView->setTemplatePathAndFilename(__DIR__ . '/Fixtures/NestedRenderingConfiguration/TemplateWithSection.txt');
        $expected = 'Christian uses &lt;h1&gt;HACK&lt;/h1&gt;';
        $actual = trim($standaloneView->renderSection('test'));
        $this->assertSame($expected, $actual, 'First rendering was not escaped.');
        $partialCacheIdentifier = $standaloneView->getTemplatePaths()->getPartialIdentifier('Test');
        $templateCache = $this->objectManager->get(CacheManager::class)->getCache('Fluid_TemplateCache');
        $templateCache->remove($partialCacheIdentifier);
        $standaloneView = new StandaloneView($actionRequest, $this->standaloneViewNonce);
        $standaloneView->assign('hack', '<h1>HACK</h1>');
        $standaloneView->setTemplatePathAndFilename(__DIR__ . '/Fixtures/NestedRenderingConfiguration/TemplateWithSection.txt');
        $expected = 'Christian uses &lt;h1&gt;HACK&lt;/h1&gt;';
        $actual = trim($standaloneView->renderSection('test'));
        $this->assertSame($expected, $actual, 'Second rendering was not escaped.');
    }