summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/test_object_actor_native_getters.html
blob: e22eb8cd5755043a9a99d7b9b4b8457abf0f50d0 (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
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test for the native getters in object actors</title>
  <script type="text/javascript" src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript;version=1.8" src="common.js"></script>
  <!-- Any copyright is dedicated to the Public Domain.
     - http://creativecommons.org/publicdomain/zero/1.0/ -->
</head>
<body>
<p>Test for the native getters in object actors</p>

<script class="testbody" type="text/javascript;version=1.8">
SimpleTest.waitForExplicitFinish();

let expectedProps = [];
let expectedSafeGetters = [];

function startTest()
{
  removeEventListener("load", startTest);

  attachConsoleToTab(["ConsoleAPI"], onAttach);
}

function onAttach(aState, aResponse)
{
  onConsoleCall = onConsoleCall.bind(null, aState);
  aState.dbgClient.addListener("consoleAPICall", onConsoleCall);

  top.console.log("hello", document);

  expectedProps = {
    "location": {
      get: {
        type: "object",
        class: "Function",
        actor: /[a-z]/,
      },
    },
  };

  expectedSafeGetters = {
    "title": {
      getterValue: /native getters in object actors/,
      getterPrototypeLevel: 2,
    },
    "styleSheets": {
      getterValue: /\[object Object\]/,
      getterPrototypeLevel: 2,
    },
  };
}

function onConsoleCall(aState, aType, aPacket)
{
  is(aPacket.from, aState.actor, "console API call actor");

  info("checking the console API call packet");

  checkConsoleAPICall(aPacket.message, {
    level: "log",
    filename: /test_object_actor/,
    functionName: "onAttach",
    arguments: ["hello", {
      type: "object",
      actor: /[a-z]/,
    }],
  });

  aState.dbgClient.removeListener("consoleAPICall", onConsoleCall);

  info("inspecting object properties");
  let args = aPacket.message.arguments;
  onProperties = onProperties.bind(null, aState);

  let client = new ObjectClient(aState.dbgClient, args[1]);
  client.getPrototypeAndProperties(onProperties);
}

function onProperties(aState, aResponse)
{
  let props = aResponse.ownProperties;
  let keys = Object.keys(props);
  info(keys.length + " ownProperties: " + keys);

  ok(keys.length >= Object.keys(expectedProps).length, "number of properties");

  info("check ownProperties");
  checkObject(props, expectedProps);
  info("check safeGetterValues");
  checkObject(aResponse.safeGetterValues, expectedSafeGetters);

  expectedProps = [];
  expectedSafeGetters = [];

  closeDebugger(aState, function() {
    SimpleTest.finish();
  });
}

addEventListener("load", startTest);
</script>
</body>
</html>