summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Db/MapperFactoryTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Db/MapperFactoryTest.php')
-rw-r--r--tests/Unit/Db/MapperFactoryTest.php50
1 files changed, 50 insertions, 0 deletions
diff --git a/tests/Unit/Db/MapperFactoryTest.php b/tests/Unit/Db/MapperFactoryTest.php
new file mode 100644
index 000000000..1544ddf2c
--- /dev/null
+++ b/tests/Unit/Db/MapperFactoryTest.php
@@ -0,0 +1,50 @@
+<?php
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Alessandro Cosentino 2012
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+
+namespace OCA\News\Db;
+
+use OCA\News\Utility\Time;
+use PHPUnit_Framework_TestCase;
+
+use OCP\IDb;
+
+use OCA\News\Db\Mysql\ItemMapper as MysqlMapper;
+
+
+class MapperFactoryTest extends PHPUnit_Framework_TestCase {
+
+ private $db;
+ private $settings;
+
+ public function setUp() {
+ $this->db = $this->getMockBuilder(IDb::class)
+ ->disableOriginalConstructor()
+ ->getMock();
+ }
+
+ public function testGetItemMapperSqlite() {
+ $factory = new MapperFactory($this->db, 'sqlite', new Time());
+ $this->assertTrue($factory->build() instanceof ItemMapper);
+ }
+
+ public function testGetItemMapperPostgres() {
+ $factory = new MapperFactory($this->db, 'pgsql', new Time());
+ $this->assertTrue($factory->build() instanceof ItemMapper);
+ }
+
+ public function testGetItemMapperMysql() {
+ $factory = new MapperFactory($this->db, 'mysql', new Time());
+ $this->assertTrue($factory->build() instanceof MysqlMapper);
+ }
+
+}