Neos\Flow\Tests\Unit\Session\SessionTest::shutdownCreatesSpecialDataEntryForSessionWithAuthenticatedAccounts PHP Method

shutdownCreatesSpecialDataEntryForSessionWithAuthenticatedAccounts() public method

    public function shutdownCreatesSpecialDataEntryForSessionWithAuthenticatedAccounts()
    {
        $session = new Session();
        $this->inject($session, 'bootstrap', $this->mockBootstrap);
        $this->inject($session, 'objectManager', $this->mockObjectManager);
        $this->inject($session, 'settings', $this->settings);
        $this->inject($session, 'metaDataCache', $this->createCache('Meta'));
        $this->inject($session, 'storageCache', $this->createCache('Storage'));
        $session->initializeObject();
        $session->start();
        $account = new Account();
        $account->setAccountIdentifier('admin');
        $account->setAuthenticationProviderName('MyProvider');
        $token = new UsernamePassword();
        $token->setAuthenticationStatus(TokenInterface::AUTHENTICATION_SUCCESSFUL);
        $token->setAccount($account);
        $this->mockSecurityContext->expects($this->any())->method('isInitialized')->will($this->returnValue(true));
        $this->mockSecurityContext->expects($this->any())->method('getAuthenticationTokens')->will($this->returnValue([$token]));
        $session->close();
        $this->httpRequest->setCookie($this->httpResponse->getCookie('TYPO3_Flow_Session'));
        $session->resume();
        $this->assertEquals(['MyProvider:admin'], $session->getData('TYPO3_Flow_Security_Accounts'));
    }
SessionTest