2017-03-10 03:41:11 +00:00
|
|
|
<?php
|
2017-03-28 04:12:12 +00:00
|
|
|
namespace JKingWeb\Arsse;
|
2017-03-10 03:41:11 +00:00
|
|
|
const INSTALL = true;
|
|
|
|
require_once "../bootstrap.php";
|
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
|
2017-03-10 03:41:11 +00:00
|
|
|
$user = "john.doe@example.com";
|
|
|
|
$pass = "secret";
|
|
|
|
$_SERVER['PHP_AUTH_USER'] = $user;
|
|
|
|
$_SERVER['PHP_AUTH_PW'] = $pass;
|
|
|
|
$conf = new Conf();
|
|
|
|
$conf->dbSQLite3File = ":memory:";
|
|
|
|
$conf->userAuthPreferHTTP = true;
|
2017-03-28 22:50:00 +00:00
|
|
|
Data::load($conf);
|
|
|
|
Data::$db->schemaUpdate();
|
2017-03-10 03:41:11 +00:00
|
|
|
|
2017-03-28 22:50:00 +00:00
|
|
|
Data::$user->add($user, $pass);
|
|
|
|
Data::$user->auth();
|
|
|
|
Data::$user->authorizationEnabled(false);
|
|
|
|
Data::$user->rightsSet($user, User\Driver::RIGHTS_GLOBAL_ADMIN);
|
|
|
|
Data::$user->authorizationEnabled(true);
|
|
|
|
Data::$db->folderAdd($user, ['name' => 'ook']);
|
|
|
|
Data::$db->subscriptionAdd($user, "http://www.tbray.org/ongoing/ongoing.atom");
|