summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/chrome/test_consoleapi.html
blob: b5d8edf23e9a1e85bda9e16c578df716e64217d9 (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
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
<!DOCTYPE HTML>
<html lang="en">
<head>
  <meta charset="utf8">
  <title>Test for the Console API</title>
  <script src="chrome://mochikit/content/tests/SimpleTest/SimpleTest.js"></script>
  <script type="text/javascript" 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">
"use strict";

SimpleTest.waitForExplicitFinish();

let expectedConsoleCalls = [];

function doConsoleCalls(aState)
{
  const longString = (new Array(DevToolsServer.LONG_STRING_LENGTH + 2)).join("a");

  top.console.log("foobarBaz-log", undefined);

  top.console.log("Float from not a number: %f", "foo");
  top.console.log("Float from string: %f", "1.2");
  top.console.log("Float from number: %f", 1.3);

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

  const sandbox = new Cu.Sandbox(null, { invisibleToDebugger: true });
  const sandboxObj = sandbox.eval("new Object");
  top.console.log(sandboxObj);

  function fromAsmJS() {
      top.console.error("foobarBaz-asmjs-error", undefined);
  }

  (function(global, foreign) {
    "use asm";
    function inAsmJS2() { foreign.fromAsmJS() }
    function inAsmJS1() { inAsmJS2() }
    return inAsmJS1
  })(null, { fromAsmJS })();

  expectedConsoleCalls = [
    {
      level: "log",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: ["foobarBaz-log", { type: "undefined" }],
    },
    {
      level: "log",
      arguments: ["Float from not a number: NaN"],
    },
    {
      level: "log",
      arguments: ["Float from string: 1.200000"],
    },
    {
      level: "log",
      arguments: ["Float from number: 1.300000"],
    },
    {
      level: "info",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: ["foobarBaz-info", { type: "null" }],
    },
    {
      level: "warn",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: ["foobarBaz-warn", { type: "object", actor: /[a-z]/ }],
    },
    {
      level: "debug",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: [{ type: "null" }],
    },
    {
      level: "trace",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      stacktrace: [
        {
          filename: /test_consoleapi/,
          functionName: "doConsoleCalls",
        },
        {
          filename: /test_consoleapi/,
          functionName: "onAttach",
        },
      ],
    },
    {
      level: "dir",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: [
        {
          type: "object",
          actor: /[a-z]/,
          class: "HTMLDocument",
        },
        {
          type: "object",
          actor: /[a-z]/,
          class: "Location",
        }
      ],
    },
    {
      level: "log",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: [
        "foo",
        {
          type: "longString",
          initial: longString.substring(0,
            DevToolsServer.LONG_STRING_INITIAL_LENGTH),
          length: longString.length,
          actor: /[a-z]/,
        },
      ],
    },
    {
      level: "log",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: [
        {
          type: "object",
          actor: /[a-z]/,
          class: "InvisibleToDebugger: Object",
        },
      ],
    },
    {
      level: "error",
      filename: /test_consoleapi/,
      timeStamp: FRACTIONAL_NUMBER_REGEX,
      arguments: ["foobarBaz-asmjs-error", { type: "undefined" }],

      stacktrace: [
        {
          filename: /test_consoleapi/,
          functionName: "fromAsmJS",
        },
        {
          filename: /test_consoleapi/,
          functionName: "inAsmJS2",
        },
        {
          filename: /test_consoleapi/,
          functionName: "inAsmJS1",
        },
        {
          filename: /test_consoleapi/,
          functionName: "doConsoleCalls",
        },
        {
          filename: /test_consoleapi/,
          functionName: "onAttach",
        },
      ],
    },
  ];
}

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

  const {state, response} = await attachConsoleToTab(["ConsoleAPI"]);
  onAttach(state, response);
}

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

let consoleCalls = [];

function onConsoleAPICall(aState, aPacket)
{
  info("received message level: " + aPacket.message.level);

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

  aState.webConsoleFront.off("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>