wiki.techinc.nl/tests/phpunit/includes/parser/PageBundleJsonTraitTest.php
Reedy 8771b338e4 tests: Namespace more parser classes
Change-Id: I35d6e3181ed885b8731ff1c4b5703459fb4223e4
2024-02-17 00:38:31 +00:00

48 lines
1.3 KiB
PHP

<?php
namespace MediaWiki\Tests\Parser;
use MediaWiki\Parser\Parsoid\PageBundleJsonTrait;
use MediaWikiIntegrationTestCase;
use Wikimedia\Parsoid\Core\PageBundle;
/**
* @covers \MediaWiki\Parser\Parsoid\PageBundleJsonTrait
*/
class PageBundleJsonTraitTest extends MediaWikiIntegrationTestCase {
private $bundleData = [
'html' => '<h1>woohoo</h1>',
'parsoid' => [ 'metadata' => 'foo' ],
'mw' => null,
'version' => '1.0',
'headers' => [ 'bar' => 'baz' ],
'contentmodel' => 'default'
];
public function testNewPageBundleFromJson() {
$trait = new class {
use PageBundleJsonTrait {
newPageBundleFromJson as public;
}
};
$bundle = $trait->newPageBundleFromJson( $this->bundleData );
$this->assertInstanceOf( PageBundle::class, $bundle );
$this->assertEquals( '<h1>woohoo</h1>', $bundle->html );
$this->assertEquals( 'default', $bundle->contentmodel );
$this->assertNull( $bundle->mw );
}
public function testJsonSerializePageBundle() {
$trait = new class {
use PageBundleJsonTrait {
jsonSerializePageBundle as public;
}
};
$bundle = new PageBundle( ...array_values( $this->bundleData ) );
$json = $trait->jsonSerializePageBundle( $bundle );
$this->assertEquals( PageBundle::class, $json['_type_'] );
$this->assertEquals( '<h1>woohoo</h1>', $json['html'] );
$this->assertNull( $json['mw'] );
}
}