summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2013-03-21 17:34:43 +0100
committerAlessandro Cosentino <cosenal@gmail.com>2013-03-21 17:34:43 +0100
commitfadceb308dbc96112ccdabb7f6162072603a7e26 (patch)
tree58f392d9e8cb653ebbf9d24cce7a3a00709b213f /tests
parentb78604d5e33e9d1e348c08177be22cde43fde585 (diff)
intermediate mapper layer with test
Diffstat (limited to 'tests')
-rw-r--r--tests/db/NewsMapperTest.php86
1 files changed, 86 insertions, 0 deletions
diff --git a/tests/db/NewsMapperTest.php b/tests/db/NewsMapperTest.php
new file mode 100644
index 000000000..77459ff27
--- /dev/null
+++ b/tests/db/NewsMapperTest.php
@@ -0,0 +1,86 @@
+<?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\Db;
+use \OCA\AppFramework\Core\API;
+
+require_once(__DIR__ . "/../classloader.php");
+
+class MapperNews extends NewsMapper {
+ public function __construct(API $api, $tableName){
+ parent::__construct($api, $tableName);
+ }
+
+ public function publicFindRow($sql, $id, $userId){
+ return $this->findRow($sql, $id, $userId);
+ }
+}
+
+class NewsMapperTest extends \OCA\AppFramework\Utility\MapperTestUtility {
+
+ private $newsMapper;
+
+ public function setUp() {
+ $this->beforeEach();
+ $this->newsMapper = new MapperNews($this->api, 'news_table');
+
+ $this->userId = 'john';
+ $this->id = 2;
+
+ $this->rows = array(
+ array('testRow')
+ );
+ }
+
+ public function testFindRow() {
+ $sql = 'test';
+
+ $this->setMapperResult($sql, array($this->id, $this->userId), $this->rows);
+
+ $result = $this->newsMapper->publicFindRow($sql, $this->id, $this->userId);
+ $this->assertEquals($this->rows[0], $result);
+
+ }
+
+ public function testFindRowNoFound() {
+ $sql = 'test';
+
+ $this->setMapperResult($sql, array($this->id, $this->userId), array());
+
+ $this->setExpectedException('\OCA\AppFramework\Db\DoesNotExistException');
+ $this->newsMapper->publicFindRow($sql, $this->id, $this->userId);
+
+ }
+
+ public function testFindRowMultipleRows() {
+ $sql = 'test';
+ array_push($this->rows, array('testRow2'));
+ $this->setMapperResult($sql, array($this->id, $this->userId), $this->rows);
+
+ $this->setExpectedException('\OCA\AppFramework\Db\MultipleObjectsReturnedException');
+ $this->newsMapper->publicFindRow($sql, $this->id, $this->userId);
+
+ }
+} \ No newline at end of file