mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-23 17:12:41 +00:00
32 lines
943 B
PHP
32 lines
943 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\TestCase\Db\MySQL;
|
||
|
|
||
|
use JKingWeb\Arsse\Arsse;
|
||
|
use JKingWeb\Arsse\Db\MySQL\Driver as Driver;
|
||
|
|
||
|
/**
|
||
|
* @group slow
|
||
|
* @covers \JKingWeb\Arsse\Db\MySQL\Driver<extended>
|
||
|
* @covers \JKingWeb\Arsse\Db\MySQL\ExceptionBuilder */
|
||
|
class TestCreation extends \JKingWeb\Arsse\Test\AbstractTest {
|
||
|
public function setUp() {
|
||
|
if (!Driver::requirementsMet()) {
|
||
|
$this->markTestSkipped("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([
|
||
|
'dbMySQLPass' => (string) rand(),
|
||
|
]);
|
||
|
$this->assertException("connectionFailure", "Db");
|
||
|
new Driver;
|
||
|
}
|
||
|
}
|