Example #1
0
 function testLoadFile()
 {
     file_put_contents(SABRE_TEMPDIR . '/backend', 'user:realm:' . md5('user:realm:password'));
     $file = new File();
     $file->loadFile(SABRE_TEMPDIR . '/backend');
     $this->assertFalse($file->getDigestHash('realm', 'blabla'));
     $this->assertEquals(md5('user:realm:password'), $file->getDigestHash('realm', 'user'));
 }