]> granicus.if.org Git - php/commitdiff
cdb interface is currently readonly
authorMarcus Boerger <helly@php.net>
Sun, 3 Nov 2002 15:11:42 +0000 (15:11 +0000)
committerMarcus Boerger <helly@php.net>
Sun, 3 Nov 2002 15:11:42 +0000 (15:11 +0000)
ext/dba/tests/dba_cdb_read.phpt [new file with mode: 0644]
ext/dba/tests/test.cdb [new file with mode: 0644]

diff --git a/ext/dba/tests/dba_cdb_read.phpt b/ext/dba/tests/dba_cdb_read.phpt
new file mode 100644 (file)
index 0000000..8598d19
--- /dev/null
@@ -0,0 +1,41 @@
+--TEST--
+DBA CDB handler test (read only)
+--SKIPIF--
+<?php 
+       require_once('skipif.inc');
+       if (!in_array('cdb', dba_handlers())) die('skip CDB handler not available');
+?>
+--FILE--
+<?php
+       echo "database handler: cdb\n";
+       $handler = 'cdb';
+       $db_file = dirname(__FILE__).'/test.cdb';
+       if (($db_file=dba_open($db_file, "r", $handler))!==FALSE) {
+               $a = dba_firstkey($db_file);
+               $i=0;
+               echo "?$a";
+               while($a) {
+                       $a = dba_nextkey($db_file);
+                       echo $a;
+                       $i++;
+               }
+               echo "\n";
+               echo $i;
+               for ($i=1; $i<5; $i++) {
+                       echo dba_exists($i, $db_file) ? "Y" : "N";
+               }
+               echo "\n=";
+               echo dba_fetch(1, $db_file);
+               echo dba_fetch(2, $db_file);
+               echo dba_fetch(3, $db_file);
+               echo dba_fetch(4, $db_file);
+               dba_close($db_file);
+       } else {
+               echo "Error creating database\n";
+       }
+?>
+--EXPECT--
+database handler: cdb
+?1212314
+7YYYY
+=1234
\ No newline at end of file
diff --git a/ext/dba/tests/test.cdb b/ext/dba/tests/test.cdb
new file mode 100644 (file)
index 0000000..21529c6
Binary files /dev/null and b/ext/dba/tests/test.cdb differ