Файловый менеджер - Редактировать - /var/www/html/mediawiki-1.43.1/vendor/wikimedia/parsoid/tests/phpunit/Parsoid/Utils/DOMDataUtilsTest.php
Ðазад
<?php namespace Test\Parsoid\Utils; use Wikimedia\Parsoid\Core\PageBundle; use Wikimedia\Parsoid\Utils\ContentUtils; use Wikimedia\Parsoid\Utils\DOMCompat; use Wikimedia\Parsoid\Utils\DOMDataUtils; use Wikimedia\Parsoid\Utils\DOMUtils; /** * @coversDefaultClass \Wikimedia\Parsoid\Utils\DOMDataUtils */ class DOMDataUtilsTest extends \PHPUnit\Framework\TestCase { /** * @covers ::injectPageBundle */ public function testInjectPageBundle() { // Note that injectPageBundle does not need a "prepared" document. $doc = DOMUtils::parseHTML( "Hello, world" ); DOMDataUtils::injectPageBundle( $doc, new PageBundle( '', [ "counter" => -1, "ids" => [] ], [ "ids" => [] ] ) ); // Note that we use the 'native' getElementById, not // DOMCompat::getElementById, in order to test T232390 $el = $doc->getElementById( 'mw-pagebundle' ); $this->assertNotEquals( null, $el ); $this->assertEquals( 'script', DOMCompat::nodeName( $el ) ); } /** * @covers ::storeInPageBundle */ public function testStoreInPageBundle() { $doc = ContentUtils::createDocument( "<p>Hello, world</p>" ); $p = DOMCompat::querySelector( $doc, 'p' ); DOMDataUtils::storeInPageBundle( $p, (object)[ 'parsoid' => [ 'go' => 'team' ], 'mw' => [ 'test' => 'me' ], ], DOMDataUtils::usedIdIndex( $p ) ); $id = DOMCompat::getAttribute( $p, 'id' ) ?? ''; $this->assertNotEquals( '', $id ); // Use the 'native' getElementById, not DOMCompat::getElementById, // in order to test T232390. $el = $doc->getElementById( $id ); $this->assertEquals( $p, $el ); } /** * @covers ::extractPageBundle */ public function testExtractPageBundle() { $html = <<<'EOF' <html> <head> <script id="mw-pagebundle" type="application/x-mw-pagebundle"> {"parsoid": {"counter":1,"ids":{"mwAA":{"dsr":[0,13,0,0]}, "mwAQ":{"dsr":[0,12,0,0]}},"offsetType":"byte"},"mw":{"ids":[]}} </script> </head> <body><p id="mwAQ">Hello, world</p> EOF; $doc = DOMUtils::parseHTML( $html ); $pb = DOMDataUtils::extractPageBundle( $doc ); self::assertIsArray( $pb->parsoid['ids'] ); } }
| ver. 1.1 | |
.
| PHP 8.4.18 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка