2010-11-09 12:19:19 -08:00
|
|
|
/* vim:set ts=2 sw=2 sts=2 et: */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2010-11-09 12:19:19 -08:00
|
|
|
|
|
|
|
const TEST_URI = "http://example.com/browser/dom/tests/browser/test-console-api.html";
|
|
|
|
|
2012-06-02 03:45:32 -07:00
|
|
|
var gWindow, gLevel, gArgs, gTestDriver;
|
2010-11-09 12:19:19 -08:00
|
|
|
|
|
|
|
function test() {
|
|
|
|
waitForExplicitFinish();
|
|
|
|
|
|
|
|
var tab = gBrowser.addTab(TEST_URI);
|
|
|
|
gBrowser.selectedTab = tab;
|
|
|
|
var browser = gBrowser.selectedBrowser;
|
|
|
|
|
|
|
|
registerCleanupFunction(function () {
|
2012-06-02 03:45:32 -07:00
|
|
|
gWindow = gLevel = gArgs = gTestDriver = null;
|
2010-11-09 12:19:19 -08:00
|
|
|
gBrowser.removeTab(tab);
|
|
|
|
});
|
|
|
|
|
|
|
|
ConsoleObserver.init();
|
|
|
|
|
|
|
|
browser.addEventListener("DOMContentLoaded", function onLoad(event) {
|
|
|
|
browser.removeEventListener("DOMContentLoaded", onLoad, false);
|
|
|
|
executeSoon(function test_executeSoon() {
|
|
|
|
gWindow = browser.contentWindow;
|
|
|
|
consoleAPISanityTest();
|
2012-06-02 03:45:32 -07:00
|
|
|
gTestDriver = observeConsoleTest();
|
|
|
|
gTestDriver.next();
|
2010-11-09 12:19:19 -08:00
|
|
|
});
|
|
|
|
|
|
|
|
}, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testConsoleData(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
is(aMessageObject.level, gLevel, "expected level received");
|
|
|
|
ok(aMessageObject.arguments, "we have arguments");
|
|
|
|
is(aMessageObject.arguments.length, gArgs.length, "arguments.length matches");
|
|
|
|
|
2011-04-11 10:48:15 -07:00
|
|
|
if (gLevel == "trace") {
|
|
|
|
is(aMessageObject.arguments.toSource(), gArgs.toSource(),
|
|
|
|
"stack trace is correct");
|
2010-11-09 12:19:19 -08:00
|
|
|
}
|
2011-04-11 10:48:15 -07:00
|
|
|
else {
|
|
|
|
gArgs.forEach(function (a, i) {
|
|
|
|
is(aMessageObject.arguments[i], a, "correct arg " + i);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2012-06-02 03:45:32 -07:00
|
|
|
gTestDriver.next();
|
2011-04-11 10:48:15 -07:00
|
|
|
}
|
|
|
|
|
2011-05-12 05:29:17 -07:00
|
|
|
function testLocationData(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
is(aMessageObject.level, gLevel, "expected level received");
|
|
|
|
ok(aMessageObject.arguments, "we have arguments");
|
|
|
|
|
|
|
|
is(aMessageObject.filename, gArgs[0].filename, "filename matches");
|
|
|
|
is(aMessageObject.lineNumber, gArgs[0].lineNumber, "lineNumber matches");
|
|
|
|
is(aMessageObject.functionName, gArgs[0].functionName, "functionName matches");
|
|
|
|
is(aMessageObject.arguments.length, gArgs[0].arguments.length, "arguments.length matches");
|
|
|
|
gArgs[0].arguments.forEach(function (a, i) {
|
|
|
|
is(aMessageObject.arguments[i], a, "correct arg " + i);
|
|
|
|
});
|
|
|
|
|
2011-06-14 04:38:11 -07:00
|
|
|
startGroupTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
function startGroupTest() {
|
|
|
|
// Reset the observer function to cope with the fabricated test data.
|
|
|
|
ConsoleObserver.observe = function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testConsoleGroup(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
let button = gWindow.document.getElementById("test-groups");
|
|
|
|
ok(button, "found #test-groups button");
|
2011-05-31 23:33:22 -07:00
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
2011-06-14 04:38:11 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
function testConsoleGroup(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
ok(aMessageObject.level == "group" ||
|
|
|
|
aMessageObject.level == "groupCollapsed" ||
|
|
|
|
aMessageObject.level == "groupEnd",
|
|
|
|
"expected level received");
|
|
|
|
|
|
|
|
is(aMessageObject.functionName, "testGroups", "functionName matches");
|
2011-05-31 23:33:22 -07:00
|
|
|
ok(aMessageObject.lineNumber >= 45 && aMessageObject.lineNumber <= 47,
|
2011-06-14 04:38:11 -07:00
|
|
|
"lineNumber matches");
|
|
|
|
if (aMessageObject.level == "groupCollapsed") {
|
|
|
|
ok(aMessageObject.arguments == "a group", "groupCollapsed arguments matches");
|
|
|
|
}
|
|
|
|
else if (aMessageObject.level == "group") {
|
|
|
|
ok(aMessageObject.arguments == "b group", "group arguments matches");
|
|
|
|
}
|
|
|
|
else if (aMessageObject.level == "groupEnd") {
|
|
|
|
ok(Array.prototype.join.call(aMessageObject.arguments, " ") == "b group", "groupEnd arguments matches");
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aMessageObject.level == "groupEnd") {
|
2011-05-31 23:33:22 -07:00
|
|
|
startTimeTest();
|
2011-06-14 04:38:11 -07:00
|
|
|
}
|
2011-05-12 05:29:17 -07:00
|
|
|
}
|
|
|
|
|
2011-04-11 10:48:15 -07:00
|
|
|
function startTraceTest() {
|
|
|
|
gLevel = "trace";
|
|
|
|
gArgs = [
|
|
|
|
{filename: TEST_URI, lineNumber: 6, functionName: null, language: 2},
|
|
|
|
{filename: TEST_URI, lineNumber: 11, functionName: "foobar585956b", language: 2},
|
|
|
|
{filename: TEST_URI, lineNumber: 15, functionName: "foobar585956a", language: 2},
|
|
|
|
{filename: TEST_URI, lineNumber: 1, functionName: "onclick", language: 2}
|
|
|
|
];
|
|
|
|
|
|
|
|
let button = gWindow.document.getElementById("test-trace");
|
|
|
|
ok(button, "found #test-trace button");
|
2011-05-31 23:33:22 -07:00
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
2010-11-09 12:19:19 -08:00
|
|
|
}
|
|
|
|
|
2011-05-12 05:29:17 -07:00
|
|
|
function startLocationTest() {
|
|
|
|
// Reset the observer function to cope with the fabricated test data.
|
|
|
|
ConsoleObserver.observe = function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testLocationData(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gLevel = "log";
|
|
|
|
gArgs = [
|
|
|
|
{filename: TEST_URI, lineNumber: 19, functionName: "foobar646025", arguments: ["omg", "o", "d"]}
|
|
|
|
];
|
|
|
|
|
|
|
|
let button = gWindow.document.getElementById("test-location");
|
|
|
|
ok(button, "found #test-location button");
|
2011-05-31 23:33:22 -07:00
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
2011-05-12 05:29:17 -07:00
|
|
|
}
|
|
|
|
|
2010-11-09 12:19:19 -08:00
|
|
|
function expect(level) {
|
|
|
|
gLevel = level;
|
|
|
|
gArgs = Array.slice(arguments, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
function observeConsoleTest() {
|
|
|
|
let win = XPCNativeWrapper.unwrap(gWindow);
|
|
|
|
expect("log", "arg");
|
|
|
|
win.console.log("arg");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2010-11-09 12:19:19 -08:00
|
|
|
|
|
|
|
expect("info", "arg", "extra arg");
|
|
|
|
win.console.info("arg", "extra arg");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2010-11-09 12:19:19 -08:00
|
|
|
|
2011-09-15 11:20:22 -07:00
|
|
|
// We don't currently support width and precision qualifiers, but we don't
|
|
|
|
// choke on them either.
|
|
|
|
expect("warn", "Lesson 1: PI is approximately equal to 3.14159");
|
|
|
|
win.console.warn("Lesson %d: %s is approximately equal to %1.2f",
|
|
|
|
1,
|
|
|
|
"PI",
|
|
|
|
3.14159);
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
|
|
|
|
2011-09-15 11:20:22 -07:00
|
|
|
expect("log", "%d, %s, %l");
|
|
|
|
win.console.log("%d, %s, %l");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
|
|
|
|
2011-09-15 11:20:22 -07:00
|
|
|
expect("log", "%a %b %c");
|
|
|
|
win.console.log("%a %b %c");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
|
|
|
|
2011-09-15 11:20:22 -07:00
|
|
|
expect("log", "%a %b %c", "a", "b");
|
|
|
|
win.console.log("%a %b %c", "a", "b");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
|
|
|
|
2011-09-15 11:20:22 -07:00
|
|
|
expect("log", "2, a, %l", 3);
|
|
|
|
win.console.log("%d, %s, %l", 2, "a", 3);
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2010-11-09 12:19:19 -08:00
|
|
|
|
2011-10-24 01:12:24 -07:00
|
|
|
// Bug #692550 handle null and undefined.
|
2011-10-07 05:29:33 -07:00
|
|
|
expect("log", "null, undefined");
|
|
|
|
win.console.log("%s, %s", null, undefined);
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2011-10-07 05:29:33 -07:00
|
|
|
|
2011-10-24 01:12:24 -07:00
|
|
|
// Bug #696288 handle object as first argument.
|
|
|
|
let obj = { a: 1 };
|
|
|
|
expect("log", obj, "a");
|
|
|
|
win.console.log(obj, "a");
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2011-10-24 01:12:24 -07:00
|
|
|
|
2011-06-09 06:27:30 -07:00
|
|
|
expect("dir", win.toString());
|
|
|
|
win.console.dir(win);
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
2011-06-09 06:27:30 -07:00
|
|
|
|
2010-11-09 12:19:19 -08:00
|
|
|
expect("error", "arg");
|
|
|
|
win.console.error("arg");
|
2012-08-03 13:14:01 -07:00
|
|
|
yield;
|
2012-06-02 03:45:32 -07:00
|
|
|
|
2012-08-03 13:14:01 -07:00
|
|
|
let obj2 = { b: 2 };
|
|
|
|
expect("log", "omg ", obj, " foo ", 4, obj2);
|
|
|
|
win.console.log("omg %o foo %o", obj, 4, obj2);
|
2012-06-02 03:45:32 -07:00
|
|
|
yield;
|
|
|
|
|
|
|
|
startTraceTest();
|
|
|
|
yield;
|
|
|
|
|
|
|
|
startLocationTest();
|
|
|
|
yield;
|
2010-11-09 12:19:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
function consoleAPISanityTest() {
|
|
|
|
let win = XPCNativeWrapper.unwrap(gWindow);
|
|
|
|
ok(win.console, "we have a console attached");
|
|
|
|
ok(win.console, "we have a console attached, 2nd attempt");
|
|
|
|
|
|
|
|
ok(win.console.log, "console.log is here");
|
|
|
|
ok(win.console.info, "console.info is here");
|
|
|
|
ok(win.console.warn, "console.warn is here");
|
|
|
|
ok(win.console.error, "console.error is here");
|
2011-04-11 10:48:15 -07:00
|
|
|
ok(win.console.trace, "console.trace is here");
|
2011-06-09 06:27:30 -07:00
|
|
|
ok(win.console.dir, "console.dir is here");
|
2011-06-14 04:38:11 -07:00
|
|
|
ok(win.console.group, "console.group is here");
|
|
|
|
ok(win.console.groupCollapsed, "console.groupCollapsed is here");
|
|
|
|
ok(win.console.groupEnd, "console.groupEnd is here");
|
2011-05-31 23:33:22 -07:00
|
|
|
ok(win.console.time, "console.time is here");
|
|
|
|
ok(win.console.timeEnd, "console.timeEnd is here");
|
|
|
|
}
|
|
|
|
|
|
|
|
function startTimeTest() {
|
|
|
|
// Reset the observer function to cope with the fabricated test data.
|
|
|
|
ConsoleObserver.observe = function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testConsoleTime(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gLevel = "time";
|
|
|
|
gArgs = [
|
|
|
|
{filename: TEST_URI, lineNumber: 23, functionName: "startTimer"},
|
|
|
|
];
|
|
|
|
|
|
|
|
let button = gWindow.document.getElementById("test-time");
|
|
|
|
ok(button, "found #test-time button");
|
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testConsoleTime(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
is(aMessageObject.level, gLevel, "expected level received");
|
|
|
|
|
|
|
|
is(aMessageObject.filename, gArgs[0].filename, "filename matches");
|
|
|
|
is(aMessageObject.lineNumber, gArgs[0].lineNumber, "lineNumber matches");
|
|
|
|
is(aMessageObject.functionName, gArgs[0].functionName, "functionName matches");
|
|
|
|
|
|
|
|
startTimeEndTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
function startTimeEndTest() {
|
|
|
|
// Reset the observer function to cope with the fabricated test data.
|
|
|
|
ConsoleObserver.observe = function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testConsoleTimeEnd(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
gLevel = "timeEnd";
|
|
|
|
gArgs = [
|
|
|
|
{filename: TEST_URI, lineNumber: 27, functionName: "stopTimer", arguments: { name: "foo" }},
|
|
|
|
];
|
|
|
|
|
|
|
|
let button = gWindow.document.getElementById("test-timeEnd");
|
|
|
|
ok(button, "found #test-timeEnd button");
|
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testConsoleTimeEnd(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
is(aMessageObject.level, gLevel, "expected level received");
|
|
|
|
ok(aMessageObject.arguments, "we have arguments");
|
|
|
|
|
|
|
|
is(aMessageObject.filename, gArgs[0].filename, "filename matches");
|
|
|
|
is(aMessageObject.lineNumber, gArgs[0].lineNumber, "lineNumber matches");
|
|
|
|
is(aMessageObject.functionName, gArgs[0].functionName, "functionName matches");
|
|
|
|
is(aMessageObject.arguments.length, gArgs[0].arguments.length, "arguments.length matches");
|
|
|
|
is(aMessageObject.arguments.name, gArgs[0].arguments.name, "timer name matches");
|
|
|
|
ok(typeof aMessageObject.arguments.duration == "number", "timer duration is a number");
|
|
|
|
ok(aMessageObject.arguments.duration > 0, "timer duration is positive");
|
|
|
|
|
|
|
|
startEmptyTimerTest();
|
|
|
|
}
|
|
|
|
|
|
|
|
function startEmptyTimerTest() {
|
|
|
|
// Reset the observer function to cope with the fabricated test data.
|
|
|
|
ConsoleObserver.observe = function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testEmptyTimer(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
let button = gWindow.document.getElementById("test-namelessTimer");
|
|
|
|
ok(button, "found #test-namelessTimer button");
|
|
|
|
EventUtils.synthesizeMouseAtCenter(button, {}, gWindow);
|
|
|
|
}
|
|
|
|
|
|
|
|
function testEmptyTimer(aMessageObject) {
|
|
|
|
let messageWindow = getWindowByWindowId(aMessageObject.ID);
|
|
|
|
is(messageWindow, gWindow, "found correct window by window ID");
|
|
|
|
|
|
|
|
ok(aMessageObject.level == "time" || aMessageObject.level == "timeEnd",
|
|
|
|
"expected level received");
|
|
|
|
ok(!aMessageObject.arguments, "we don't have arguments");
|
|
|
|
|
|
|
|
is(aMessageObject.functionName, "namelessTimer", "functionName matches");
|
|
|
|
ok(aMessageObject.lineNumber == 31 || aMessageObject.lineNumber == 32,
|
|
|
|
"lineNumber matches");
|
|
|
|
// Test finished
|
|
|
|
ConsoleObserver.destroy();
|
|
|
|
finish();
|
2010-11-09 12:19:19 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
var ConsoleObserver = {
|
|
|
|
QueryInterface: XPCOMUtils.generateQI([Ci.nsIObserver]),
|
|
|
|
|
|
|
|
init: function CO_init() {
|
|
|
|
Services.obs.addObserver(this, "console-api-log-event", false);
|
|
|
|
},
|
|
|
|
|
|
|
|
destroy: function CO_destroy() {
|
|
|
|
Services.obs.removeObserver(this, "console-api-log-event");
|
|
|
|
},
|
|
|
|
|
|
|
|
observe: function CO_observe(aSubject, aTopic, aData) {
|
|
|
|
try {
|
|
|
|
testConsoleData(aSubject.wrappedJSObject);
|
|
|
|
} catch (ex) {
|
|
|
|
// XXX Exceptions in this function currently aren't reported, because of
|
|
|
|
// some XPConnect weirdness, so report them manually
|
|
|
|
ok(false, "Exception thrown in CO_observe: " + ex);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
function getWindowId(aWindow)
|
|
|
|
{
|
|
|
|
return aWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowUtils)
|
|
|
|
.outerWindowID;
|
|
|
|
}
|
|
|
|
|
|
|
|
function getWindowByWindowId(aId) {
|
|
|
|
let someWindow = Services.wm.getMostRecentWindow("navigator:browser");
|
|
|
|
if (someWindow) {
|
|
|
|
let windowUtils = someWindow.QueryInterface(Ci.nsIInterfaceRequestor)
|
|
|
|
.getInterface(Ci.nsIDOMWindowUtils);
|
|
|
|
return windowUtils.getOuterWindowWithId(aId);
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|