mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-05 16:02:59 +00:00
31 lines
694 B
PHP
31 lines
694 B
PHP
<?php
|
|
|
|
abstract class Sabre_DAV_Auth_Backend_AbstractPDOTest extends PHPUnit_Framework_TestCase {
|
|
|
|
abstract function getPDO();
|
|
|
|
function testConstruct() {
|
|
|
|
$pdo = $this->getPDO();
|
|
$backend = new Sabre_DAV_Auth_Backend_PDO($pdo);
|
|
$this->assertTrue($backend instanceof Sabre_DAV_Auth_Backend_PDO);
|
|
|
|
}
|
|
|
|
/**
|
|
* @depends testConstruct
|
|
*/
|
|
function testUserInfo() {
|
|
|
|
$pdo = $this->getPDO();
|
|
$backend = new Sabre_DAV_Auth_Backend_PDO($pdo);
|
|
|
|
$this->assertNull($backend->getDigestHash('realm','blabla'));
|
|
|
|
$expected = 'hash';
|
|
|
|
$this->assertEquals($expected, $backend->getDigestHash('realm','user'));
|
|
|
|
}
|
|
|
|
}
|