summaryrefslogtreecommitdiff
path: root/ext/dba/tests
diff options
context:
space:
mode:
authorMarcus Boerger <helly@php.net>2003-02-22 17:20:06 +0000
committerMarcus Boerger <helly@php.net>2003-02-22 17:20:06 +0000
commit8ab1924ca362f5a32c155c7ec65f6ec5853ed76a (patch)
treeb585169c4b873c5b4ad07d229b7a0df861338454 /ext/dba/tests
parent8c2dbd5f0fca49a0c10c2494d58509a2629af3a2 (diff)
downloadphp-git-8ab1924ca362f5a32c155c7ec65f6ec5853ed76a.tar.gz
@Added dba handler inifiles to support ini files. (Marcus)
Diffstat (limited to 'ext/dba/tests')
-rw-r--r--ext/dba/tests/dba_inifile.phpt29
1 files changed, 29 insertions, 0 deletions
diff --git a/ext/dba/tests/dba_inifile.phpt b/ext/dba/tests/dba_inifile.phpt
new file mode 100644
index 0000000000..5ccccbe238
--- /dev/null
+++ b/ext/dba/tests/dba_inifile.phpt
@@ -0,0 +1,29 @@
+--TEST--
+DBA INIFILE handler test
+--SKIPIF--
+<?php
+ require_once('skipif.inc');
+ if (!in_array('inifile', dba_handlers())) die('skip INIFILE handler not available');
+?>
+--FILE--
+<?php
+ require_once('test.inc');
+ $handler = 'inifile';
+ require_once('dba_handler.inc');
+?>
+--EXPECT--
+database handler: inifile
+3NYNYY
+Content String 2
+Content 2 replaced
+Read during write: not allowed
+Content 2 replaced 2nd time
+The 6th value
+array(3) {
+ ["key number 6"]=>
+ string(13) "The 6th value"
+ ["key2"]=>
+ string(27) "Content 2 replaced 2nd time"
+ ["key5"]=>
+ string(23) "The last content string"
+} \ No newline at end of file