xref: /PHP-7.4/ext/pdo_pgsql/tests/config.inc (revision 92ac598a)
1<?php
2if (false !== getenv('PDO_PGSQL_TEST_DSN')) {
3	# user set them from their shell
4	$config['ENV']['PDOTEST_DSN'] = getenv('PDO_PGSQL_TEST_DSN');
5	if (false !== getenv('PDO_PGSQL_TEST_ATTR')) {
6		$config['ENV']['PDOTEST_ATTR'] = getenv('PDO_PGSQL_TEST_ATTR');
7	}
8} else {
9	$config['ENV']['PDOTEST_DSN'] = 'pgsql:host=localhost port=5432 dbname=test user=postgres password=postgres';
10	$config['ENV']['PDOTEST_USER'] = 'postgres';
11	$config['ENV']['PDOTEST_PASS'] = 'postgres';
12}
13
14foreach ($config['ENV'] as $k => $v) {
15	putenv("$k=$v");
16}
17