test_scripts.php 942 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. //error_reporting(E_ALL);
  3. require_once('../phpQuery/phpQuery.php');
  4. phpQuery::$debug = true;
  5. phpQuery::plugin('Scripts');
  6. $testName = 'Scripts/example';
  7. $doc = phpQuery::newDocumentFile('test.html');
  8. $testResult = 10;
  9. if ($doc->script('example', 'p')->length == $testResult)
  10. print "Test '$testName' PASSED :)";
  11. else {
  12. print "Test '$testName' <strong>FAILED</strong> !!! ";
  13. print "<pre>";
  14. var_dump($doc->whois());
  15. print "</pre>\n";
  16. }
  17. print "\n";
  18. $testName = 'Scripts/gmail_login';
  19. $testResult = 1;
  20. $url = 'http://code.google.com/p/phpquery/w/edit/MultiDocumentSupport';
  21. //phpQuery::ajaxAllowURL($url);
  22. $editor = phpQuery::newDocument('<div/>')
  23. ->script('google_login')
  24. ->location($url);
  25. if ($editor->find('textarea#content')->length == $testResult)
  26. print "Test '$testName' PASSED :)";
  27. else {
  28. print "Test '$testName' <strong>FAILED</strong> !!! ";
  29. print "<pre>";
  30. var_dump($doc->whois());
  31. print "</pre>\n";
  32. }
  33. print "\n";
  34. ?>