summaryrefslogtreecommitdiffstats
path: root/tests/Unit/Utility/UpdaterTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Unit/Utility/UpdaterTest.php')
-rw-r--r--tests/Unit/Utility/UpdaterTest.php62
1 files changed, 62 insertions, 0 deletions
diff --git a/tests/Unit/Utility/UpdaterTest.php b/tests/Unit/Utility/UpdaterTest.php
new file mode 100644
index 000000000..edca29f67
--- /dev/null
+++ b/tests/Unit/Utility/UpdaterTest.php
@@ -0,0 +1,62 @@
+<?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\Utility;
+
+
+class UpdaterTest extends \PHPUnit_Framework_TestCase {
+
+ private $folderService;
+ private $feedService;
+ private $itemService;
+ private $updater;
+
+ protected function setUp() {
+ $this->folderService = $this->getMockBuilder(
+ '\OCA\News\Service\FolderService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->feedService = $this->getMockBuilder(
+ '\OCA\News\Service\FeedService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->itemService = $this->getMockBuilder(
+ '\OCA\News\Service\ItemService')
+ ->disableOriginalConstructor()
+ ->getMock();
+ $this->updater = new Updater($this->folderService,
+ $this->feedService,
+ $this->itemService);
+ }
+
+ public function testBeforeUpdate() {
+ $this->folderService->expects($this->once())
+ ->method('purgeDeleted');
+ $this->feedService->expects($this->once())
+ ->method('purgeDeleted');
+ $this->updater->beforeUpdate();
+ }
+
+
+ public function testAfterUpdate() {
+ $this->itemService->expects($this->once())
+ ->method('autoPurgeOld');
+ $this->updater->afterUpdate();
+ }
+
+ public function testUpdate() {
+ $this->feedService->expects($this->once())
+ ->method('updateAll');
+ $this->updater->update();
+ }
+} \ No newline at end of file