|
|
@ -12,17 +12,28 @@ define([
|
|
|
|
var assertions = 0;
|
|
|
|
var assertions = 0;
|
|
|
|
var failed = false;
|
|
|
|
var failed = false;
|
|
|
|
var failedOn;
|
|
|
|
var failedOn;
|
|
|
|
var failMessage;
|
|
|
|
var failMessages = [];
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var ASSERTS = [];
|
|
|
|
|
|
|
|
var runASSERTS = function () {
|
|
|
|
|
|
|
|
ASSERTS.forEach(function (f, index) {
|
|
|
|
|
|
|
|
f(index);
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var assert = function (test, msg) {
|
|
|
|
var assert = function (test, msg) {
|
|
|
|
|
|
|
|
ASSERTS.push(function (i) {
|
|
|
|
if (test()) {
|
|
|
|
if (test()) {
|
|
|
|
assertions++;
|
|
|
|
assertions++;
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
failed = true;
|
|
|
|
failed = true;
|
|
|
|
failedOn = assertions;
|
|
|
|
failedOn = assertions;
|
|
|
|
failMessage = msg;
|
|
|
|
failMessages.push({
|
|
|
|
throw new Error(msg || '');
|
|
|
|
test: i,
|
|
|
|
|
|
|
|
message: msg
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var $body = $('body');
|
|
|
|
var $body = $('body');
|
|
|
@ -69,6 +80,8 @@ define([
|
|
|
|
strungJSON(orig);
|
|
|
|
strungJSON(orig);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//assert(function () { }, "this is expected to fail");
|
|
|
|
|
|
|
|
|
|
|
|
/* TODO Test how browsers handle weird elements
|
|
|
|
/* TODO Test how browsers handle weird elements
|
|
|
|
like "_moz-resizing":"true"
|
|
|
|
like "_moz-resizing":"true"
|
|
|
|
|
|
|
|
|
|
|
@ -77,41 +90,63 @@ define([
|
|
|
|
Start with Hyperjson, turn it into a DOM and come back
|
|
|
|
Start with Hyperjson, turn it into a DOM and come back
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// report successes
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var swap = function (str, dict) {
|
|
|
|
var swap = function (str, dict) {
|
|
|
|
return str.replace(/\{\{(.*?)\}\}/g, function (all, key) {
|
|
|
|
return str.replace(/\{\{(.*?)\}\}/g, function (all, key) {
|
|
|
|
return dict[key] || all;
|
|
|
|
return typeof dict[key] !== 'undefined'? dict[key] : all;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var multiline = function (f) {
|
|
|
|
var multiline = function (f) {
|
|
|
|
var str;
|
|
|
|
var str;
|
|
|
|
f.toString().replace(/\/\*(.*)\*\\/g, function (all, out) {
|
|
|
|
f.toString().replace(/\/\*([\s\S]*)\*\//g, function (all, out) {
|
|
|
|
str = out;
|
|
|
|
str = out;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
return str;
|
|
|
|
return str || '';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
var formatFailures = function () {
|
|
|
|
|
|
|
|
var template = multiline(function () { /*
|
|
|
|
|
|
|
|
<pre class="error">
|
|
|
|
|
|
|
|
Failed on test number {{test}} with error:
|
|
|
|
|
|
|
|
> "{{message}}"
|
|
|
|
|
|
|
|
</pre>
|
|
|
|
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
*/});
|
|
|
|
|
|
|
|
return failMessages.map(function (obj) {
|
|
|
|
|
|
|
|
console.log(obj);
|
|
|
|
|
|
|
|
return swap(template, obj);
|
|
|
|
|
|
|
|
}).join("\n");
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
runASSERTS();
|
|
|
|
|
|
|
|
|
|
|
|
$("body").html(function (i, val) {
|
|
|
|
$("body").html(function (i, val) {
|
|
|
|
var dict = {
|
|
|
|
var dict = {
|
|
|
|
previous: val,
|
|
|
|
previous: val,
|
|
|
|
|
|
|
|
totalAssertions: ASSERTS.length,
|
|
|
|
passedAssertions: assertions,
|
|
|
|
passedAssertions: assertions,
|
|
|
|
plural: (assertions === 1? '' : 's'),
|
|
|
|
plural: (assertions === 1? '' : 's'),
|
|
|
|
|
|
|
|
failMessages: formatFailures()
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
var SUCCESS = swap(multiline(function(){/*
|
|
|
|
var SUCCESS = swap(multiline(function(){/*
|
|
|
|
<h3 class="report">{{passedAssertions}} test{{plural}} passed.</h3>
|
|
|
|
<div class="report">{{passedAssertions}} / {{totalAssertions}} test{{plural}} passed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{failMessages}}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{{previous}}
|
|
|
|
{{previous}}
|
|
|
|
*/}), dict);
|
|
|
|
*/}), dict);
|
|
|
|
|
|
|
|
|
|
|
|
var FAILURE = swap(
|
|
|
|
var report = SUCCESS;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return report;
|
|
|
|
return report;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
console.log(report);
|
|
|
|
var $report = $('.report');
|
|
|
|
|
|
|
|
$report.addClass(failed?'failure':'success');
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|
|
|
|