From bab978f5d5d7a38f15cb7151b0b81c54b8c8cc21 Mon Sep 17 00:00:00 2001 From: X! Date: Tue, 4 Jan 2011 03:22:40 +0000 Subject: [PATCH] Add API query test --- tests/phpunit/includes/api/ApiQueryTest.php | 73 +++++++++++++++++++++ 1 file changed, 73 insertions(+) create mode 100644 tests/phpunit/includes/api/ApiQueryTest.php diff --git a/tests/phpunit/includes/api/ApiQueryTest.php b/tests/phpunit/includes/api/ApiQueryTest.php new file mode 100644 index 0000000000..dbb64bdcbf --- /dev/null +++ b/tests/phpunit/includes/api/ApiQueryTest.php @@ -0,0 +1,73 @@ +doLogin(); + } + + function testTitlesGetNormalized() { + + global $wgSitename; + + $data = $this->doApiRequest( array( + 'action' => 'query', + 'titles' => 'Project:articleA|article_B' ) ); + + + $this->assertArrayHasKey( 'query', $data[0] ); + $this->assertArrayHasKey( 'normalized', $data[0]['query'] ); + + $this->assertEquals( + array( + 'from' => 'Project:articleA', + 'to' => $wgSitename . ':ArticleA' + ), + $data[0]['query']['normalized'][0] + ); + + $this->assertEquals( + array( + 'from' => 'article_B', + 'to' => 'Article B' + ), + $data[0]['query']['normalized'][1] + ); + + } + + function testTitlesAreRejectedIfInvalid() { + + global $wgSitename; + + + $title = false; + while( !$title || Title::newFromText( $title )->exists() ) { + $title = md5( mt_rand( 0, 10000 ) + rand( 0, 999000 ) ); + } + + $data = $this->doApiRequest( array( + 'action' => 'query', + 'titles' => $title . '|Talk:' ) ); + + + $this->assertArrayHasKey( 'query', $data[0] ); + $this->assertArrayHasKey( 'pages', $data[0]['query'] ); + $this->assertEquals( 2, count( $data[0]['query']['pages'] ) ); + + $this->assertArrayHasKey( -2, $data[0]['query']['pages'] ); + $this->assertArrayHasKey( -1, $data[0]['query']['pages'] ); + + $this->assertArrayHasKey( 'missing', $data[0]['query']['pages'][-2] ); + $this->assertArrayHasKey( 'invalid', $data[0]['query']['pages'][-1] ); + + + } + +} -- 2.20.1