test_charset.php 2.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  2. <?php
  3. require_once('../phpQuery/phpQuery.php');
  4. // phpQuery::$debug = true;
  5. $testName = 'Text node append';
  6. $result = phpQuery::newDocumentFile('test.html')
  7. ->find('li:first')
  8. ->find('p:first')
  9. ->html('żźć');
  10. if (trim($result->html()) == 'żźć')
  11. print "Test '{$testName}' passed :)<br />\n";
  12. else
  13. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />\n";
  14. print "\n";
  15. $testName = 'Text node HTML entite append';
  16. $result = phpQuery::newDocumentFile('test.html')
  17. ->find('li:first')
  18. ->find('p:first')
  19. ->_empty()
  20. ->append('&eacute;');
  21. if (trim($result->html()) == 'é')
  22. print "Test '{$testName}' passed :)<br />\n";
  23. else {
  24. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />\n";
  25. print $result->html();
  26. }
  27. print "\n";
  28. $testName = 'DOMElement node HTML entite append';
  29. $result = phpQuery::newDocumentFile('test.html')
  30. ->find('li:first')
  31. ->find('p:first')
  32. ->empty()
  33. ->append('<span>&eacute;</span>');
  34. if (trim($result->html()) == '<span>é</span>')
  35. print "Test '{$testName}' passed :)<br />\n";
  36. else {
  37. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />\n";
  38. print $result->html();
  39. }
  40. print "\n";
  41. $testName = 'Append and move';
  42. $result = phpQuery::newDocumentFile('test.html');
  43. $li = $result->find('li:first');
  44. $result->find('div')->_empty();
  45. $li->html('test1-&eacute;-test1')
  46. ->append('test2-é-test2')
  47. ->appendTo(
  48. $result->find('div:first')
  49. );
  50. $result = $result->find('div:first li:first');
  51. $expected = 'test1-é-test1test2-é-test2';
  52. if (trim(str_replace("\n", '', $result->html())) == $expected)
  53. print "Test '{$testName}' passed :)<br />\n";
  54. else {
  55. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />\n";
  56. print "'".trim($result->html())."'";
  57. }
  58. print "\n";
  59. $testName = 'Attr charset';
  60. $result = phpQuery::newDocumentFile('test.html')
  61. ->find('li:first')
  62. ->attr('test', 'foo &eacute; żźć bar');
  63. if (trim($result->attr('test')) == 'foo &eacute; żźć bar')
  64. print "Test '{$testName}' passed :)<br />\n";
  65. else {
  66. print "Test '{$testName}' <strong>FAILED</strong> !!!<br />\n";
  67. print $result->attr('test');
  68. }
  69. print "\n";
  70. //$testName = 'Loading document without meta charset';
  71. //$result = phpQuery::newDocumentFile('test.html')
  72. // ->_empty();
  73. ////var_dump((string)$result->htmlOuter());
  74. //$result = phpQuery::newDocument($result->htmlOuter());
  75. //$validResult = <<<EOF
  76. //<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  77. //<html xmlns="http://www.w3.org/1999/xhtml" xmlns="http://www.w3.org/1999/xhtml"><head><meta http-equiv="Content-Type" content="text/html;charset=UTF-8" /></head></html>
  78. //EOF;
  79. //$similarity = 0;
  80. //similar_text($result->htmlOuter(), $validResult, $similarity);
  81. //if ( $similarity > 90 )
  82. // print "Test '{$testName}' passed :)<br />\n";
  83. //else
  84. // print "Test '{$testName}' <strong>FAILED</strong> !!! ";
  85. //print "<pre>";
  86. //print $result;
  87. //print "</pre>\n";