summaryrefslogtreecommitdiffstats
path: root/js-old/tests/unit/service/PublisherSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/tests/unit/service/PublisherSpec.js')
-rw-r--r--js-old/tests/unit/service/PublisherSpec.js54
1 files changed, 54 insertions, 0 deletions
diff --git a/js-old/tests/unit/service/PublisherSpec.js b/js-old/tests/unit/service/PublisherSpec.js
new file mode 100644
index 000000000..419b00cb3
--- /dev/null
+++ b/js-old/tests/unit/service/PublisherSpec.js
@@ -0,0 +1,54 @@
+/**
+ * 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('Publisher', function () {
+ 'use strict';
+
+ beforeEach(module('News'));
+
+ it('should should publish on all possible channels',
+ inject(function (Publisher) {
+ var obj = {
+ receive: jasmine.createSpy('receive')
+ };
+
+ Publisher.subscribe(obj).toChannels(['test']);
+
+ Publisher.publishAll({
+ test: 'tom'
+ });
+
+ expect(obj.receive).toHaveBeenCalledWith('tom', 'test');
+ }));
+
+
+ it('should should publish on all possible channels',
+ inject(function (Publisher) {
+ var obj = {
+ receive: jasmine.createSpy('receive')
+ };
+
+ Publisher.subscribe(obj).toChannels(['test', 'tiny']);
+
+ Publisher.publishAll({
+ tiny: 'tom'
+ });
+
+ expect(obj.receive).toHaveBeenCalledWith('tom', 'tiny');
+ }));
+
+
+ it('should not broadcast not subscribed channels',
+ inject(function (Publisher) {
+ Publisher.publishAll({
+ test: 'tom'
+ });
+ }));
+
+}); \ No newline at end of file