summaryrefslogtreecommitdiffstats
path: root/js/xpconnect/tests/unit/test_classesByID_instanceof.js
blob: b0acf8016b3662f835ec37ba4c6e3a4a1ef58b04 (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
function testActual(SimpleURIClassByID)
{
  var simpleURI =
    Components.classes["@mozilla.org/network/simple-uri;1"].createInstance();

  do_check_eq(simpleURI instanceof SimpleURIClassByID, true);
}

function testInherited(SimpleURIClassByID)
{
  var simpleURI =
    Components.classes["@mozilla.org/network/simple-uri;1"].createInstance();

  var inherited = Object.create(simpleURI);

  do_check_eq(inherited instanceof SimpleURIClassByID, true);
}

function testInheritedCrossGlobal(SimpleURIClassByID)
{
  var simpleURI =
    Components.classes["@mozilla.org/network/simple-uri;1"].createInstance();

  var sb = new Components.utils.Sandbox(this, { wantComponents: true });
  var inheritedCross = sb.Object.create(simpleURI);

  do_check_eq(inheritedCross instanceof SimpleURIClassByID, true);
}

function testCrossGlobalArbitraryGetPrototype(SimpleURIClassByID)
{
  var simpleURI =
    Components.classes["@mozilla.org/network/simple-uri;1"].createInstance();

  var sb = new Components.utils.Sandbox(this, { wantComponents: true });
  var firstLevel = Object.create(simpleURI);

  var obj = { shouldThrow: false };
  var secondLevel =
    new sb.Proxy(Object.create(firstLevel),
                 {
                   getPrototypeOf: new sb.Function("obj", `return function(t) {
                     if (obj.shouldThrow)
                       throw 42;
                     return Reflect.getPrototypeOf(t);
                   };`)(obj)
                 });
  var thirdLevel = Object.create(secondLevel);

  obj.shouldThrow = true;

  var threw = false;
  var err;
  try
  {
    void (thirdLevel instanceof SimpleURIClassByID);
  }
  catch (e)
  {
    threw = true;
    err = e;
  }

  do_check_eq(threw, true);
  do_check_eq(err, 42);

  obj.shouldThrow = false;

  do_check_eq(thirdLevel instanceof SimpleURIClassByID, true);
}

function run_test() {
  var SimpleURIClassByID = Components.classesByID["{e0da1d70-2f7b-11d3-8cd0-0060b0fc14a3}"];

  testActual(SimpleURIClassByID);
  testInherited(SimpleURIClassByID);
  testInheritedCrossGlobal(SimpleURIClassByID);
  testCrossGlobalArbitraryGetPrototype(SimpleURIClassByID);
}