mysqli_ssl_set.phpt 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. --TEST--
  2. mysqli_ssl_set() - test is a stub!
  3. --SKIPIF--
  4. <?php
  5. require_once('skipif.inc');
  6. require_once('skipifemb.inc');
  7. require_once('skipifconnectfailure.inc');
  8. if (!function_exists('mysqli_ssl_set'))
  9. die("skip function not available");
  10. ?>
  11. --FILE--
  12. <?php
  13. require_once("connect.inc");
  14. $tmp = NULL;
  15. $link = NULL;
  16. if (!is_null($tmp = @mysqli_ssl_set()))
  17. printf("[001] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  18. if (!is_null($tmp = @mysqli_ssl_set($link)))
  19. printf("[002] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  20. if (!is_null($tmp = @mysqli_ssl_set($link, $link)))
  21. printf("[003] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  22. if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link)))
  23. printf("[004] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  24. if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link, $link)))
  25. printf("[005] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  26. if (!is_null($tmp = @mysqli_ssl_set($link, $link, $link, $link, $link)))
  27. printf("[006] Expecting NULL, got %s/%s\n", gettype($tmp), $tmp);
  28. /*
  29. This function always returns TRUE value.
  30. $link = mysqli_init();
  31. if (NULL !== ($tmp = @mysqli_ssl_set(
  32. $link,
  33. 'The path name to the key file.',
  34. 'The path name to the certificate file.',
  35. 'The path name to the certificate authority file.',
  36. 'The pathname to a directory that contains trusted SSL CA certificates in PEM format.',
  37. 'A list of allowable ciphers to use for SSL encryption.')))
  38. printf("[007] Expecting boolean/true, got %s/%s\n", gettype($tmp), $tmp);
  39. If SSL setup is incorrect my_mysqli_real_connect()
  40. will return an error when you attempt to connect.
  41. ... and the above SSL setup should be always incorrect.
  42. if (false !== ($tmp = my_mysqli_real_connect($link, $host, $user, $passwd, $db, $port, $socket)))
  43. printf("[008] Expecting boolean/false, got %s/%s\n", gettype($tmp), $tmp);
  44. */
  45. print "done!\n";
  46. ?>
  47. --EXPECTF--
  48. done!