test_manipulation.php 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. <?php
  2. require_once('../phpQuery/phpQuery.php');
  3. phpQuery::$debug = true;
  4. $testName = 'Simple data insertion';
  5. $testResult = <<<EOF
  6. <div class="articles">
  7. div.articles text node
  8. <ul>
  9. <li>
  10. <p>This is paragraph of first LI</p>
  11. <p class="title">News 1 title</p>
  12. <p class="body">News 1 body</p>
  13. </li>
  14. <li>
  15. <p>This is paragraph of first LI</p>
  16. <p class="title">News 2 title</p>
  17. <p class="body">News 2 body</p>
  18. </li>
  19. <li>
  20. <p>This is paragraph of first LI</p>
  21. <p class="title">News 3</p>
  22. <p class="body">News 3 body</p>
  23. </li>
  24. </ul>
  25. <p>paragraph after UL</p>
  26. </div>
  27. EOF;
  28. $rows = array(
  29. array(
  30. 'title' => 'News 1 title',
  31. 'body' => 'News 1 body',
  32. ),
  33. array(
  34. 'title' => 'News 2 title',
  35. 'body' => 'News 2 body',
  36. ),
  37. array(
  38. 'title' => 'News 3',
  39. 'body' => 'News 3 body',
  40. ),
  41. );
  42. phpQuery::newDocumentFile('test.html');
  43. $articles = pq('.articles ul');
  44. $rowSrc = $articles->find('li')
  45. ->remove()
  46. ->eq(0);
  47. foreach( $rows as $r ) {
  48. $row = $rowSrc->_clone();
  49. foreach( $r as $field => $value ) {
  50. $row->find(".{$field}")
  51. ->html($value);
  52. // die($row->htmlOuter());
  53. }
  54. $row->appendTo($articles);
  55. }
  56. $result = pq('.articles')->htmlOuter();
  57. //print htmlspecialchars("<pre>{$result}</pre>").'<br />';
  58. $similarity = 0.0;
  59. similar_text($testResult, $result, $similarity);
  60. if ($similarity > 90)
  61. print "Test '{$testName}' passed :)";
  62. else
  63. print "Test '{$testName}' <strong>FAILED</strong> ($similarity) !!!";
  64. print "\n";
  65. $testName = 'Parent && children';
  66. $result = phpQuery::newDocumentFile('test.html');
  67. $parent = $result->find('ul:first');
  68. $children = $parent->find('li:first');
  69. $e = null;
  70. try {
  71. $children->before('<li>test</li>');
  72. } catch(Exception $e) {
  73. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  74. }
  75. if (! $e) {
  76. print "Test '{$testName}' PASSED :)";
  77. }
  78. print "\n";
  79. $testName = 'HTML insertion';
  80. $doc = phpQuery::newDocument('<div><p/></div>');
  81. $string = "La Thermo-sonde de cuisson vous permet de cuire à la perfection au four comme au bain-marie. Température: entre <b>0°C et 210°C</b>.";
  82. $doc->find('p')->html($string);
  83. if (pq('p')->length == 1)
  84. print "Test '{$testName}' PASSED :)";
  85. else {
  86. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  87. print $doc->htmlOuter('htmlentities');
  88. }
  89. print "\n";
  90. $testName = 'HTML insertion 2';
  91. $doc = phpQuery::newDocument('<div><p/></div>');
  92. $string = "<div>La Thermo-sonde de cuisson vous permet de cuire à la perfection au four comme au bain-marie. Température: entre <b>0°C et 210°C</b>.</div>";
  93. $doc->find('p')->html($string);
  94. if (pq('div')->length == 2) {
  95. print "Test '{$testName}' PASSED :)";
  96. } else {
  97. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  98. print $doc->htmlOuter('htmlentities');
  99. }
  100. print "\n";
  101. $testName = 'HTML insertion 3';
  102. $doc = phpQuery::newDocument('<div><p/></div>');
  103. $string = 'Hors paragraphe.
  104. <img align="right" src="http://www.stlouisstpierre.com/institution/images/plan.jpg">
  105. <p>Éditorial de l\'institution Saint-Pierre.</p>
  106. Hors paragraphe.';
  107. $doc->find('p')->html($string);
  108. if (pq('img')->length == 1) {
  109. print "Test '{$testName}' PASSED :)";
  110. print $doc->htmlOuter();
  111. } else {
  112. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  113. print $doc->htmlOuter('htmlentities');
  114. }
  115. print "\n";
  116. $testName = 'Text insertion';
  117. $doc = phpQuery::newDocument('<div><p/></div>');
  118. $string = "La Thermo-sonde de cuisson vous permet de cuire à la perfection au four comme au bain-marie";
  119. $doc->find('p')->html($string);
  120. if (trim(pq('p:first')->html()) == $string)
  121. print "Test '{$testName}' PASSED :)";
  122. else {
  123. print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  124. print $doc->htmlOuter('htmlentities');
  125. }
  126. print "\n";
  127. ?>