summaryrefslogtreecommitdiffstats
path: root/devtools/shared/webconsole/test/chrome/test_console_assert.html
blob: f847d5f5d851eb5eecffc0efcfd39f553b82538d (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>
<head>
  <meta charset="utf-8">
  <title>Test for console.group styling with %c</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/ -->
  <script>
"use strict";

window.onload = async function () {
  SimpleTest.waitForExplicitFinish();
  let state;
  try {
    state = (await attachConsole(["ConsoleAPI"])).state;
    const {webConsoleFront} = state;

    await testFalseAssert(webConsoleFront);
    await testFalsyAssert(webConsoleFront);
    await testUndefinedAssert(webConsoleFront);
    await testNullAssert(webConsoleFront);
    await testTrueAssert(webConsoleFront);

  } catch (e) {
    ok(false, `Error thrown: ${e.message}`);
  }

  await closeDebugger(state);
  SimpleTest.finish();
};

async function testFalseAssert(consoleFront) {
  info(`Testing console.assert(false)`);
  const packet = await consoleAPICall(
    consoleFront,
    () => top.console.assert(false, "assertion is false")
  );

  checkConsoleAPICall(packet.message, {
    arguments: ["assertion is false"]
  });
}

async function testFalsyAssert(consoleFront) {
  info(`Testing console.assert(0")`);
  const packet = await consoleAPICall(
    consoleFront,
    () => top.console.assert(0, "assertion is false")
  );

  checkConsoleAPICall(packet.message, {
    arguments: ["assertion is false"]
  });
}

async function testUndefinedAssert(consoleFront) {
  info(`Testing console.assert(undefined)`);
  const packet = await consoleAPICall(
    consoleFront,
    () => top.console.assert(undefined, "assertion is false")
  );

  checkConsoleAPICall(packet.message, {
    arguments: ["assertion is false"]
  });
}

async function testNullAssert(consoleFront) {
  info(`Testing console.assert(null)`);
  const packet = await consoleAPICall(
    consoleFront,
    () => top.console.assert(null, "assertion is false")
  );

  checkConsoleAPICall(packet.message, {
    arguments: ["assertion is false"]
  });
}

async function testTrueAssert(consoleFront) {
  info(`Testing console.assert(true)`);
  const onConsoleApiCall = consoleAPICall(
    consoleFront,
    () => top.console.assert(true, "assertion is false")
  );

  const TIMEOUT = Symbol();
  const onTimeout = new Promise(resolve => setTimeout(() => resolve(TIMEOUT), 1000));

  const res = await Promise.race([onConsoleApiCall, onTimeout]);
  is(res, TIMEOUT,
    "There was no consoleAPICall event in response to a truthy console.assert");
}

  </script>
</head>
<body>
  <p id="display"></p>
  <div id="content" style="display: none">
  </div>
  <pre id="test">
  </pre>
</body>
</html>