test_wrap.php 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. <?php
  2. require_once('../phpQuery/phpQuery.php');
  3. phpQuery::$debug = true;
  4. $testName = 'Wrap';
  5. $p = phpQuery::newDocumentFile('test.html')
  6. ->find('p')
  7. ->slice(1, 3);
  8. $p->wrap('<div class="wrapper">');
  9. $result = true;
  10. foreach($p as $node) {
  11. if (! pq($node)->parent()->is('.wrapper'))
  12. $result = false;
  13. }
  14. if ($result)
  15. print "Test '{$testName}' PASSED :)";
  16. else
  17. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  18. $p->dump();
  19. print "\n";
  20. $testName = 'WrapAll';
  21. $testResult = 1;
  22. phpQuery::newDocumentFile('test.html')
  23. ->find('p')
  24. ->slice(1, 3)
  25. ->wrapAll('<div class="wrapper">');
  26. $result = pq('.wrapper');
  27. if ( $result->size() == $testResult )
  28. print "Test '{$testName}' PASSED :)";
  29. else
  30. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  31. $result->dump();
  32. print "\n";
  33. $testName = 'WrapInner';
  34. $testResult = 3;
  35. phpQuery::newDocumentFile('test.html')
  36. ->find('li:first')
  37. ->wrapInner('<div class="wrapper">');
  38. $result = pq('.wrapper p');
  39. if ( $result->size() == $testResult )
  40. print "Test '{$testName}' PASSED :)";
  41. else
  42. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  43. print $result->dump();
  44. print "\n";
  45. // TODO !
  46. $testName = 'WrapAllTest';
  47. /*
  48. $doc = phpQuery::newDocumentHTML('<div id="myDiv"></div>');
  49. $doc['#myDiv']->append('hors paragraphe<p>Test</p>hors paragraphe')
  50. ->contents()
  51. ->not('[nodeType=1]')
  52. ->wrap('<p/>');
  53. var_dump((string)$doc);
  54. */
  55. //$testResult = 3;
  56. //phpQuery::newDocumentFile('test.html')
  57. // ->find('li:first')
  58. // ->wrapInner('<div class="wrapper">');
  59. //$result = pq('.wrapper p');
  60. //if ( $result->size() == $testResult )
  61. // print "Test '{$testName}' PASSED :)";
  62. //else
  63. // print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  64. //print $result->dump();
  65. //print "\n";
  66. ?>