2015-03-17 14:27:20 +00: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/. */
|
|
|
|
|
|
|
|
"use strict";
|
|
|
|
|
2016-01-29 12:57:46 +00:00
|
|
|
const {interfaces: Ci, utils: Cu} = Components;
|
2015-03-17 14:27:20 +00:00
|
|
|
|
2016-02-03 18:41:37 +00:00
|
|
|
const ERRORS = [
|
2015-04-15 11:18:00 +00:00
|
|
|
"ElementNotAccessibleError",
|
2015-03-17 14:27:20 +00:00
|
|
|
"ElementNotVisibleError",
|
2015-04-17 17:43:05 +00:00
|
|
|
"InvalidArgumentError",
|
2015-03-31 17:00:32 +00:00
|
|
|
"InvalidElementStateError",
|
2015-04-15 11:18:00 +00:00
|
|
|
"InvalidSelectorError",
|
2015-04-15 12:38:01 +00:00
|
|
|
"InvalidSessionIdError",
|
2015-03-17 14:27:20 +00:00
|
|
|
"JavaScriptError",
|
|
|
|
"NoAlertOpenError",
|
|
|
|
"NoSuchElementError",
|
|
|
|
"NoSuchFrameError",
|
|
|
|
"NoSuchWindowError",
|
|
|
|
"ScriptTimeoutError",
|
|
|
|
"SessionNotCreatedError",
|
2015-04-15 11:18:00 +00:00
|
|
|
"StaleElementReferenceError",
|
2015-03-17 14:27:20 +00:00
|
|
|
"TimeoutError",
|
2015-04-20 12:53:51 +00:00
|
|
|
"UnableToSetCookieError",
|
2015-03-17 14:27:20 +00:00
|
|
|
"UnknownCommandError",
|
|
|
|
"UnknownError",
|
|
|
|
"UnsupportedOperationError",
|
|
|
|
"WebDriverError",
|
|
|
|
];
|
|
|
|
|
2016-02-03 18:41:37 +00:00
|
|
|
this.EXPORTED_SYMBOLS = ["error"].concat(ERRORS);
|
2015-03-17 14:27:20 +00:00
|
|
|
|
|
|
|
this.error = {};
|
|
|
|
|
2016-02-03 18:41:37 +00:00
|
|
|
error.BuiltinErrors = {
|
|
|
|
Error: 0,
|
|
|
|
EvalError: 1,
|
|
|
|
InternalError: 2,
|
|
|
|
RangeError: 3,
|
|
|
|
ReferenceError: 4,
|
|
|
|
SyntaxError: 5,
|
|
|
|
TypeError: 6,
|
|
|
|
URIError: 7,
|
|
|
|
};
|
|
|
|
|
2015-03-17 14:27:20 +00:00
|
|
|
/**
|
|
|
|
* Checks if obj is an instance of the Error prototype in a safe manner.
|
|
|
|
* Prefer using this over using instanceof since the Error prototype
|
2016-01-07 14:37:06 +00:00
|
|
|
* isn't unique across browsers, and XPCOM nsIException's are special
|
2015-03-17 14:27:20 +00:00
|
|
|
* snowflakes.
|
2015-04-15 11:18:00 +00:00
|
|
|
*
|
|
|
|
* @param {*} val
|
|
|
|
* Any value that should be undergo the test for errorness.
|
|
|
|
* @return {boolean}
|
|
|
|
* True if error, false otherwise.
|
2015-03-17 14:27:20 +00:00
|
|
|
*/
|
2015-04-15 11:18:00 +00:00
|
|
|
error.isError = function(val) {
|
|
|
|
if (val === null || typeof val != "object") {
|
2015-03-17 14:27:20 +00:00
|
|
|
return false;
|
2016-01-07 14:37:06 +00:00
|
|
|
} else if (val instanceof Ci.nsIException) {
|
2015-03-17 14:27:20 +00:00
|
|
|
return true;
|
|
|
|
} else {
|
2016-02-03 18:41:37 +00:00
|
|
|
return Object.getPrototypeOf(val) in error.BuiltinErrors;
|
2015-03-17 14:27:20 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Checks if obj is an object in the WebDriverError prototypal chain.
|
|
|
|
*/
|
|
|
|
error.isWebDriverError = function(obj) {
|
|
|
|
return error.isError(obj) &&
|
2016-02-03 18:41:37 +00:00
|
|
|
("name" in obj && ERRORS.indexOf(obj.name) >= 0);
|
2016-02-03 18:43:37 +00:00
|
|
|
};
|
|
|
|
|
2016-02-03 18:43:37 +00:00
|
|
|
/**
|
|
|
|
* Wraps an Error prototype in a WebDriverError. If the given error is
|
|
|
|
* already a WebDriverError, this is effectively a no-op.
|
|
|
|
*/
|
|
|
|
error.wrap = function(err) {
|
|
|
|
if (error.isWebDriverError(err)) {
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
return new WebDriverError(`${err.name}: ${err.message}`, err.stack);
|
|
|
|
};
|
|
|
|
|
2015-03-17 14:27:20 +00:00
|
|
|
/**
|
|
|
|
* Unhandled error reporter. Dumps the error and its stacktrace to console,
|
|
|
|
* and reports error to the Browser Console.
|
|
|
|
*/
|
|
|
|
error.report = function(err) {
|
|
|
|
let msg = `Marionette threw an error: ${error.stringify(err)}`;
|
|
|
|
dump(msg + "\n");
|
|
|
|
if (Cu.reportError) {
|
|
|
|
Cu.reportError(msg);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Prettifies an instance of Error and its stacktrace to a string.
|
|
|
|
*/
|
|
|
|
error.stringify = function(err) {
|
|
|
|
try {
|
|
|
|
let s = err.toString();
|
|
|
|
if ("stack" in err) {
|
|
|
|
s += "\n" + err.stack;
|
|
|
|
}
|
|
|
|
return s;
|
|
|
|
} catch (e) {
|
|
|
|
return "<unprintable error>";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-09-26 16:12:01 +00:00
|
|
|
/**
|
2016-01-29 12:57:46 +00:00
|
|
|
* Marshal a WebDriverError prototype to a JSON dictionary.
|
2015-09-26 16:12:01 +00:00
|
|
|
*
|
2016-01-29 12:57:46 +00:00
|
|
|
* @param {WebDriverError} err
|
|
|
|
* Error to serialise.
|
2015-09-26 16:12:01 +00:00
|
|
|
*
|
|
|
|
* @return {Object.<string, Object>}
|
2016-01-29 12:57:46 +00:00
|
|
|
* JSON dictionary with the keys "error", "message", and "stacktrace".
|
|
|
|
* @throws {TypeError}
|
|
|
|
* If error type is not serialisable.
|
2015-09-26 16:12:01 +00:00
|
|
|
*/
|
|
|
|
error.toJson = function(err) {
|
2016-01-29 12:57:46 +00:00
|
|
|
if (!error.isWebDriverError(err)) {
|
|
|
|
throw new TypeError(`Unserialisable error type: ${err}`);
|
|
|
|
}
|
|
|
|
|
2015-09-26 16:12:01 +00:00
|
|
|
let json = {
|
|
|
|
error: err.status,
|
|
|
|
message: err.message || null,
|
|
|
|
stacktrace: err.stack || null,
|
|
|
|
};
|
|
|
|
return json;
|
|
|
|
};
|
|
|
|
|
2016-01-29 12:57:46 +00:00
|
|
|
/**
|
|
|
|
* Unmarshal a JSON dictionary to a WebDriverError prototype.
|
|
|
|
*
|
|
|
|
* @param {Object.<string, string>} json
|
|
|
|
* JSON dictionary with the keys "error", "message", and "stacktrace".
|
|
|
|
*
|
|
|
|
* @return {WebDriverError}
|
|
|
|
* Deserialised error prototype.
|
|
|
|
*/
|
|
|
|
error.fromJson = function(json) {
|
|
|
|
if (!statusLookup.has(json.error)) {
|
|
|
|
throw new TypeError(`Undeserialisable error type: ${json.error}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
let errCls = statusLookup.get(json.error);
|
|
|
|
let err = new errCls(json.message);
|
|
|
|
if ("stacktrace" in json) {
|
|
|
|
err.stack = json.stacktrace;
|
|
|
|
}
|
|
|
|
return err;
|
|
|
|
};
|
|
|
|
|
2015-03-17 14:27:20 +00:00
|
|
|
/**
|
|
|
|
* WebDriverError is the prototypal parent of all WebDriver errors.
|
|
|
|
* It should not be used directly, as it does not correspond to a real
|
|
|
|
* error in the specification.
|
|
|
|
*/
|
2016-02-03 18:43:37 +00:00
|
|
|
this.WebDriverError = function(msg, stack = undefined) {
|
2015-03-17 14:27:20 +00:00
|
|
|
Error.call(this, msg);
|
|
|
|
this.name = "WebDriverError";
|
|
|
|
this.message = msg;
|
2015-04-02 19:07:20 +00:00
|
|
|
this.status = "webdriver error";
|
2016-02-03 18:43:37 +00:00
|
|
|
this.stack = stack;
|
2015-03-17 14:27:20 +00:00
|
|
|
};
|
|
|
|
WebDriverError.prototype = Object.create(Error.prototype);
|
|
|
|
|
2015-04-15 11:18:00 +00:00
|
|
|
this.ElementNotAccessibleError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "ElementNotAccessibleError";
|
|
|
|
this.status = "element not accessible";
|
|
|
|
};
|
|
|
|
ElementNotAccessibleError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-03-17 14:27:20 +00:00
|
|
|
this.ElementNotVisibleError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "ElementNotVisibleError";
|
|
|
|
this.status = "element not visible";
|
|
|
|
};
|
|
|
|
ElementNotVisibleError.prototype = Object.create(WebDriverError.prototype);
|
2015-03-31 17:00:32 +00:00
|
|
|
|
2015-04-17 17:43:05 +00:00
|
|
|
this.InvalidArgumentError = function(msg) {
|
2015-04-02 14:16:00 +00:00
|
|
|
WebDriverError.call(this, msg);
|
2015-04-17 17:43:05 +00:00
|
|
|
this.name = "InvalidArgumentError";
|
|
|
|
this.status = "invalid argument";
|
2015-04-02 14:16:00 +00:00
|
|
|
};
|
2015-04-17 17:43:05 +00:00
|
|
|
InvalidArgumentError.prototype = Object.create(WebDriverError.prototype);
|
2015-04-02 14:16:00 +00:00
|
|
|
|
2015-03-31 17:00:32 +00:00
|
|
|
this.InvalidElementStateError = function(msg) {
|
2015-03-17 14:27:20 +00:00
|
|
|
WebDriverError.call(this, msg);
|
2015-03-31 17:00:32 +00:00
|
|
|
this.name = "InvalidElementStateError";
|
|
|
|
this.status = "invalid element state";
|
2015-03-17 14:27:20 +00:00
|
|
|
};
|
2015-03-31 17:00:32 +00:00
|
|
|
InvalidElementStateError.prototype = Object.create(WebDriverError.prototype);
|
2015-03-17 14:27:20 +00:00
|
|
|
|
2015-04-15 11:18:00 +00:00
|
|
|
this.InvalidSelectorError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "InvalidSelectorError";
|
|
|
|
this.status = "invalid selector";
|
|
|
|
};
|
|
|
|
InvalidSelectorError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-04-15 12:38:01 +00:00
|
|
|
this.InvalidSessionIdError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "InvalidSessionIdError";
|
|
|
|
this.status = "invalid session id";
|
|
|
|
};
|
|
|
|
InvalidSessionIdError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-03-17 14:27:20 +00:00
|
|
|
/**
|
|
|
|
* Creates an error message for a JavaScript error thrown during
|
|
|
|
* executeScript or executeAsyncScript.
|
|
|
|
*
|
|
|
|
* @param {Error} err
|
|
|
|
* An Error object passed to a catch block or a message.
|
2016-01-18 18:55:52 +00:00
|
|
|
* @param {string=} fnName
|
2015-03-17 14:27:20 +00:00
|
|
|
* The name of the function to use in the stack trace message
|
|
|
|
* (e.g. execute_script).
|
2016-01-18 18:55:52 +00:00
|
|
|
* @param {string=} file
|
2015-03-17 14:27:20 +00:00
|
|
|
* The filename of the test file containing the Marionette
|
|
|
|
* command that caused this error to occur.
|
2016-01-18 18:55:52 +00:00
|
|
|
* @param {number=} line
|
2015-03-17 14:27:20 +00:00
|
|
|
* The line number of the above test file.
|
|
|
|
* @param {string=} script
|
|
|
|
* The JS script being executed in text form.
|
|
|
|
*/
|
2016-01-18 18:55:52 +00:00
|
|
|
this.JavaScriptError = function(
|
|
|
|
err, fnName = null, file = null, line = null, script = null) {
|
2015-03-17 14:27:20 +00:00
|
|
|
let msg = String(err);
|
|
|
|
let trace = "";
|
|
|
|
|
2016-01-18 18:55:52 +00:00
|
|
|
if (fnName) {
|
|
|
|
trace += fnName;
|
|
|
|
if (file) {
|
|
|
|
trace += ` @${file}`;
|
|
|
|
if (line) {
|
|
|
|
trace += `, line ${line}`;
|
|
|
|
}
|
2015-03-17 14:27:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (typeof err == "object" && "name" in err && "stack" in err) {
|
|
|
|
let jsStack = err.stack.split("\n");
|
|
|
|
let match = jsStack[0].match(/:(\d+):\d+$/);
|
|
|
|
let jsLine = match ? parseInt(match[1]) : 0;
|
|
|
|
if (script) {
|
|
|
|
let src = script.split("\n")[jsLine];
|
|
|
|
trace += "\n" +
|
|
|
|
"inline javascript, line " + jsLine + "\n" +
|
|
|
|
"src: \"" + src + "\"";
|
|
|
|
}
|
2015-09-29 10:02:48 +00:00
|
|
|
trace += "\nStack:\n" + String(err.stack);
|
2015-03-17 14:27:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "JavaScriptError";
|
|
|
|
this.status = "javascript error";
|
|
|
|
this.stack = trace;
|
|
|
|
};
|
|
|
|
JavaScriptError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-03-31 17:00:32 +00:00
|
|
|
this.NoAlertOpenError = function(msg) {
|
2015-03-17 14:27:20 +00:00
|
|
|
WebDriverError.call(this, msg);
|
2015-03-31 17:00:32 +00:00
|
|
|
this.name = "NoAlertOpenError";
|
|
|
|
this.status = "no such alert";
|
2015-09-26 16:12:01 +00:00
|
|
|
};
|
2015-03-31 17:00:32 +00:00
|
|
|
NoAlertOpenError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
|
|
|
this.NoSuchElementError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "NoSuchElementError";
|
|
|
|
this.status = "no such element";
|
2015-03-17 14:27:20 +00:00
|
|
|
};
|
2015-03-31 17:00:32 +00:00
|
|
|
NoSuchElementError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
|
|
|
this.NoSuchFrameError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "NoSuchFrameError";
|
|
|
|
this.status = "no such frame";
|
|
|
|
};
|
|
|
|
NoSuchFrameError.prototype = Object.create(WebDriverError.prototype);
|
2015-03-17 14:27:20 +00:00
|
|
|
|
|
|
|
this.NoSuchWindowError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "NoSuchWindowError";
|
|
|
|
this.status = "no such window";
|
|
|
|
};
|
|
|
|
NoSuchWindowError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
|
|
|
this.ScriptTimeoutError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "ScriptTimeoutError";
|
|
|
|
this.status = "script timeout";
|
|
|
|
};
|
|
|
|
ScriptTimeoutError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
|
|
|
this.SessionNotCreatedError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "SessionNotCreatedError";
|
|
|
|
this.status = "session not created";
|
2015-04-15 11:18:00 +00:00
|
|
|
};
|
2015-03-17 14:27:20 +00:00
|
|
|
SessionNotCreatedError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-04-15 11:18:00 +00:00
|
|
|
this.StaleElementReferenceError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "StaleElementReferenceError";
|
|
|
|
this.status = "stale element reference";
|
|
|
|
};
|
|
|
|
StaleElementReferenceError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-03-31 17:00:32 +00:00
|
|
|
this.TimeoutError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "TimeoutError";
|
|
|
|
this.status = "timeout";
|
2015-03-17 14:27:20 +00:00
|
|
|
};
|
2015-03-31 17:00:32 +00:00
|
|
|
TimeoutError.prototype = Object.create(WebDriverError.prototype);
|
2015-03-17 14:27:20 +00:00
|
|
|
|
2015-04-20 12:53:51 +00:00
|
|
|
this.UnableToSetCookieError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "UnableToSetCookieError";
|
|
|
|
this.status = "unable to set cookie";
|
|
|
|
};
|
|
|
|
UnableToSetCookieError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
2015-03-31 17:00:32 +00:00
|
|
|
this.UnknownCommandError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "UnknownCommandError";
|
|
|
|
this.status = "unknown command";
|
2015-03-17 14:27:20 +00:00
|
|
|
};
|
2015-03-31 17:00:32 +00:00
|
|
|
UnknownCommandError.prototype = Object.create(WebDriverError.prototype);
|
|
|
|
|
|
|
|
this.UnknownError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "UnknownError";
|
|
|
|
this.status = "unknown error";
|
|
|
|
};
|
|
|
|
UnknownError.prototype = Object.create(WebDriverError.prototype);
|
2015-03-17 14:27:20 +00:00
|
|
|
|
|
|
|
this.UnsupportedOperationError = function(msg) {
|
|
|
|
WebDriverError.call(this, msg);
|
|
|
|
this.name = "UnsupportedOperationError";
|
|
|
|
this.status = "unsupported operation";
|
|
|
|
};
|
|
|
|
UnsupportedOperationError.prototype = Object.create(WebDriverError.prototype);
|
2016-01-29 12:57:46 +00:00
|
|
|
|
|
|
|
const nameLookup = new Map();
|
|
|
|
const statusLookup = new Map();
|
2016-02-03 18:41:37 +00:00
|
|
|
for (let s of ERRORS) {
|
2016-01-29 12:57:46 +00:00
|
|
|
let cls = this[s];
|
|
|
|
let inst = new cls();
|
|
|
|
nameLookup.set(inst.name, cls);
|
|
|
|
statusLookup.set(inst.status, cls);
|
|
|
|
};
|