You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
76 lines
2.4 KiB
JavaScript
76 lines
2.4 KiB
JavaScript
define([], function () {
|
|
var out = function () { };
|
|
out.passed = out.failed = out;
|
|
if (window.location.hash.indexOf("?test=test") > -1) {
|
|
var cpt = window.__CRYPTPAD_TEST__ = {
|
|
data: [],
|
|
getData: function () {
|
|
var data = JSON.stringify(cpt.data);
|
|
cpt.data = [];
|
|
return data;
|
|
}
|
|
};
|
|
|
|
// jshint -W103
|
|
var errProto = (new Error()).__proto__;
|
|
var doLog = function (o) {
|
|
var s;
|
|
if (typeof(o) === 'object' && o.__proto__ === errProto) {
|
|
s = JSON.stringify([ o.message, o.stack ]);
|
|
} else if (typeof(s) !== 'string') {
|
|
try {
|
|
s = JSON.stringify(o);
|
|
} catch (e) {
|
|
s = String(o);
|
|
}
|
|
}
|
|
var out = [s];
|
|
try { throw new Error(); } catch (e) { out.push(e.stack.split('\n')[3]); }
|
|
cpt.data.push({ type: 'log', val: out.join('') });
|
|
};
|
|
|
|
window.console._error = window.console.error;
|
|
window.console._log = window.console.log;
|
|
window.console.error = function (e) { window.console._error(e); doLog(e); };
|
|
window.console.log = function (l) { window.console._log(l); doLog(l); };
|
|
|
|
window.onerror = function (msg, url, lineNo, columnNo, e) {
|
|
cpt.data.push({
|
|
type: 'report',
|
|
val: 'failed',
|
|
error: {
|
|
message: e ? e.message : msg,
|
|
stack: e ? e.stack : (url + ":" + lineNo)
|
|
}
|
|
});
|
|
};
|
|
require.onError = function (e) {
|
|
cpt.data.push({
|
|
type: 'report',
|
|
val: 'failed',
|
|
error: { message: e.message, stack: e.stack }
|
|
});
|
|
};
|
|
out = function (f) { f(); };
|
|
out.testing = true;
|
|
out.passed = function () {
|
|
cpt.data.push({
|
|
type: 'report',
|
|
val: 'passed'
|
|
});
|
|
};
|
|
out.failed = function (reason) {
|
|
var e;
|
|
try { throw new Error(reason); } catch (err) { e = err; }
|
|
cpt.data.push({
|
|
type: 'report',
|
|
val: 'failed',
|
|
error: { message: e.message, stack: e.stack }
|
|
});
|
|
};
|
|
} else {
|
|
out.testing = false;
|
|
}
|
|
return out;
|
|
});
|