timeout.phpt 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. --TEST--
  2. PDO_DBLIB: Set query timeouts
  3. --EXTENSIONS--
  4. pdo_dblib
  5. --SKIPIF--
  6. <?php
  7. if (getenv("SKIP_SLOW_TESTS")) die("skip slow test");
  8. require __DIR__ . '/config.inc';
  9. ?>
  10. --FILE--
  11. <?php
  12. require __DIR__ . '/config.inc';
  13. $sql = 'WAITFOR DELAY \'00:00:02\'';
  14. // regular timeout attribute, set after instance created, will affect query timeout, causing this query to fail
  15. $db = new PDO($dsn, $user, $pass);
  16. $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
  17. $db->setAttribute(PDO::ATTR_TIMEOUT, 1);
  18. $stmt = $db->prepare($sql);
  19. if (!$stmt->execute()) {
  20. echo "OK\n";
  21. // expect some kind of error code
  22. if ($stmt->errorCode() != '00000') {
  23. echo "OK\n";
  24. }
  25. }
  26. // pdo_dblib-specific timeout attribute, set after instance created, will control query timeout, causing this query to fail
  27. $db = new PDO($dsn, $user, $pass);
  28. $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_SILENT);
  29. $db->setAttribute(PDO::DBLIB_ATTR_QUERY_TIMEOUT, 1);
  30. $stmt = $db->prepare($sql);
  31. if (!$stmt->execute()) {
  32. echo "OK\n";
  33. // expect some kind of error code
  34. if ($stmt->errorCode() != '00000') {
  35. echo "OK\n";
  36. }
  37. }
  38. // regular timeout attribute will affect query timeout, causing this query to fail
  39. $db = new PDO($dsn, $user, $pass, [PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, PDO::ATTR_TIMEOUT => 1]);
  40. $stmt = $db->prepare($sql);
  41. if (!$stmt->execute()) {
  42. echo "OK\n";
  43. // expect some kind of error code
  44. if ($stmt->errorCode() != '00000') {
  45. echo "OK\n";
  46. }
  47. }
  48. // pdo_dblib-specific timeout attribute will control query timeout, causing this query to fail
  49. $db = new PDO($dsn, $user, $pass, [PDO::ATTR_ERRMODE => PDO::ERRMODE_SILENT, PDO::DBLIB_ATTR_QUERY_TIMEOUT => 1]);
  50. $stmt = $db->prepare($sql);
  51. if (!$stmt->execute()) {
  52. echo "OK\n";
  53. // expect some kind of error code
  54. if ($stmt->errorCode() != '00000') {
  55. echo "OK\n";
  56. }
  57. }
  58. ?>
  59. --EXPECT--
  60. OK
  61. OK
  62. OK
  63. OK
  64. OK
  65. OK
  66. OK
  67. OK