A modern, accurate HTML parser and serializer for PHP
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.0 KiB

<?php
/** @license MIT
* Copyright 2017 , Dustin Wilson, J. King et al.
* See LICENSE and AUTHORS files for details */
declare(strict_types=1);
namespace MensBeam\HTML\TestCase;
use MensBeam\HTML\Parser;
use MensBeam\HTML\Parser\Output;
/**
* @covers \MensBeam\HTML\Parser
*/
class TestParser extends \PHPUnit\Framework\TestCase {
public function testParseADocument(): void {
$in = "hello world!";
$out = @Parser::parse($in, "tex/html; charset=utf8");
$this->assertInstanceOf(Output::class, $out);
$this->assertInstanceOf(\DOMDocument::class, $out->document);
$this->assertSame("UTF-8", $out->encoding);
$this->assertSame(Parser::QUIRKS_MODE, $out->quirksMode);
}
public function testParseAFragment(): void {
$doc = new \DOMDocument();
$context = $doc->createElement("div");
$in = "hello world!";
$out = @Parser::parseFragment($context, 0, $in, "tex/html; charset=utf8");
$this->assertInstanceOf(\DOMDocumentFragment::class, $out);
}
}