mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
69 lines
2.0 KiB
JavaScript
69 lines
2.0 KiB
JavaScript
(function () {
|
|
var handlesForRun = {};
|
|
var reportsForRun = {};
|
|
|
|
Meteor.publish(Meteor._ServerTestResultsSubscription, function (runId) {
|
|
var self = this;
|
|
if (!_.has(handlesForRun, runId))
|
|
handlesForRun[runId] = [self];
|
|
else
|
|
handlesForRun[runId].push(self);
|
|
self.onStop(function () {
|
|
handlesForRun[runId] = _.without(handlesForRun[runId], self);
|
|
});
|
|
if (_.has(reportsForRun, runId)) {
|
|
self.set(Meteor._ServerTestResultsCollection, runId,
|
|
reportsForRun[runId]);
|
|
}
|
|
self.complete();
|
|
self.flush();
|
|
});
|
|
|
|
Meteor.methods({
|
|
'tinytest/run': function (runId) {
|
|
this.unblock();
|
|
|
|
// XXX using private API === lame
|
|
var path = __meteor_bootstrap__.require('path');
|
|
var Future = __meteor_bootstrap__.require(path.join('fibers', 'future'));
|
|
var future = new Future;
|
|
|
|
reportsForRun[runId] = {};
|
|
|
|
var onReport = function (report) {
|
|
if (! Fiber.current) {
|
|
Meteor._debug("Trying to report a test not in a fiber! "+
|
|
"You probably forgot to wrap a callback in bindEnvironment.");
|
|
console.trace();
|
|
}
|
|
var dummyKey = Meteor.uuid();
|
|
var setObject = {};
|
|
setObject[dummyKey] = report;
|
|
_.each(handlesForRun[runId], function (handle) {
|
|
handle.set(Meteor._ServerTestResultsCollection, runId, setObject);
|
|
handle.flush();
|
|
});
|
|
// Save for future subscriptions.
|
|
reportsForRun[runId][dummyKey] = report;
|
|
};
|
|
|
|
var onComplete = function() {
|
|
future.ret();
|
|
};
|
|
|
|
Meteor._runTests(onReport, onComplete);
|
|
|
|
future.wait();
|
|
},
|
|
'tinytest/clearResults': function (runId) {
|
|
_.each(handlesForRun[runId], function (handle) {
|
|
// XXX this doesn't actually notify the client that it has been
|
|
// unsubscribed.
|
|
handle.stop();
|
|
});
|
|
delete handlesForRun[runId];
|
|
delete reportsForRun[runId];
|
|
}
|
|
});
|
|
}());
|