summaryrefslogtreecommitdiff
path: root/ext/pdo_oci/tests/common.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'ext/pdo_oci/tests/common.phpt')
-rw-r--r--ext/pdo_oci/tests/common.phpt26
1 files changed, 26 insertions, 0 deletions
diff --git a/ext/pdo_oci/tests/common.phpt b/ext/pdo_oci/tests/common.phpt
new file mode 100644
index 0000000..5107828
--- /dev/null
+++ b/ext/pdo_oci/tests/common.phpt
@@ -0,0 +1,26 @@
+--TEST--
+OCI
+--SKIPIF--
+<?php # vim:ft=php
+if (!extension_loaded('pdo_oci')) print 'skip'; ?>
+--REDIRECTTEST--
+# magic auto-configuration
+
+$config = array(
+ 'TESTS' => 'ext/pdo/tests'
+);
+
+
+if (false !== getenv('PDO_OCI_TEST_DSN')) {
+ # user set them from their shell
+ $config['ENV']['PDOTEST_DSN'] = getenv('PDO_OCI_TEST_DSN');
+ $config['ENV']['PDOTEST_USER'] = getenv('PDO_OCI_TEST_USER');
+ $config['ENV']['PDOTEST_PASS'] = getenv('PDO_OCI_TEST_PASS');
+ $config['ENV']['PDOTEST_ATTR'] = getenv('PDO_OCI_TEST_ATTR');
+} else {
+ $config['ENV']['PDOTEST_DSN'] = 'oci:dbname=localhost/xe;charset=WE8MSWIN1252';
+ $config['ENV']['PDOTEST_USER'] = 'SYSTEM';
+ $config['ENV']['PDOTEST_PASS'] = 'oracle';
+}
+
+return $config;