Updates to Tomato RAF including NGINX && PHP
[tomato.git] / release / src / router / php / ext / oci8 / tests / password_new.phpt
blobc218d904fa2daef39504985178405a00b0095b08
1 --TEST--
2 oci_password_change()
3 --SKIPIF--
4 <?php
5 $target_dbs = array('oracledb' => true, 'timesten' => false);  // test runs on thes
6 require(dirname(__FILE__).'/skipif.inc');
7 if (empty($dbase)) die ("skip requires database connection string be set");
8 if ($test_drcp) die("skip password change not supported in DRCP Mode");
10 // This test is known to fail with Oracle 10.2.0.4 client libraries
11 // connecting to Oracle Database 11 (Oracle bug 6277160, fixed 10.2.0.5)
12 if (preg_match('/Release (11|12)\./', oci_server_version($c), $matches) === 1 &&
13     preg_match('/^10\.2\.0\.[1234]/', oci_client_version()) === 1) {
14     die ("skip test known to fail using Oracle 10.2.0.4 client libs connecting to Oracle 11 (6277160)");
17 --FILE--
18 <?php
20 // This test will diff if either the client or the server is 11.2.0.3
21 // (or greater) and the other is 11.2.0.2 (or earlier).  Both client
22 // and server must be upgraded at the same time.
24 require dirname(__FILE__)."/connect.inc";
26 $new_password = "test";
27 var_dump(oci_password_change($dbase, $user, $password, $new_password));
29 if (!empty($dbase)) {
30         var_dump($new_c = ocilogon($user,$new_password,$dbase));
32 else {
33         var_dump($new_c = ocilogon($user,$new_password));
36 var_dump(oci_password_change($dbase, $user, $new_password, $password));
39 echo "Done\n";
42 --EXPECTF--
43 resource(%d) of type (oci8 connection)
44 resource(%d) of type (oci8 connection)
45 resource(%d) of type (oci8 connection)
46 Done