1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Component\DomCrawler\Tests;
- class NativeParserCrawlerTest extends AbstractCrawlerTest
- {
- public function getDoctype(): string
- {
- return '<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">';
- }
- public function testAddHtmlContentWithErrors()
- {
- $internalErrors = libxml_use_internal_errors(true);
- $crawler = $this->createCrawler();
- $crawler->addHtmlContent(<<<'EOF'
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- </head>
- <body>
- <nav><a href="#"><a href="#"></nav>
- </body>
- </html>
- EOF
- , 'UTF-8');
- $errors = libxml_get_errors();
- $this->assertCount(1, $errors);
- $this->assertEquals("Tag nav invalid\n", $errors[0]->message);
- libxml_clear_errors();
- libxml_use_internal_errors($internalErrors);
- }
- public function testAddXmlContentWithErrors()
- {
- $internalErrors = libxml_use_internal_errors(true);
- $crawler = $this->createCrawler();
- $crawler->addXmlContent(<<<'EOF'
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html>
- <head>
- </head>
- <body>
- <nav><a href="#"><a href="#"></nav>
- </body>
- </html>
- EOF
- , 'UTF-8');
- $this->assertGreaterThan(1, libxml_get_errors());
- libxml_clear_errors();
- libxml_use_internal_errors($internalErrors);
- }
- }
|