15 $pageName =
'Help:' . __METHOD__;
16 $title = Title::newFromText( $pageName );
17 $page = WikiPage::factory( $title );
20 ContentHandler::makeContent(
'Some text', $page->getTitle() ),
26 'prop' =>
'revisions',
27 'titles' => $pageName,
28 'rvprop' =>
'content',
30 $this->assertArrayHasKey(
'query', $apiResult[0] );
31 $this->assertArrayHasKey(
'pages', $apiResult[0][
'query'] );
32 foreach ( $apiResult[0][
'query'][
'pages'] as $page ) {
33 $this->assertArrayHasKey(
'revisions', $page );
34 foreach ( $page[
'revisions'] as $revision ) {
35 $this->assertArrayHasKey(
'contentformat', $revision,
36 'contentformat should be included when asking content so client knows how to interpret it'
38 $this->assertArrayHasKey(
'contentmodel', $revision,
39 'contentmodel should be included when asking content so client knows how to interpret it'