summaryrefslogtreecommitdiffstats
path: root/testing/modules/tests/xpcshell/test_mockRegistrar.js
blob: af890e2aa22930ee30e5d3fcdaea5e8d55ce6421 (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
/* Any copyright is dedicated to the Public Domain.
   http://creativecommons.org/publicdomain/zero/1.0/ */

var {classes: Cc, interfaces: Ci, utils: Cu} = Components;

Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://testing-common/MockRegistrar.jsm");

function userInfo(username) {
  this.username = username;
}

userInfo.prototype = {
  fullname: "fullname",
  emailAddress: "emailAddress",
  domain: "domain",
  QueryInterface: XPCOMUtils.generateQI([Ci.nsIUserInfo]),
};

function run_test () {
  run_next_test();
}

add_test(function test_register() {
  let localUserInfo = {
    fullname: "fullname",
    username: "localusername",
    emailAddress: "emailAddress",
    domain: "domain",
    QueryInterface: XPCOMUtils.generateQI([Ci.nsIUserInfo]),
  };

  let userInfoCID = MockRegistrar.register("@mozilla.org/userinfo;1", localUserInfo);
  Assert.equal(Cc["@mozilla.org/userinfo;1"].createInstance(Ci.nsIUserInfo).username, "localusername");
  run_next_test();
});

add_test(function test_register_with_arguments() {
  let userInfoCID = MockRegistrar.register("@mozilla.org/userinfo;1", userInfo, ["username"]);
  Assert.equal(Cc["@mozilla.org/userinfo;1"].createInstance(Ci.nsIUserInfo).username, "username");
  run_next_test();
});

add_test(function test_register_twice() {
  let userInfoCID = MockRegistrar.register("@mozilla.org/userinfo;1", userInfo, ["originalname"]);
  Assert.equal(Cc["@mozilla.org/userinfo;1"].createInstance(Ci.nsIUserInfo).username, "originalname");

  let newUserInfoCID = MockRegistrar.register("@mozilla.org/userinfo;1", userInfo, ["newname"]);
  Assert.equal(Cc["@mozilla.org/userinfo;1"].createInstance(Ci.nsIUserInfo).username, "newname");
  run_next_test();
});