mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
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\TestCase\Database;
|
|
|
|
use JKingWeb\Arsse\Arsse;
|
|
use JKingWeb\Arsse\Database;
|
|
|
|
trait SeriesMiscellany {
|
|
protected static $drv;
|
|
|
|
protected function setUpSeriesMiscellany(): void {
|
|
static::setConf([
|
|
'dbDriver' => static::$dbDriverClass,
|
|
]);
|
|
}
|
|
|
|
protected function tearDownSeriesMiscellany(): void {
|
|
}
|
|
|
|
public function testInitializeDatabase(): void {
|
|
static::dbRaze(static::$drv);
|
|
$d = new Database(true);
|
|
$this->assertSame(Database::SCHEMA_VERSION, $d->driverSchemaVersion());
|
|
}
|
|
|
|
public function testManuallyInitializeDatabase(): void {
|
|
static::dbRaze(static::$drv);
|
|
$d = new Database(false);
|
|
$this->assertSame(0, $d->driverSchemaVersion());
|
|
$this->assertTrue($d->driverSchemaUpdate());
|
|
$this->assertSame(Database::SCHEMA_VERSION, $d->driverSchemaVersion());
|
|
$this->assertFalse($d->driverSchemaUpdate());
|
|
}
|
|
|
|
public function testCheckCharacterSetAcceptability(): void {
|
|
$this->assertIsBool(Arsse::$db->driverCharsetAcceptable());
|
|
}
|
|
|
|
public function testPerformMaintenance(): void {
|
|
$this->assertTrue(Arsse::$db->driverMaintenance());
|
|
}
|
|
}
|