mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-27 21:58:52 +00:00
[ticket/10205] Test failed connection attempts.
PHPBB3-10205
This commit is contained in:
parent
dc521692f3
commit
f3c043a569
2 changed files with 49 additions and 0 deletions
44
tests/dbal/connect_test.php
Normal file
44
tests/dbal/connect_test.php
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
<?php
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* @package testing
|
||||||
|
* @copyright (c) 2012 phpBB Group
|
||||||
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
|
||||||
|
require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';
|
||||||
|
|
||||||
|
class phpbb_dbal_connect_test extends phpbb_database_test_case
|
||||||
|
{
|
||||||
|
public function getDataSet()
|
||||||
|
{
|
||||||
|
return $this->createXMLDataSet(dirname(__FILE__) . '/../fixtures/empty.xml');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function test_failing_connect()
|
||||||
|
{
|
||||||
|
global $phpbb_root_path, $phpEx;
|
||||||
|
|
||||||
|
$config = $this->get_database_config();
|
||||||
|
|
||||||
|
require_once dirname(__FILE__) . '/../../phpBB/includes/db/' . $config['dbms'] . '.php';
|
||||||
|
$dbal = 'dbal_' . $config['dbms'];
|
||||||
|
$db = new $dbal();
|
||||||
|
|
||||||
|
// Failure to connect results in a trigger_error call in dbal.
|
||||||
|
// phpunit converts triggered errors to exceptions.
|
||||||
|
// In particular there should be no fatals here.
|
||||||
|
try
|
||||||
|
{
|
||||||
|
$db->sql_connect($config['dbhost'], 'phpbbogus', 'phpbbogus', 'phpbbogus', $config['dbport']);
|
||||||
|
$this->assertFalse(true);
|
||||||
|
} catch (Exception $e)
|
||||||
|
{
|
||||||
|
// should have a legitimate message
|
||||||
|
$this->assertNotEmpty($e->getMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
return $db;
|
||||||
|
}
|
||||||
|
}
|
5
tests/fixtures/empty.xml
vendored
Normal file
5
tests/fixtures/empty.xml
vendored
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<dataset>
|
||||||
|
<table name="phpbb_posts">
|
||||||
|
</table>
|
||||||
|
</dataset>
|
Loading…
Add table
Reference in a new issue