3 * Created on Feb 10, 2013
5 * Copyright © 2013 Yuri Astrakhan "<Firstname><Lastname>@gmail.com"
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20 * http://www.gnu.org/copyleft/gpl.html
25 /** This class has some common functionality for testing query module
27 abstract class ApiQueryTestBase
extends ApiTestCase
{
29 const PARAM_ASSERT
= <<<STR
30 Each parameter must be an array of two elements,
31 first - an array of params to the API call,
32 and the second array - expected results as returned by the API
36 * Merges all requests parameter + expected values into one
37 * @param array $v,... List of arrays, each of which contains exactly two
40 protected function merge( /*...*/ ) {
43 foreach ( func_get_args() as $v ) {
44 list( $req, $exp ) = $this->validateRequestExpectedPair( $v );
45 $request = array_merge_recursive( $request, $req );
46 $this->mergeExpected( $expected, $exp );
49 return [ $request, $expected ];
53 * Check that the parameter is a valid two element array,
54 * with the first element being API request and the second - expected result
58 private function validateRequestExpectedPair( $v ) {
59 $this->assertInternalType( 'array', $v, self
::PARAM_ASSERT
);
60 $this->assertEquals( 2, count( $v ), self
::PARAM_ASSERT
);
61 $this->assertArrayHasKey( 0, $v, self
::PARAM_ASSERT
);
62 $this->assertArrayHasKey( 1, $v, self
::PARAM_ASSERT
);
63 $this->assertInternalType( 'array', $v[0], self
::PARAM_ASSERT
);
64 $this->assertInternalType( 'array', $v[1], self
::PARAM_ASSERT
);
70 * Recursively merges the expected values in the $item into the $all
74 private function mergeExpected( &$all, $item ) {
75 foreach ( $item as $k => $v ) {
76 if ( array_key_exists( $k, $all ) ) {
77 if ( is_array( $all[$k] ) ) {
78 $this->mergeExpected( $all[$k], $v );
80 $this->assertEquals( $all[$k], $v );
89 * Checks that the request's result matches the expected results.
90 * Assumes no rawcontinue and a complete batch.
91 * @param array $values Array is a two element array( request, expected_results )
92 * @param array $session
93 * @param bool $appendModule
96 protected function check( $values, array $session = null,
97 $appendModule = false, User
$user = null
99 list( $req, $exp ) = $this->validateRequestExpectedPair( $values );
100 if ( !array_key_exists( 'action', $req ) ) {
101 $req['action'] = 'query';
103 foreach ( $req as &$val ) {
104 if ( is_array( $val ) ) {
105 $val = implode( '|', array_unique( $val ) );
108 $result = $this->doApiRequest( $req, $session, $appendModule, $user );
109 $this->assertResult( [ 'batchcomplete' => true, 'query' => $exp ], $result[0], $req );
112 protected function assertResult( $exp, $result, $message = '' ) {
114 $exp = self
::sanitizeResultArray( $exp );
115 $result = self
::sanitizeResultArray( $result );
116 $this->assertEquals( $exp, $result );
117 } catch ( PHPUnit_Framework_ExpectationFailedException
$e ) {
118 if ( is_array( $message ) ) {
119 $message = http_build_query( $message );
122 // FIXME: once we migrate to phpunit 4.1+, hardcode ComparisonFailure exception use
123 $compEx = 'SebastianBergmann\Comparator\ComparisonFailure';
124 if ( !class_exists( $compEx ) ) {
125 $compEx = 'PHPUnit_Framework_ComparisonFailure';
128 throw new PHPUnit_Framework_ExpectationFailedException(
129 $e->getMessage() . "\nRequest: $message",
133 print_r( $exp, true ),
134 print_r( $result, true ),
136 $e->getComparisonFailure()->getMessage() . "\nRequest: $message"
143 * Recursively ksorts a result array and removes any 'pageid' keys.
144 * @param array $result
147 private static function sanitizeResultArray( $result ) {
148 unset( $result['pageid'] );
149 foreach ( $result as $key => $value ) {
150 if ( is_array( $value ) ) {
151 $result[$key] = self
::sanitizeResultArray( $value );
155 // Sort the result by keys, then take advantage of how array_merge will
156 // renumber numeric keys while leaving others alone.
158 return array_merge( $result );