jasmine/test/bootstrap.js

305 lines
8.1 KiB
JavaScript
Raw Normal View History

// Bootstrap Test Reporter function
var reporter = function () {
var total = 0;
var passes = 0;
var fails = 0;
var that = {
test: function (result, message) {
total++;
if (result) {
passes++;
iconElement = $('icons');
iconElement.appendChild(new Element('img', {src: '../images/accept.png'}));
}
else {
fails++;
2008-12-01 20:26:12 +00:00
var fails_report = $('fails');
fails_report.show();
iconElement = $('icons');
iconElement.appendChild(new Element('img', {src: '../images/exclamation.png'}));
var failMessages = $('fail_messages');
2008-12-01 20:26:12 +00:00
var newFail = new Element('p', {'class': 'fail'});
newFail.innerHTML = message;
failMessages.appendChild(newFail);
}
},
summary: function () {
2008-12-01 20:26:12 +00:00
summary = new Element('p', {'class': ((fails > 0) ? 'fail_in_summary' : '') });
summary.innerHTML = total + ' tests, ' + passes + ' passing, ' + fails + ' failed.';
var summaryElement = $('results_summary');
summaryElement.appendChild(summary);
summaryElement.show();
}
}
return that;
}();
var testMatchersComparisons = function () {
var expected = new Matchers(true);
reporter.test(expected.should_equal(true),
2008-12-01 20:26:12 +00:00
'expects_that(true).should_equal(true) returned false');
expected = new Matchers(false);
reporter.test(!(expected.should_equal(true)),
2008-12-01 20:26:12 +00:00
'expects_that(true).should_equal(true) returned true');
expected = new Matchers(true);
reporter.test(expected.should_not_equal(false),
2008-12-01 20:26:12 +00:00
'expects_that(true).should_not_equal(false) retruned false');
expected = new Matchers(true);
reporter.test(!(expected.should_not_equal(true)),
2008-12-01 20:26:12 +00:00
'expects_that(true).should_not_equal(false) retruned true');
}
var testMatchersReporting = function () {
var results = [];
var expected = new Matchers(true, results);
expected.should_equal(true);
expected.should_equal(false);
reporter.test((results.length == 2),
"Results array doesn't have 2 results");
reporter.test((results[0].passed == true),
2008-12-01 20:26:12 +00:00
"First spec didn't pass");
reporter.test((results[1].passed == false),
2008-12-01 20:26:12 +00:00
"Second spec did pass");
results = [];
var expected = new Matchers(false, results);
expected.should_equal(true);
reporter.test((results[0].message == 'Expected true but got false.'),
2008-12-01 20:26:12 +00:00
"Failed expectation didn't test the failure message");
results = [];
var expected = new Matchers(true, results);
expected.should_equal(true);
reporter.test((results[0].message == 'Passed.'),
2008-12-01 20:26:12 +00:00
"Passing expectation didn't test the passing message");
}
var testSpecs = function () {
var spec = it('new spec');
reporter.test((spec.description == 'new spec'),
2008-12-01 20:26:12 +00:00
"Spec did not have a description");
2008-12-01 23:15:34 +00:00
var another_spec = it('spec with an expectation').runs(function () {
var foo = 'bar';
this.expects_that(foo).should_equal('bar');
});
another_spec.execute();
2008-12-01 20:26:12 +00:00
another_spec.done = true;
reporter.test((another_spec.results.length == 1),
2008-12-01 20:26:12 +00:00
"Results aren't there after a spec was executed");
reporter.test((another_spec.results[0].passed == true),
2008-12-01 20:26:12 +00:00
"Results has a result, but it's true");
2008-12-01 23:15:34 +00:00
var yet_another_spec = it('spec with failing expectation').runs(function () {
var foo = 'bar';
this.expects_that(foo).should_equal('baz');
});
yet_another_spec.execute();
yet_another_spec.done = true;
reporter.test((yet_another_spec.results[0].passed == false),
2008-12-01 20:26:12 +00:00
"Expectation that failed, passed");
var yet_yet_another_spec = it('spec with multiple assertions').runs(function () {
var foo = 'bar';
var baz = 'quux';
this.expects_that(foo).should_equal('bar');
this.expects_that(baz).should_equal('quux');
});
yet_yet_another_spec.execute();
yet_yet_another_spec.done = true;
reporter.test((yet_yet_another_spec.results.length == 2),
2008-12-01 20:26:12 +00:00
"Spec doesn't support multiple expectations");
}
var testAsyncSpecs = function () {
var foo = 0;
2008-12-01 23:15:34 +00:00
var a_spec = it('simple queue test').
2008-12-01 20:26:12 +00:00
runs(function () {
foo++;
}).then(function() {
this.expects_that(foo).should_equal(1)
2008-12-01 20:26:12 +00:00
});
reporter.test(a_spec.queue.length === 2,
'Spec queue length is not 2');
foo = 0;
2008-12-01 23:15:34 +00:00
a_spec = it('spec w/ queued statments').
2008-12-01 20:26:12 +00:00
runs(function () {
foo++;
}).then(function() {
this.expects_that(foo).should_equal(1);
2008-12-01 20:26:12 +00:00
});
a_spec.execute();
reporter.test((a_spec.results.length === 1),
'No call to waits(): Spec queue did not run all functions');
reporter.test((a_spec.results[0].passed === true),
'No call to waits(): Queued expectation failed');
2008-12-01 20:26:12 +00:00
foo = 0;
2008-12-01 23:15:34 +00:00
a_spec = it('spec w/ queued statments').
2008-12-01 20:26:12 +00:00
runs(function () {
setTimeout(function() {
foo++
}, 500);
}).waits(1000).
then(function() {
this.expects_that(foo).should_equal(1);
});
2008-12-01 20:26:12 +00:00
var mockSuite = {
next: function() {
reporter.test((a_spec.results.length === 1),
'Calling waits(): Spec queue did not run all functions');
2008-12-01 20:26:12 +00:00
reporter.test((a_spec.results[0].passed === true),
'Calling waits(): Queued expectation failed');
}
};
a_spec.execute();
waitForDone(a_spec, mockSuite);
2008-12-01 23:15:34 +00:00
var bar = 0;
var another_spec = it('spec w/ queued statments').
runs(function () {
setTimeout(function() {
bar++;
}, 250);
}).
waits(500).
then(function () {
setTimeout(function() {
bar++;
}, 250);
}).
waits(1500).
then(function() {
this.expects_that(bar).should_equal(2);
});
mockSuite = {
next: function() {
2008-12-01 23:15:34 +00:00
reporter.test((another_spec.queue.length === 3),
'Calling 2 waits(): Spec queue was less than expected length');
reporter.test((another_spec.results.length === 1),
2008-12-01 23:15:34 +00:00
'Calling 2 waits(): Spec queue did not run all functions');
reporter.test((another_spec.results[0].passed === true),
2008-12-01 23:15:34 +00:00
'Calling 2 waits(): Queued expectation failed');
}
};
another_spec.execute();
waitForDone(another_spec, mockSuite);
var baz = 0;
var yet_another_spec = it('spec w/ async fail').
runs(function () {
setTimeout(function() {
baz++;
}, 250);
}).
waits(100).
then(function() {
this.expects_that(baz).should_equal(1);
});
mockSuite = {
next: function() {
2008-12-01 23:15:34 +00:00
reporter.test((yet_another_spec.queue.length === 2),
'Calling 2 waits(): Spec queue was less than expected length');
reporter.test((yet_another_spec.results.length === 1),
2008-12-01 23:15:34 +00:00
'Calling 2 waits(): Spec queue did not run all functions');
reporter.test((yet_another_spec.results[0].passed === false),
2008-12-01 23:15:34 +00:00
'Calling 2 waits(): Queued expectation failed');
}
};
2008-12-01 23:15:34 +00:00
yet_another_spec.execute();
waitForDone(yet_another_spec, mockSuite);
}
var testAsyncSpecsWithMockSuite = function () {
var bar = 0;
var another_spec = it('spec w/ queued statments').
runs(function () {
setTimeout(function() {
bar++;
}, 250);
}).
waits(500).
then(function () {
setTimeout(function() {
bar++;
}, 250);
}).
waits(1500).
then(function() {
this.expects_that(bar).should_equal(2);
});
var mockSuite = {
next: function () {
reporter.test((another_spec.queue.length === 3),
'Calling 2 waits(): Spec queue was less than expected length');
reporter.test((another_spec.results.length === 1),
'Calling 2 waits(): Spec queue did not run all functions');
reporter.test((another_spec.results[0].passed === true),
'Calling 2 waits(): Queued expectation failed');
}
};
another_spec.execute();
waitForDone(another_spec, mockSuite);
}
2008-12-01 23:15:34 +00:00
var waitForDone = function(spec, mockSuite) {
var id = setInterval(function () {
if (spec.finished) {
clearInterval(id);
mockSuite.next();
}
}, 150);
}
var runTests = function () {
$('spinner').show();
testMatchersComparisons();
testMatchersReporting();
testSpecs();
2008-12-01 20:26:12 +00:00
testAsyncSpecs();
testAsyncSpecsWithMockSuite();
setTimeout(function() {
$('spinner').hide();
reporter.summary();
2008-12-01 23:15:34 +00:00
}, 10000);
2008-12-01 20:26:12 +00:00
}
//it('should be an async test') {
// run(function() {setup}).and.wait(2000).then.expects_that(true).should_equal(true).and.expects_that
//}