xref: /PHP-7.4/ext/pdo_pgsql/tests/common.phpt (revision 92ac598a)
1--TEST--
2Postgres
3--SKIPIF--
4<?php
5if (!extension_loaded('pdo_pgsql')) print 'skip'; ?>
6--REDIRECTTEST--
7# magic auto-configuration
8# Also update config.inc if you make changes here...
9
10$config = array(
11	'TESTS' => __DIR__ . '/ext/pdo/tests'
12);
13
14if (false !== getenv('PDO_PGSQL_TEST_DSN')) {
15	# user set them from their shell
16	$config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
17	if (false !== getenv('PDO_PGSQL_TEST_ATTR')) {
18		$config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
19	}
20} else {
21	$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres';
22	$config['ENV']['PDOTEST_USER'] = 'postgres';
23	$config['ENV']['PDOTEST_PASS'] = 'postgres';
24}
25
26return $config;
27