summaryrefslogtreecommitdiffstats
path: root/addon-sdk/source/test/test-notifications.js
blob: 9a4d6cea068f9c7bc8e75e9a789d4d92d6d76ca5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
 "use strict";

const { Loader } = require('sdk/test/loader');

exports["test onClick"] = function(assert) {
  let [loader, mockAlertServ] = makeLoader(module);
  let notifs = loader.require("sdk/notifications");
  let data = "test data";
  let opts = {
    onClick: function (clickedData) {
      assert.equal(this, notifs, "|this| should be notifications module");
      assert.equal(clickedData, data,
                       "data passed to onClick should be correct");
    },
    data: data,
    title: "test title",
    text: "test text",
    iconURL: "test icon URL"
  };
  notifs.notify(opts);
  mockAlertServ.click();
  loader.unload();
};

exports['test numbers and URLs in options'] = function(assert) {
  let [loader] = makeLoader(module);
  let notifs = loader.require('sdk/notifications');
  let opts = {
    title: 123,
    text: 45678,
    // must use in-loader `sdk/url` module for the validation type check to work
    iconURL: loader.require('sdk/url').URL('data:image/png,blah')
  };
  try {
    notifs.notify(opts);
    assert.pass('using numbers and URLs in options works');
  } catch (e) {
    assert.fail('using numbers and URLs in options must not throw');
  }
  loader.unload();
}

exports['test new tag, dir and lang options'] = function(assert) {
  let [loader] = makeLoader(module);
  let notifs = loader.require('sdk/notifications');
  let opts = {
    title: 'best',
    tag: 'tagging',
    lang: 'en'
  };

  try {
    opts.dir = 'ttb';
    notifs.notify(opts);
    assert.fail('`dir` option must not accept TopToBottom direction.');
  } catch (e) {
    assert.equal(e.message,
      '`dir` option must be one of: "auto", "ltr" or "rtl".');
  }

  try {
    opts.dir = 'rtl';
    notifs.notify(opts);
    assert.pass('`dir` option accepts "rtl" direction.');
  } catch (e) {
    assert.fail('`dir` option must accept "rtl" direction.');
  }

  loader.unload();
}

// Returns [loader, mockAlertService].
function makeLoader(module) {
  let loader = Loader(module);
  let mockAlertServ = {
    showAlertNotification: function (imageUrl, title, text, textClickable,
                                     cookie, alertListener, name) {
      this._cookie = cookie;
      this._alertListener = alertListener;
    },
    click: function () {
      this._alertListener.observe(null, "alertclickcallback", this._cookie);
    }
  };
  loader.require("sdk/notifications");
  let scope = loader.sandbox("sdk/notifications");
  scope.notify = mockAlertServ.showAlertNotification.bind(mockAlertServ);
  return [loader, mockAlertServ];
}

require('sdk/test').run(exports);