diff options
author | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-01-16 14:04:23 +0100 |
---|---|---|
committer | Daniel Kesselberg <mail@danielkesselberg.de> | 2020-01-23 10:18:14 +0100 |
commit | 7af3bcb4bc6a4408f91b193de4b0eadc11ccf70b (patch) | |
tree | cb7eefc21e130ad3ad7537bfab1ab12d47206596 /tests/lib/AppFramework/OCS/BaseResponseTest.php | |
parent | a6a224e7a14faa8814e9ce783f626666828b96db (diff) | |
download | nextcloud-server-7af3bcb4bc6a4408f91b193de4b0eadc11ccf70b.tar.gz nextcloud-server-7af3bcb4bc6a4408f91b193de4b0eadc11ccf70b.zip |
Add test to trigger "Trying to access array offset on value of type int"
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'tests/lib/AppFramework/OCS/BaseResponseTest.php')
-rw-r--r-- | tests/lib/AppFramework/OCS/BaseResponseTest.php | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/lib/AppFramework/OCS/BaseResponseTest.php b/tests/lib/AppFramework/OCS/BaseResponseTest.php new file mode 100644 index 00000000000..8a86ae13e79 --- /dev/null +++ b/tests/lib/AppFramework/OCS/BaseResponseTest.php @@ -0,0 +1,62 @@ +<?php + +declare(strict_types=1); + +/** + * @copyright 2020 Daniel Kesselberg <mail@danielkesselberg.de> + * + * @author 2020 Daniel Kesselberg <mail@danielkesselberg.de> + * + * @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 <http://www.gnu.org/licenses/>. + * + */ + +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( + "<?xml version=\"1.0\"?>\n<hello>hello</hello><information test=\"some data\"><someElement>withAttribute</someElement></information><element>value without key</element>\n", + $writer->outputMemory(true) + ); + } + +} |