mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2025-01-07 00:12:40 +00:00
32 lines
1 KiB
PHP
32 lines
1 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\Db\MySQL;
|
|
|
|
use JKingWeb\Arsse\Db\MySQL\Driver as Driver;
|
|
use PHPUnit\Framework\Attributes\CoversClass;
|
|
use PHPUnit\Framework\Attributes\Group;
|
|
|
|
#[Group("slow")]
|
|
#[CoversClass(\JKingWeb\Arsse\Db\MySQL\Driver::class)]
|
|
#[CoversClass(\JKingWeb\Arsse\Db\MySQL\ExceptionBuilder::class)]
|
|
class TestCreation extends \JKingWeb\Arsse\Test\AbstractTest {
|
|
public function setUp(): void {
|
|
if (!Driver::requirementsMet()) {
|
|
$this->markTestSkipped("MySQL extension not loaded");
|
|
}
|
|
}
|
|
|
|
public function testFailToConnect(): void {
|
|
// for the sake of simplicity we don't distinguish between failure modes, but the MySQL-supplied error messages do
|
|
self::setConf([
|
|
'dbMySQLHost' => "example.invalid",
|
|
]);
|
|
$this->assertException("connectionFailure", "Db");
|
|
new Driver;
|
|
}
|
|
}
|