2019-01-15 15:51:55 +00:00
|
|
|
<?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\MySQLPDO;
|
|
|
|
|
|
|
|
use JKingWeb\Arsse\Db\MySQL\PDODriver as Driver;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @group slow
|
|
|
|
* @covers \JKingWeb\Arsse\Db\MySQL\PDODriver<extended>
|
|
|
|
* @covers \JKingWeb\Arsse\Db\MySQL\ExceptionBuilder */
|
|
|
|
class TestCreation extends \JKingWeb\Arsse\Test\AbstractTest {
|
2019-10-16 18:42:43 +00:00
|
|
|
public function setUp(): void {
|
2019-01-15 15:51:55 +00:00
|
|
|
if (!Driver::requirementsMet()) {
|
|
|
|
$this->markTestSkipped("PDO-MySQL extension not loaded");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testFailToConnect() {
|
|
|
|
// for the sake of simplicity we don't distinguish between failure modes, but the MySQL-supplied error messages do
|
|
|
|
self::setConf([
|
2019-10-16 14:26:39 +00:00
|
|
|
'dbMySQLHost' => "example.invalid",
|
2019-01-15 15:51:55 +00:00
|
|
|
]);
|
|
|
|
$this->assertException("connectionFailure", "Db");
|
|
|
|
new Driver;
|
|
|
|
}
|
|
|
|
}
|