1
1
Fork 0
mirror of https://code.mensbeam.com/MensBeam/Arsse.git synced 2025-01-23 03:20:33 +00:00
Arsse/tests/cases/Db/MySQLPDO/TestCreation.php

32 lines
945 B
PHP
Raw Normal View History

2019-01-15 10:51:55 -05:00
<?php
/** @license MIT
* Copyright 2017 J. King, Dustin Wilson et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
2021-04-14 11:17:01 -04:00
2019-01-15 10:51:55 -05:00
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 14:42:43 -04:00
public function setUp(): void {
2019-01-15 10:51:55 -05:00
if (!Driver::requirementsMet()) {
$this->markTestSkipped("PDO-MySQL extension not loaded");
}
}
2020-01-20 13:52:48 -05:00
public function testFailToConnect(): void {
2019-01-15 10:51:55 -05:00
// for the sake of simplicity we don't distinguish between failure modes, but the MySQL-supplied error messages do
self::setConf([
'dbMySQLHost' => "example.invalid",
2019-01-15 10:51:55 -05:00
]);
$this->assertException("connectionFailure", "Db");
new Driver;
}
}