/** * @covers ApiResult */ public function testInstanceDataMethods() { $result = new ApiResult(8388608); $result->addValue(null, 'setValue', '1'); $result->addValue(null, null, 'unnamed 1'); $result->addValue(null, null, 'unnamed 2'); $result->addValue(null, 'deleteValue', '2'); $result->removeValue(null, 'deleteValue'); $result->addValue(array('a', 'b'), 'deleteValue', '3'); $result->removeValue(array('a', 'b', 'deleteValue'), null, '3'); $result->addContentValue(null, 'setContentValue', '3'); $this->assertSame(array('setValue' => '1', 'unnamed 1', 'unnamed 2', 'a' => array('b' => array()), 'setContentValue' => '3', ApiResult::META_TYPE => 'assoc', ApiResult::META_CONTENT => 'setContentValue'), $result->getResultData()); $this->assertSame(20, $result->getSize()); try { $result->addValue(null, 'setValue', '99'); $this->fail('Expected exception not thrown'); } catch (RuntimeException $ex) { $this->assertSame('Attempting to add element setValue=99, existing value is 1', $ex->getMessage(), 'Expected exception'); } try { $result->addContentValue(null, 'setContentValue2', '99'); $this->fail('Expected exception not thrown'); } catch (RuntimeException $ex) { $this->assertSame('Attempting to set content element as setContentValue2 when setContentValue ' . 'is already set as the content element', $ex->getMessage(), 'Expected exception'); } $result->addValue(null, 'setValue', '99', ApiResult::OVERRIDE); $this->assertSame('99', $result->getResultData(array('setValue'))); $result->addContentValue(null, 'setContentValue2', '99', ApiResult::OVERRIDE); $this->assertSame('setContentValue2', $result->getResultData(array(ApiResult::META_CONTENT))); $result->reset(); $this->assertSame(array(ApiResult::META_TYPE => 'assoc'), $result->getResultData()); $this->assertSame(0, $result->getSize()); $result->addValue(null, 'foo', 1); $result->addValue(null, 'bar', 1); $result->addValue(null, 'top', '2', ApiResult::ADD_ON_TOP); $result->addValue(null, null, '2', ApiResult::ADD_ON_TOP); $result->addValue(null, 'bottom', '2'); $result->addValue(null, 'foo', '2', ApiResult::OVERRIDE); $result->addValue(null, 'bar', '2', ApiResult::OVERRIDE | ApiResult::ADD_ON_TOP); $this->assertSame(array(0, 'top', 'foo', 'bar', 'bottom', ApiResult::META_TYPE), array_keys($result->getResultData())); $result->reset(); $result->addValue(null, 'foo', array('bar' => 1)); $result->addValue(array('foo', 'top'), 'x', 2, ApiResult::ADD_ON_TOP); $result->addValue(array('foo', 'bottom'), 'x', 2); $this->assertSame(array('top', 'bar', 'bottom'), array_keys($result->getResultData(array('foo')))); $result->reset(); $result->addValue(null, 'sub', array('foo' => 1)); $result->addValue(null, 'sub', array('bar' => 1)); $this->assertSame(array('sub' => array('foo' => 1, 'bar' => 1), ApiResult::META_TYPE => 'assoc'), $result->getResultData()); try { $result->addValue(null, 'sub', array('foo' => 2, 'baz' => 2)); $this->fail('Expected exception not thrown'); } catch (RuntimeException $ex) { $this->assertSame('Conflicting keys (foo) when attempting to merge element sub', $ex->getMessage(), 'Expected exception'); } $result->reset(); $title = Title::newFromText("MediaWiki:Foobar"); $obj = new stdClass(); $obj->foo = 1; $obj->bar = 2; $result->addValue(null, 'title', $title); $result->addValue(null, 'obj', $obj); $this->assertSame(array('title' => (string) $title, 'obj' => array('foo' => 1, 'bar' => 2, ApiResult::META_TYPE => 'assoc'), ApiResult::META_TYPE => 'assoc'), $result->getResultData()); $fh = tmpfile(); try { $result->addValue(null, 'file', $fh); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add resource(stream) to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $result->addValue(null, null, $fh); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add resource(stream) to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $obj->file = $fh; $result->addValue(null, 'sub', $obj); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add resource(stream) to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $obj->file = $fh; $result->addValue(null, null, $obj); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add resource(stream) to ApiResult', $ex->getMessage(), 'Expected exception'); } fclose($fh); try { $result->addValue(null, 'inf', INF); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add non-finite floats to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $result->addValue(null, null, INF); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add non-finite floats to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $result->addValue(null, 'nan', NAN); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add non-finite floats to ApiResult', $ex->getMessage(), 'Expected exception'); } try { $result->addValue(null, null, NAN); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add non-finite floats to ApiResult', $ex->getMessage(), 'Expected exception'); } $result->addValue(null, null, NAN, ApiResult::NO_VALIDATE); try { $result->addValue(null, null, NAN, ApiResult::NO_SIZE_CHECK); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Cannot add non-finite floats to ApiResult', $ex->getMessage(), 'Expected exception'); } $result->reset(); $result->addParsedLimit('foo', 12); $this->assertSame(array('limits' => array('foo' => 12), ApiResult::META_TYPE => 'assoc'), $result->getResultData()); $result->addParsedLimit('foo', 13); $this->assertSame(array('limits' => array('foo' => 13), ApiResult::META_TYPE => 'assoc'), $result->getResultData()); $this->assertSame(null, $result->getResultData(array('foo', 'bar', 'baz'))); $this->assertSame(13, $result->getResultData(array('limits', 'foo'))); try { $result->getResultData(array('limits', 'foo', 'bar')); $this->fail('Expected exception not thrown'); } catch (InvalidArgumentException $ex) { $this->assertSame('Path limits.foo is not an array', $ex->getMessage(), 'Expected exception'); } $result = new ApiResult(10); $formatter = new ApiErrorFormatter($result, Language::factory('en'), 'none', false); $result->setErrorFormatter($formatter); $this->assertFalse($result->addValue(null, 'foo', '12345678901')); $this->assertTrue($result->addValue(null, 'foo', '12345678901', ApiResult::NO_SIZE_CHECK)); $this->assertSame(0, $result->getSize()); $result->reset(); $this->assertTrue($result->addValue(null, 'foo', '1234567890')); $this->assertFalse($result->addValue(null, 'foo', '1')); $result->removeValue(null, 'foo'); $this->assertTrue($result->addValue(null, 'foo', '1')); $result = new ApiResult(10); $obj = new ApiResultTestSerializableObject('ok'); $obj->foobar = 'foobaz'; $this->assertTrue($result->addValue(null, 'foo', $obj)); $this->assertSame(2, $result->getSize()); $result = new ApiResult(8388608); $result2 = new ApiResult(8388608); $result2->addValue(null, 'foo', 'bar'); $result->addValue(null, 'baz', $result2); $this->assertSame(array('baz' => array('foo' => 'bar', ApiResult::META_TYPE => 'assoc'), ApiResult::META_TYPE => 'assoc'), $result->getResultData()); $result = new ApiResult(8388608); $result->addValue(null, 'foo', "foo�bar"); $result->addValue(null, 'bar', "á"); $result->addValue(null, 'baz', 74); $result->addValue(null, null, "foo�bar"); $result->addValue(null, null, "á"); $this->assertSame(array('foo' => "foo�bar", 'bar' => "á", 'baz' => 74, 0 => "foo�bar", 1 => "á", ApiResult::META_TYPE => 'assoc'), $result->getResultData()); }