Neos\Flow\Tests\Unit\Security\Authentication\Token\PasswordTokenTest::credentialsAreSetCorrectlyFromPostArguments PHP Method

credentialsAreSetCorrectlyFromPostArguments() public method

    public function credentialsAreSetCorrectlyFromPostArguments()
    {
        $arguments = [];
        $arguments['__authentication']['TYPO3']['Flow']['Security']['Authentication']['Token']['PasswordToken']['password'] = 'verysecurepassword';
        $this->mockHttpRequest->expects($this->atLeastOnce())->method('getMethod')->will($this->returnValue('POST'));
        $this->mockActionRequest->expects($this->atLeastOnce())->method('getInternalArguments')->will($this->returnValue($arguments));
        $this->token->updateCredentials($this->mockActionRequest);
        $expectedCredentials = ['password' => 'verysecurepassword'];
        $this->assertEquals($expectedCredentials, $this->token->getCredentials(), 'The credentials have not been extracted correctly from the POST arguments');
    }