mirror of
https://github.com/danog/ext-pq.git
synced 2024-11-30 04:19:49 +01:00
tests
This commit is contained in:
parent
9746180a4d
commit
85f1422073
48
tests/lob002.phpt
Normal file
48
tests/lob002.phpt
Normal file
@ -0,0 +1,48 @@
|
||||
--TEST--
|
||||
large object stream
|
||||
--SKIPIF--
|
||||
<?php include "_skipif.inc"; ?>
|
||||
--FILE--
|
||||
<?php
|
||||
echo "Test\n";
|
||||
|
||||
include "_setup.inc";
|
||||
|
||||
$c = new pq\Connection(PQ_DSN);
|
||||
$t = $c->startTransaction();
|
||||
|
||||
$lob = $t->createLOB();
|
||||
fwrite($lob->stream, file_get_contents(__FILE__));
|
||||
var_dump(ftell($lob->stream));
|
||||
|
||||
fseek($lob->stream, 0, SEEK_SET);
|
||||
$dat = fread($lob->stream, filesize(__FILE__));
|
||||
var_dump(hash("md5", $dat)==hash_file("md5", __FILE__));
|
||||
|
||||
ftruncate($lob->stream, 5);
|
||||
|
||||
$lob = new pq\Lob($t, $lob->oid);
|
||||
var_dump(fread($lob->stream, 123));
|
||||
|
||||
$t->commit();
|
||||
$t->unlinkLOB($lob->oid);
|
||||
|
||||
?>
|
||||
DONE
|
||||
--EXPECTF--
|
||||
Test
|
||||
int(503)
|
||||
bool(true)
|
||||
|
||||
Warning: ftruncate(): Can't truncate this stream! in %s on line %d
|
||||
string(123) "<?php
|
||||
echo "Test\n";
|
||||
|
||||
include "_setup.inc";
|
||||
|
||||
$c = new pq\Connection(PQ_DSN);
|
||||
$t = $c->startTransaction();
|
||||
|
||||
$lob = $t->creat"
|
||||
DONE
|
||||
|
32
tests/lob003.phpt
Normal file
32
tests/lob003.phpt
Normal file
@ -0,0 +1,32 @@
|
||||
--TEST--
|
||||
large object closing stream
|
||||
--SKIPIF--
|
||||
<?php include "_skipif.inc"; ?>
|
||||
--FILE--
|
||||
<?php
|
||||
echo "Test\n";
|
||||
|
||||
include "_setup.inc";
|
||||
|
||||
$c = new pq\Connection(PQ_DSN);
|
||||
$t = $c->startTransaction();
|
||||
|
||||
$lob = $t->createLOB();
|
||||
var_dump($lob->stream);
|
||||
var_dump($lob->stream);
|
||||
fclose($lob->stream); // bad boy!
|
||||
var_dump($lob->stream);
|
||||
var_dump(fread($lob->stream, 5));
|
||||
$lob = null;
|
||||
?>
|
||||
DONE
|
||||
--EXPECTF--
|
||||
Test
|
||||
resource(%d) of type (stream)
|
||||
resource(%d) of type (stream)
|
||||
|
||||
Warning: fclose(): %d is not a valid stream resource in %s on line %d
|
||||
resource(%d) of type (stream)
|
||||
string(0) ""
|
||||
DONE
|
||||
|
Loading…
Reference in New Issue
Block a user