summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/console-time-end-format.js
blob: c87f672e2c558eea136f6613d2a0d40ede49ac91 (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
// Copyright 2017 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

InspectorTest.log('Checks format of console.timeEnd output');

Protocol.Runtime.enable();
Protocol.Runtime.onConsoleAPICalled(message => {
  InspectorTest.log(message.params.args[0].value);
});

InspectorTest.runTestSuite([
  function zero(next) {
    checkInterval(0.0).then(next);
  },
  function verySmall(next) {
    checkInterval(1e-15).then(next);
  },
  function small(next) {
    checkInterval(0.001).then(next);
  },
  function regular(next) {
    checkInterval(1.2345).then(next);
  },
  function big(next) {
    checkInterval(10000.2345).then(next);
  },
  function veryBig(next) {
    checkInterval(1e+15 + 0.2345).then(next);
  },
  function huge(next) {
    checkInterval(1e+42).then(next);
  }
]);

function checkInterval(time) {
  utils.setCurrentTimeMSForTest(0.0);
  return Protocol.Runtime.evaluate({
    expression: `console.log('js: ' + ${time} + 'ms')`})
    .then(() => Protocol.Runtime.evaluate({
      expression: 'console.time(\'timeEnd\')'}))
    .then(() => utils.setCurrentTimeMSForTest(time))
    .then(() => Protocol.Runtime.evaluate({
      expression: 'console.timeEnd(\'timeEnd\')'}));
}