svn: /php/php-src/ branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt
trunk/ext/pdo_firebird/tests/bug_53280.phpt

From: Date: Wed, 28 Dec 2011 18:52:39 +0000
Subject: svn: /php/php-src/ branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt
trunk/ext/pdo_firebird/tests/bug_53280.phpt
Groups: php.cvs 
Request: Send a blank email to [email protected] to get a copy of this message
mariuz                                   Wed, 28 Dec 2011 18:52:39 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=321484

Log:
Added test case for PDO_Firebird: bug 53280 segfaults if query column count is less than param count

Bug: https://bugs.php.net/53280 (Assigned) PDO_Firebird
segfaults query column count less than param count
      
Changed paths:
    A   php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt
    A   php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt
    A   php/php-src/trunk/ext/pdo_firebird/tests/bug_53280.phpt

Added: php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt
===================================================================
--- php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt	                        (rev
0)
+++ php/php-src/branches/PHP_5_3/ext/pdo_firebird/tests/bug_53280.phpt	2011-12-28 18:52:39 UTC (rev
321484)
@@ -0,0 +1,63 @@
+--TEST--
+PDO_Firebird: bug 53280 segfaults if query column count is less than param count
+--SKIPIF--
+<?php extension_loaded("pdo_firebird") or die("skip"); ?>
+--FILE--
+<?php
+
+require("testdb.inc");
+
+$dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
+$value = '2';
+@$dbh->exec('DROP TABLE testz');
+$dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))');
+$dbh->exec("INSERT INTO test VALUES ('A', 'B', 'C')");
+$dbh->commit();
+
+$stmt1 = "SELECT B FROM test WHERE A = ? AND B = ?";
+$stmt2 = "SELECT B, C FROM test WHERE A = ? AND B = ?";
+
+$stmth2 = $dbh->prepare($stmt2);
+$stmth2->execute(array('A', 'B'));
+$rows = $stmth2->fetchAll(); // <------ OK
+var_dump($rows);
+
+$stmth1 = $dbh->prepare($stmt1);
+$stmth1->execute(array('A', 'B'));
+$rows = $stmth1->fetchAll(); // <------- segfault
+var_dump($rows);
+
+$stmt = $dbh->prepare('DELETE FROM testz');
+$stmt->execute();
+
+$dbh->commit();
+
+$dbh->exec('DROP TABLE testz');
+
+unset($stmt);
+unset($dbh);
+
+?>
+--EXPECT--
+array(1) {
+  [0]=>
+  array(4) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+    ["C"]=>
+    string(1) "C"
+    [1]=>
+    string(1) "C"
+  }
+}
+array(1) {
+  [0]=>
+  array(2) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+  }
+}

Added: php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt
===================================================================
--- php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt	                        (rev
0)
+++ php/php-src/branches/PHP_5_4/ext/pdo_firebird/tests/bug_53280.phpt	2011-12-28 18:52:39 UTC (rev
321484)
@@ -0,0 +1,63 @@
+--TEST--
+PDO_Firebird: bug 53280 segfaults if query column count is less than param count
+--SKIPIF--
+<?php extension_loaded("pdo_firebird") or die("skip"); ?>
+--FILE--
+<?php
+
+require("testdb.inc");
+
+$dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
+$value = '2';
+@$dbh->exec('DROP TABLE testz');
+$dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))');
+$dbh->exec("INSERT INTO test VALUES ('A', 'B', 'C')");
+$dbh->commit();
+
+$stmt1 = "SELECT B FROM test WHERE A = ? AND B = ?";
+$stmt2 = "SELECT B, C FROM test WHERE A = ? AND B = ?";
+
+$stmth2 = $dbh->prepare($stmt2);
+$stmth2->execute(array('A', 'B'));
+$rows = $stmth2->fetchAll(); // <------ OK
+var_dump($rows);
+
+$stmth1 = $dbh->prepare($stmt1);
+$stmth1->execute(array('A', 'B'));
+$rows = $stmth1->fetchAll(); // <------- segfault
+var_dump($rows);
+
+$stmt = $dbh->prepare('DELETE FROM testz');
+$stmt->execute();
+
+$dbh->commit();
+
+$dbh->exec('DROP TABLE testz');
+
+unset($stmt);
+unset($dbh);
+
+?>
+--EXPECT--
+array(1) {
+  [0]=>
+  array(4) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+    ["C"]=>
+    string(1) "C"
+    [1]=>
+    string(1) "C"
+  }
+}
+array(1) {
+  [0]=>
+  array(2) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+  }
+}

Added: php/php-src/trunk/ext/pdo_firebird/tests/bug_53280.phpt
===================================================================
--- php/php-src/trunk/ext/pdo_firebird/tests/bug_53280.phpt	                        (rev 0)
+++ php/php-src/trunk/ext/pdo_firebird/tests/bug_53280.phpt	2011-12-28 18:52:39 UTC (rev 321484)
@@ -0,0 +1,63 @@
+--TEST--
+PDO_Firebird: bug 53280 segfaults if query column count is less than param count
+--SKIPIF--
+<?php extension_loaded("pdo_firebird") or die("skip"); ?>
+--FILE--
+<?php
+
+require("testdb.inc");
+
+$dbh = new PDO("firebird:dbname=$test_base",$user,$password) or die;
+$value = '2';
+@$dbh->exec('DROP TABLE testz');
+$dbh->exec('CREATE TABLE testz(A VARCHAR(30), B VARCHAR(30), C VARCHAR(30))');
+$dbh->exec("INSERT INTO test VALUES ('A', 'B', 'C')");
+$dbh->commit();
+
+$stmt1 = "SELECT B FROM test WHERE A = ? AND B = ?";
+$stmt2 = "SELECT B, C FROM test WHERE A = ? AND B = ?";
+
+$stmth2 = $dbh->prepare($stmt2);
+$stmth2->execute(array('A', 'B'));
+$rows = $stmth2->fetchAll(); // <------ OK
+var_dump($rows);
+
+$stmth1 = $dbh->prepare($stmt1);
+$stmth1->execute(array('A', 'B'));
+$rows = $stmth1->fetchAll(); // <------- segfault
+var_dump($rows);
+
+$stmt = $dbh->prepare('DELETE FROM testz');
+$stmt->execute();
+
+$dbh->commit();
+
+$dbh->exec('DROP TABLE testz');
+
+unset($stmt);
+unset($dbh);
+
+?>
+--EXPECT--
+array(1) {
+  [0]=>
+  array(4) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+    ["C"]=>
+    string(1) "C"
+    [1]=>
+    string(1) "C"
+  }
+}
+array(1) {
+  [0]=>
+  array(2) {
+    ["B"]=>
+    string(1) "B"
+    [0]=>
+    string(1) "B"
+  }
+}


Thread (1 message)

  • Popa Adrian Marius
« previous php.cvs (#67371) next »