diff options
author | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2015-08-05 17:28:08 +0200 |
---|---|---|
committer | Bernhard Posselt <Raydiation@users.noreply.github.com> | 2015-08-05 17:28:08 +0200 |
commit | 7cb0934fa27a512b2e409361fe283d9c15560327 (patch) | |
tree | 1e2f9fcb7433e53e8c072aab6f3d0c81713c01f7 /tests/ocs | |
parent | 314fc11e1beb37e683cfa874e74ae3103632d803 (diff) | |
parent | 6c46430cdb6edf411142d0a73fb888391ea86fd7 (diff) | |
download | nextcloud-server-7cb0934fa27a512b2e409361fe283d9c15560327.tar.gz nextcloud-server-7cb0934fa27a512b2e409361fe283d9c15560327.zip |
Merge pull request #18035 from owncloud/ocs-2.0
Adding ocs/v2.php with status code mapper
Diffstat (limited to 'tests/ocs')
-rw-r--r-- | tests/ocs/response.php | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/tests/ocs/response.php b/tests/ocs/response.php new file mode 100644 index 00000000000..0d5883fa4cc --- /dev/null +++ b/tests/ocs/response.php @@ -0,0 +1,42 @@ +<?php +use OCP\AppFramework\Http; + +/** + * @author Thomas Müller <thomas.mueller@tmit.eu> + * + * @copyright Copyright (c) 2015, ownCloud, Inc. + * @license AGPL-3.0 + * + * This code is free software: you can redistribute it and/or modify + * it under the terms of the GNU Affero General Public License, version 3, + * as published by the Free Software Foundation. + * + * 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, version 3, + * along with this program. If not, see <http://www.gnu.org/licenses/> + * + */ + +class OcsResponseTest extends \Test\TestCase { + + /** + * @dataProvider providesStatusCodes + */ + public function testStatusCodeMapper($expected, $sc) { + $result = OC_API::mapStatusCodes($sc); + $this->assertEquals($expected, $result); + } + + public function providesStatusCodes() { + return [ + [Http::STATUS_OK, 100], + [Http::STATUS_BAD_REQUEST, 104], + [Http::STATUS_OK, 1000], + [201, 201], + ]; + } +} |