summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/test_consoleapi_innerID.html
blob: b477a36bee5874c46f75b40e327c0ebc4c4232eb (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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test for the innerID property of the Console API</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 Console API</p>

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

let expectedConsoleCalls = [];

function doConsoleCalls(aState)
{
  let { ConsoleAPI } = Cu.import("resource://gre/modules/Console.jsm", {});
  let console = new ConsoleAPI({
    innerID: window.QueryInterface(Ci.nsIInterfaceRequestor)
                   .getInterface(Ci.nsIDOMWindowUtils)
                   .currentInnerWindowID
  });

  let longString = (new Array(DebuggerServer.LONG_STRING_LENGTH + 2)).join("a");

  console.log("foobarBaz-log", undefined);
  console.info("foobarBaz-info", null);
  console.warn("foobarBaz-warn", top.document.documentElement);
  console.debug(null);
  console.trace();
  console.dir(top.document, top.location);
  console.log("foo", longString);

  expectedConsoleCalls = [
    {
      level: "log",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: ["foobarBaz-log", { type: "undefined" }],
    },
    {
      level: "info",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: ["foobarBaz-info", { type: "null" }],
    },
    {
      level: "warn",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: ["foobarBaz-warn", { type: "object", actor: /[a-z]/ }],
    },
    {
      level: "debug",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: [{ type: "null" }],
    },
    {
      level: "trace",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      stacktrace: [
        {
          filename: /test_consoleapi/,
          functionName: "doConsoleCalls",
        },
        {
          filename: /test_consoleapi/,
          functionName: "onAttach",
        },
      ],
    },
    {
      level: "dir",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: [
        {
          type: "object",
          actor: /[a-z]/,
          class: "XULDocument",
        },
        {
          type: "object",
          actor: /[a-z]/,
          class: "Location",
        }
      ],
    },
    {
      level: "log",
      filename: /test_consoleapi/,
      functionName: "doConsoleCalls",
      timeStamp: /^\d+$/,
      arguments: [
        "foo",
        {
          type: "longString",
          initial: longString.substring(0,
            DebuggerServer.LONG_STRING_INITIAL_LENGTH),
          length: longString.length,
          actor: /[a-z]/,
        },
      ],
    },
  ];
}

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

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

function onAttach(aState, aResponse)
{
  onConsoleAPICall = onConsoleAPICall.bind(null, aState);
  aState.dbgClient.addListener("consoleAPICall", onConsoleAPICall);
  doConsoleCalls(aState.actor);
}

let consoleCalls = [];

function onConsoleAPICall(aState, aType, aPacket)
{
  info("received message level: " + aPacket.message.level);
  is(aPacket.from, aState.actor, "console API call actor");

  consoleCalls.push(aPacket.message);
  if (consoleCalls.length != expectedConsoleCalls.length) {
    return;
  }

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

  expectedConsoleCalls.forEach(function(aMessage, aIndex) {
    info("checking received console call #" + aIndex);
    checkConsoleAPICall(consoleCalls[aIndex], expectedConsoleCalls[aIndex]);
  });


  consoleCalls = [];

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

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