AuthenticationCookieTest::testAuthCheckDecryptUser PHP Method

testAuthCheckDecryptUser() public method

Test for PMA\libraries\plugins\auth\AuthenticationConfig::authCheck (mock blowfish functions reqd)
public testAuthCheckDecryptUser ( ) : void
return void
    public function testAuthCheckDecryptUser()
    {
        $GLOBALS['server'] = 1;
        $_REQUEST['old_usr'] = '';
        $_REQUEST['pma_username'] = '';
        $_COOKIE['pmaServer-1'] = 'pmaServ1';
        $_COOKIE['pmaUser-1'] = 'pmaUser1';
        $_COOKIE['pma_iv-1'] = base64_encode('testiv09testiv09');
        $GLOBALS['cfg']['blowfish_secret'] = 'secret';
        $_SESSION['last_access_time'] = '';
        $GLOBALS['cfg']['CaptchaLoginPrivateKey'] = '';
        $GLOBALS['cfg']['CaptchaLoginPublicKey'] = '';
        // mock for blowfish function
        $this->object = $this->getMockBuilder('PMA\\libraries\\plugins\\auth\\AuthenticationCookie')->disableOriginalConstructor()->setMethods(array('cookieDecrypt'))->getMock();
        $this->object->expects($this->once())->method('cookieDecrypt')->will($this->returnValue('testBF'));
        $this->assertFalse($this->object->authCheck());
        $this->assertEquals('testBF', $GLOBALS['PHP_AUTH_USER']);
    }