php-src/ext/oci8/tests/connect_without_oracle_home_old.phpt

38 lines
965 B
Plaintext
Raw Normal View History

2005-12-01 13:39:48 +00:00
--TEST--
ocilogon() without ORACLE_HOME set (OCIServerAttach() segfaults)
--SKIPIF--
2006-12-12 13:22:44 +00:00
<?php
if (!extension_loaded('oci8')) die("skip no oci8 extension");
ob_start();
phpinfo(INFO_MODULES);
$phpinfo = ob_get_clean();
$ov = preg_match('/Compile-time ORACLE_HOME/', $phpinfo);
if ($ov !== 1) {
die ("skip Test only valid when OCI8 is built with an ORACLE_HOME");
}
if (preg_match('/^10\.2\./', oci_client_version()) != 1) {
die("skip test expected to work only with Oracle 10gR2 client libraries");
}
2006-12-12 13:22:44 +00:00
?>
--ENV--
ORACLE_HOME=""
2005-12-01 13:39:48 +00:00
--FILE--
<?php
require dirname(__FILE__)."/details.inc";
2005-12-01 13:39:48 +00:00
if (!empty($dbase)) {
var_dump(ocilogon($user, $password, $dbase));
}
else {
var_dump(ocilogon($user, $password));
}
?>
===DONE===
<?php exit(0); ?>
2005-12-01 13:39:48 +00:00
--EXPECTF--
Warning: ocilogon(): OCIEnvNlsCreate() failed. There is something wrong with your system - please check that ORACLE_HOME and %s are set and point to the right directories in %s on line %d
2005-12-01 13:39:48 +00:00
bool(false)
===DONE===