2017-03-03 01:47:00 +00:00
|
|
|
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace JKingWeb\NewsSync;
|
|
|
|
|
|
|
|
|
|
|
|
class TestUserInternalDriver extends \PHPUnit\Framework\TestCase {
|
|
|
|
use Test\Tools, Test\User\CommonTests;
|
|
|
|
|
|
|
|
const USER1 = "john.doe@example.com";
|
|
|
|
const USER2 = "jane.doe@example.com";
|
|
|
|
|
|
|
|
protected $data;
|
|
|
|
|
|
|
|
function setUp() {
|
2017-03-07 23:01:13 +00:00
|
|
|
$drv = User\Internal\Driver::class;
|
2017-03-03 01:47:00 +00:00
|
|
|
$conf = new Conf();
|
|
|
|
$conf->userDriver = $drv;
|
|
|
|
$conf->userAuthPreferHTTP = true;
|
|
|
|
$this->data = new Test\RuntimeData($conf);
|
|
|
|
$this->data->db = new Test\User\Database($this->data);
|
|
|
|
$this->data->user = new User($this->data);
|
|
|
|
$this->data->user->authorizationEnabled(false);
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = self::USER1;
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = "secret";
|
|
|
|
}
|
|
|
|
}
|