From 7af3bcb4bc6a4408f91b193de4b0eadc11ccf70b Mon Sep 17 00:00:00 2001 From: Daniel Kesselberg Date: Thu, 16 Jan 2020 14:04:23 +0100 Subject: [PATCH] Add test to trigger "Trying to access array offset on value of type int" Signed-off-by: Daniel Kesselberg --- .../lib/AppFramework/OCS/BaseResponseTest.php | 62 +++++++++++++++++++ 1 file changed, 62 insertions(+) create mode 100644 tests/lib/AppFramework/OCS/BaseResponseTest.php diff --git a/tests/lib/AppFramework/OCS/BaseResponseTest.php b/tests/lib/AppFramework/OCS/BaseResponseTest.php new file mode 100644 index 0000000000..8a86ae13e7 --- /dev/null +++ b/tests/lib/AppFramework/OCS/BaseResponseTest.php @@ -0,0 +1,62 @@ + + * + * @author 2020 Daniel Kesselberg + * + * @license GNU AGPL version 3 or any later version + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License as + * published by the Free Software Foundation, either version 3 of the + * License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Affero General Public License for more details. + * + * You should have received a copy of the GNU Affero General Public License + * along with this program. If not, see . + * + */ + +namespace Test\AppFramework\Middleware; + + +use OC\AppFramework\OCS\BaseResponse; + +class BaseResponseTest extends \Test\TestCase { + + public function testToXml(): void { + + /** @var BaseResponse $response */ + $response = $this->createMock(BaseResponse::class); + + $writer = new \XMLWriter(); + $writer->openMemory(); + $writer->setIndent(false); + $writer->startDocument(); + + $data = [ + 'hello' => 'hello', + 'information' => [ + '@test' => 'some data', + 'someElement' => 'withAttribute', + ], + 'value without key', + ]; + + $this->invokePrivate($response, 'toXml', [$data, $writer]); + $writer->endDocument(); + + $this->assertEquals( + "\nhellowithAttributevalue without key\n", + $writer->outputMemory(true) + ); + } + +}