test_multidoc.php 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. require_once('../phpQuery/phpQuery.php');
  3. phpQuery::$debug = true;
  4. $testName = 'Multi document append phpQuery object';
  5. $testResult = array(
  6. 'p.body',
  7. );
  8. $doc1 = phpQuery::newDocumentFile('test.html');
  9. $doc2 = phpQuery::newDocumentFile('test.html');
  10. foreach ($doc1->find('p') as $node)
  11. $doc2->find('body')->append(pq($node));
  12. $testResult = $doc2->find('p');
  13. if ( $testResult->size() == 2*$doc1->find('p')->size() )
  14. print "Test '{$testName}' PASSED :)";
  15. else {
  16. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />";
  17. $testResult->whois();
  18. }
  19. $testName = 'Multi document append DOMNode';
  20. $testResult = array(
  21. 'p.body',
  22. );
  23. $doc1 = phpQuery::newDocumentFile('test.html');
  24. $doc2 = phpQuery::newDocumentFile('test.html');
  25. foreach ($doc1->find('p') as $node)
  26. $doc2->find('body')->append($node);
  27. $testResult = $doc2->find('p');
  28. if ( $testResult->size() == 2*$doc1->find('p')->size() )
  29. print "Test '{$testName}' PASSED :)";
  30. else {
  31. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />";
  32. $testResult->whois();
  33. }
  34. ?>