mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
11b2066922
Includes PHPDoc license tag in the file-level block with accompanying copyright notice. Also added an AUTHORS file on the off chance of outside contributions
32 lines
1,009 B
PHP
32 lines
1,009 B
PHP
<?php
|
|
/** @license MIT
|
|
* Copyright 2017 J. King, Dustin Wilson et al.
|
|
* See LICENSE and AUTHORS files for details */
|
|
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Test\Database;
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
use JKingWeb\Arsse\Database;
|
|
|
|
trait SeriesMiscellany {
|
|
public function testListDrivers() {
|
|
$exp = [
|
|
'JKingWeb\\Arsse\\Db\\SQLite3\\Driver' => Arsse::$lang->msg("Driver.Db.SQLite3.Name"),
|
|
];
|
|
$this->assertArraySubset($exp, Database::driverList());
|
|
}
|
|
|
|
public function testInitializeDatabase() {
|
|
$d = new Database();
|
|
$this->assertSame(Database::SCHEMA_VERSION, $d->driverSchemaVersion());
|
|
}
|
|
|
|
public function testManuallyInitializeDatabase() {
|
|
$d = new Database(false);
|
|
$this->assertSame(0, $d->driverSchemaVersion());
|
|
$this->assertTrue($d->driverSchemaUpdate());
|
|
$this->assertSame(Database::SCHEMA_VERSION, $d->driverSchemaVersion());
|
|
$this->assertFalse($d->driverSchemaUpdate());
|
|
}
|
|
}
|