validate() public method

Reset the current session information in case it does not match the authentication information anymore.
public validate ( string $user = null ) : boolean
$user string The user the session information is being requested for. This is usually empty, indicating the current user.
return boolean True if the session is still valid.
示例#1
0
文件: BaseTest.php 项目: horde/horde
 public function testMethodIsvalidHasResultBooleanTrueIfTheMailOfTheCurrentUserMatchesTheCurrentUserOfTheSessionAndTheNewUserMatchesEitherTheCurrentUserMailAndUid()
 {
     $auth = '*****@*****.**';
     $session = $this->getMock('Horde_Kolab_Session');
     $session->expects($this->once())->method('getMail')->will($this->returnValue('*****@*****.**'));
     $valid = new Horde_Kolab_Session_Valid_Base($session, $auth);
     $this->assertTrue($valid->validate('*****@*****.**'));
 }
示例#2
0
文件: ValidTest.php 项目: horde/horde
 public function testMethodIsvalidHasResultBooleanTrueIfTheMailOfTheCurrentUserMatchesTheCurrentUserOfTheSessionAndTheNewUserMatchesEitherTheCurrentUserMailAndUid()
 {
     $auth = '*****@*****.**';
     $this->user->expects($this->exactly(5))->method('getSingle')->will($this->returnValue('*****@*****.**'));
     $composite = $this->_getMockedComposite();
     $composite->objects->expects($this->once())->method('fetch')->will($this->returnValue($this->user));
     $session = new Horde_Kolab_Session_Base($composite, array());
     $session->connect('', array('password' => ''));
     $valid = new Horde_Kolab_Session_Valid_Base($session, $auth);
     $this->assertTrue($valid->validate('*****@*****.**'));
 }