wiki.techinc.nl/tests/phpunit/includes/parser/PageBundleJsonTraitTest.php
Nikki Nikkhoui b5fe60a7e1 Introduce PageBundleJsonTrait for serialization
New trait for PageBundle class to serialize & deserialize
PageBundle object into json before stashing and after unstashing.

Change-Id: I486fab5b3d01bcef2b535af579cd9672403b2102
2022-05-23 17:54:48 +01:00

45 lines
1.3 KiB
PHP

<?php
use MediaWiki\Parser\Parsoid\PageBundleJsonTrait;
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( 'Wikimedia\Parsoid\Core\PageBundle', $json['_type_'] );
$this->assertEquals( '<h1>woohoo</h1>', $json['html'] );
$this->assertNull( $json['mw'] );
}
}