test_ajax.php 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. <?php
  2. //error_reporting(E_ALL);
  3. set_include_path(
  4. get_include_path().PATH_SEPARATOR
  5. .'zend-framework/'
  6. );
  7. require_once('../phpQuery/phpQuery.php');
  8. phpQuery::$debug = true;
  9. phpQuery::$ajaxAllowedHosts[] = 'wikipedia.org';
  10. phpQuery::$ajaxAllowedHosts[] = 'google.com';
  11. phpQuery::$ajaxAllowedHosts[] = 'code.google.com';
  12. phpQuery::$ajaxAllowedHosts[] = 'www.google.com';
  13. //$pq = phpQuery::ajax(array(
  14. // 'url' => 'http://wikipedia.org/',
  15. // 'success' => 'v87shs79d8fhs9d'
  16. //));
  17. //function v87shs79d8fhs9d($html) {
  18. // $title = phpQuery::newDocument($html)->find('title');
  19. // $testName = 'Simple AJAX';
  20. // if ( strpos(strtolower($title->html()), 'wikipedia') !== false )
  21. // print "Test '$testName' PASSED :)";
  22. // else {
  23. // print "Test '$testName' <strong>FAILED</strong> !!! ";
  24. // print "<pre>";
  25. // print_r($title->whois());
  26. // print "</pre>\n";
  27. // }
  28. // print "\n";
  29. //}
  30. $testName = 'Load';
  31. $test = phpQuery::newDocumentFile('test.html')
  32. ->find('div:first')
  33. ->load('http://wikipedia.org/ div[lang]');
  34. if (pq('div[lang]')->size())
  35. print "Test '$testName' PASSED :)";
  36. else {
  37. print "Test '$testName' <strong>FAILED</strong> !!! ";
  38. print "<pre>";
  39. print "</pre>\n";
  40. }
  41. print "\n";
  42. // http://code.google.com/p/phpquery/issues/detail?id=130
  43. $pq = phpQuery::ajax(array(
  44. 'url' => 'http://'.$_SERVER['SERVER_NAME'].preg_replace('@/[^/]+$@', '/test_ajax_data_1', $_SERVER['REQUEST_URI']),
  45. 'success' => 'a789fhasdui3124',
  46. 'error' => 'jhdbg786213u8dsfg7y'
  47. ));
  48. function a789fhasdui3124($html) {
  49. $testName = 'AJAX request text node';
  50. if ( $html == 'hello world' )
  51. print "Test '$testName' PASSED :)";
  52. else {
  53. print "Test '$testName' <strong>FAILED</strong> !!! ";
  54. }
  55. print "\n";
  56. }
  57. function jhdbg786213u8dsfg7y() {
  58. $testName = 'AJAX request text node';
  59. print "Test '$testName' <strong>FAILED</strong> !!! ";
  60. }
  61. //$testName = 'gdata plugin';
  62. //phpQuery::extend('gdata');
  63. //$xhr = phpQuery::$plugins->gdata('tobiasz.cudnik@gmail.com', 'XXX');
  64. //$url = 'http://code.google.com/p/phpquery/w/edit/Callbacks';
  65. //phpQuery::ajax(array('url' => $url, 'success' => 'ksjsdgh892jh23'), $xhr);
  66. //function ksjsdgh892jh23($html) {
  67. // print $html;
  68. // print pq($html)->find('script')->remove()->end();
  69. // if (pq('div[lang]')->size())
  70. // print "Test '$testName' PASSED :)";
  71. // else {
  72. // print "Test '$testName' <strong>FAILED</strong> !!! ";
  73. // print "<pre>";
  74. // print "</pre>\n";
  75. // }
  76. // print "\n";
  77. //}