7 * @covers ApiQueryRevisions
9 class ApiQueryRevisionsTest
extends ApiTestCase
{
14 public function testContentComesWithContentModelAndFormat() {
15 $pageName = 'Help:' . __METHOD__
;
16 $title = Title
::newFromText( $pageName );
17 $page = WikiPage
::factory( $title );
18 $page->doEdit( 'Some text', 'inserting content' );
20 $apiResult = $this->doApiRequest( array(
22 'prop' => 'revisions',
23 'titles' => $pageName,
24 'rvprop' => 'content',
26 $this->assertArrayHasKey( 'query', $apiResult[0] );
27 $this->assertArrayHasKey( 'pages', $apiResult[0]['query'] );
28 foreach ( $apiResult[0]['query']['pages'] as $page ) {
29 $this->assertArrayHasKey( 'revisions', $page );
30 foreach ( $page['revisions'] as $revision ) {
31 $this->assertArrayHasKey( 'contentformat', $revision,
32 'contentformat should be included when asking content so client knows how to interpret it'
34 $this->assertArrayHasKey( 'contentmodel', $revision,
35 'contentmodel should be included when asking content so client knows how to interpret it'