X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=fc00a385c7be31acf028767cb25a0b21ddc8bc2a;hp=11a4276a0a625a62b232620d6025a8d5a8892571;hb=16f45efdd0cb7190ad7738ee92af5c4c6c1f04ed;hpb=d4f2435f5b1d4ca6b0a845772fc00efac703a05c diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 11a4276..fc00a38 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -9,11 +9,16 @@ echo "Test\n"; include "_setup.inc"; $c = new pq\Connection(PQ_DSN); -new pq\Event($c, pq\Event::NOTICE, function($c, $notice) { - echo "Got notice: $notice"; +$c->exec("DROP TABLE IF EXISTS test CASCADE"); +$c->on(pq\Connection::EVENT_NOTICE, function($c, $notice) { + echo "Got notice: $notice\n"; }); +var_dump($c->transactionStatus == pq\Connection::TRANS_IDLE); $t = new pq\Transaction($c); -$c->exec("DROP TABLE IF EXISTS test; CREATE TABLE test (id serial, data text)"); +var_dump($t->connection->transactionStatus == pq\Connection::TRANS_INTRANS); +$c->exec("DROP TABLE IF EXISTS test"); +$c->off(pq\Connection::EVENT_NOTICE); +$c->exec("CREATE TABLE test (id serial, data text)"); $s = $c->prepare("test_insert", "INSERT INTO test (data) VALUES (\$1)", array((new pq\Types($c))["text"]->oid)); $s->exec(array("a")); $s->exec(array("b")); @@ -23,13 +28,16 @@ while ($row = $r->fetchRow(pq\Result::FETCH_OBJECT)) { printf("%d => %s\n", $row->id, $row->data); } $t->rollback(); +var_dump($c->transactionStatus == pq\Connection::TRANS_IDLE); ?> DONE --EXPECT-- Test +bool(true) +bool(true) Got notice: NOTICE: table "test" does not exist, skipping -Got notice: NOTICE: CREATE TABLE will create implicit sequence "test_id_seq" for serial column "test.id" 1 => a 2 => b 3 => c +bool(true) DONE