mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-27 21:39:15 +00:00
131 lines
2.8 KiB
JavaScript
131 lines
2.8 KiB
JavaScript
/*
|
|
* Any copyright is dedicated to the Public Domain.
|
|
* http://creativecommons.org/publicdomain/zero/1.0/
|
|
*/
|
|
|
|
// Test the webconsole output for various types of objects.
|
|
|
|
const TEST_URI = "data:text/html;charset=utf8,test for console output - 05";
|
|
const ELLIPSIS = Services.prefs.getComplexValue("intl.ellipsis", Ci.nsIPrefLocalizedString).data;
|
|
|
|
let dateNow = Date.now();
|
|
|
|
let inputTests = [
|
|
// 0
|
|
{
|
|
input: "/foo?b*\\s\"ar/igym",
|
|
output: "/foo?b*\\s\"ar/gimy",
|
|
printOutput: "/foo?b*\\s\"ar/gimy",
|
|
inspectable: true,
|
|
},
|
|
|
|
// 1
|
|
{
|
|
input: "null",
|
|
output: "null",
|
|
},
|
|
|
|
// 2
|
|
{
|
|
input: "undefined",
|
|
output: "undefined",
|
|
},
|
|
|
|
// 3
|
|
{
|
|
input: "true",
|
|
output: "true",
|
|
},
|
|
|
|
// 4
|
|
{
|
|
input: "new Boolean(false)",
|
|
output: "false",
|
|
inspectable: true,
|
|
},
|
|
|
|
// 5
|
|
{
|
|
input: "new Date(" + dateNow + ")",
|
|
output: "Date " + (new Date(dateNow)).toISOString(),
|
|
printOutput: (new Date(dateNow)).toString(),
|
|
inspectable: true,
|
|
},
|
|
|
|
// 6
|
|
{
|
|
input: "new Date('test')",
|
|
output: "Invalid Date",
|
|
printOutput: "Invalid Date",
|
|
inspectable: true,
|
|
variablesViewLabel: "Invalid Date",
|
|
},
|
|
|
|
// 7
|
|
{
|
|
input: "Date.prototype",
|
|
output: "Date",
|
|
printOutput: "Invalid Date",
|
|
inspectable: true,
|
|
variablesViewLabel: "Date",
|
|
},
|
|
|
|
// 8
|
|
{
|
|
input: "new Number(43)",
|
|
output: "43",
|
|
inspectable: true,
|
|
},
|
|
|
|
// 9
|
|
{
|
|
input: "new String('hello')",
|
|
output: 'String [ "h", "e", "l", "l", "o" ]',
|
|
printOutput: "hello",
|
|
inspectable: true,
|
|
variablesViewLabel: "String[5]"
|
|
},
|
|
|
|
// 9
|
|
{
|
|
// XXX: Can't test fulfilled and rejected promises, because promises get
|
|
// settled on the next tick of the event loop.
|
|
input: "new Promise(function () {})",
|
|
output: 'Promise { <state>: "pending" }',
|
|
printOutput: "[object Promise]",
|
|
inspectable: true,
|
|
variablesViewLabel: "Promise"
|
|
},
|
|
|
|
// 10
|
|
{
|
|
input: "(function () { var p = new Promise(function () {}); p.foo = 1; return p; }())",
|
|
output: 'Promise { <state>: "pending", foo: 1 }',
|
|
printOutput: "[object Promise]",
|
|
inspectable: true,
|
|
variablesViewLabel: "Promise"
|
|
},
|
|
|
|
//11
|
|
{
|
|
input: "new Object({1: 'this\\nis\\nsupposed\\nto\\nbe\\na\\nvery\\nlong\\nstring\\n,shown\\non\\na\\nsingle\\nline', 2: 'a shorter string', 3: 100})",
|
|
output: 'Object { 1: "this is supposed to be a very long ' + ELLIPSIS + '", 2: "a shorter string", 3: 100 }',
|
|
printOutput: "[object Object]",
|
|
inspectable: false,
|
|
}
|
|
];
|
|
|
|
function test() {
|
|
requestLongerTimeout(2);
|
|
Task.spawn(function*() {
|
|
let {tab} = yield loadTab(TEST_URI);
|
|
let hud = yield openConsole(tab);
|
|
return checkOutputForInputs(hud, inputTests);
|
|
}).then(finishUp);
|
|
}
|
|
|
|
function finishUp() {
|
|
inputTests = dateNow = null;
|
|
finishTest();
|
|
}
|