X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-pq;a=blobdiff_plain;f=tests%2Ftrans001.phpt;h=c22f2a95f3408f2434784c63545b209fdbfead1b;hp=02b8c1779f5b5d56834e53b5317e83fd78300d7f;hb=dd52670ccf9557faa0152babbfcf72b5c1be2ceb;hpb=01a3a98f9a7fa77699a21ed9fe39b5f5eff3b0c3 diff --git a/tests/trans001.phpt b/tests/trans001.phpt index 02b8c17..c22f2a9 100644 --- a/tests/trans001.phpt +++ b/tests/trans001.phpt @@ -9,9 +9,17 @@ echo "Test\n"; include "_setup.inc"; $c = new pq\Connection(PQ_DSN); +$c->exec("DROP TABLE IF EXISTS test"); +$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); +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($c->types->byName->text->oid)); +$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")); $s->exec(array("c")); @@ -20,11 +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 1 => a 2 => b 3 => c +bool(true) DONE