This commit is contained in:
Bernhard Posselt 2013-05-02 17:47:07 +02:00
Родитель 9f7a822bb4
Коммит f8bdf57881
2 изменённых файлов: 40 добавлений и 1 удалений

2
external/newsapiresult.php поставляемый
Просмотреть файл

@ -29,7 +29,7 @@ use \OCA\AppFramework\External\APIResult;
class NewsAPIResult extends APIResult { class NewsAPIResult extends APIResult {
const EXISTS_ERROR = 995; const EXISTS_ERROR = 409;
public function __construct($data, $statusCode=NewsAPIResult::OK) { public function __construct($data, $statusCode=NewsAPIResult::OK) {
parent::__construct($data, $statusCode); parent::__construct($data, $statusCode);

39
tests/unit/external/NewsAPIResultTest.php поставляемый Normal file
Просмотреть файл

@ -0,0 +1,39 @@
<?php
/**
* ownCloud - News
*
* @author Alessandro Cosentino
* @author Bernhard Posselt
* @copyright 2012 Alessandro Cosentino cosenal@gmail.com
* @copyright 2012 Bernhard Posselt nukeawhale@gmail.com
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation; either
* version 3 of the License, or any later version.
*
* This library 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 library. If not, see <http://www.gnu.org/licenses/>.
*
*/
namespace OCA\News\External;
require_once(__DIR__ . "/../../classloader.php");
class NewsAPIResultTest extends \PHPUnit_Framework_TestCase {
public function testExistsError(){
$result = new NewsAPIResult(null, NewsAPIResult::EXISTS_ERROR);
$this->assertEquals(409, $result->getStatusCode());
}
}