summaryrefslogtreecommitdiffstats
path: root/js-old/tests/unit/controller/AppControllerSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/tests/unit/controller/AppControllerSpec.js')
-rw-r--r--js-old/tests/unit/controller/AppControllerSpec.js56
1 files changed, 56 insertions, 0 deletions
diff --git a/js-old/tests/unit/controller/AppControllerSpec.js b/js-old/tests/unit/controller/AppControllerSpec.js
new file mode 100644
index 000000000..4519af495
--- /dev/null
+++ b/js-old/tests/unit/controller/AppControllerSpec.js
@@ -0,0 +1,56 @@
+/**
+ * Nextcloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2014
+ */
+describe('AppController', function () {
+ 'use strict';
+
+ var controller,
+ location;
+
+ beforeEach(module('News', function ($provide) {
+ $provide.value('BASE_URL', 'base');
+ }));
+
+ beforeEach(inject(function ($controller) {
+ location = {
+ path: jasmine.createSpy('path')
+ };
+
+ controller = $controller('AppController', {
+ $location: location
+ });
+ }));
+
+
+ it('should expose Loading', inject(function (Loading) {
+ expect(controller.loading).toBe(Loading);
+ }));
+
+
+ it('should expose set firstrun if no feeds and folders', function () {
+ expect(controller.isFirstRun()).toBe(true);
+ });
+
+
+ it('should expose set firstrun if feeds', inject(function (FeedResource) {
+ FeedResource.add({url: 'test'});
+
+ expect(controller.isFirstRun()).toBe(false);
+ }));
+
+
+ it('should expose set firstrun if folders', inject(
+ function (FolderResource) {
+ FolderResource.add({name: 'test'});
+
+ expect(controller.isFirstRun()).toBe(false);
+ expect(location.path).not.toHaveBeenCalled();
+ }));
+
+});