discourse/test/javascripts/helpers/qunit_helpers.js

54 lines
1.3 KiB
JavaScript
Raw Normal View History

2014-07-30 18:56:01 -04:00
/* global asyncTest */
/* exported integration, testController, controllerFor, asyncTestDiscourse, fixture */
function integration(name, options) {
module("Integration: " + name, {
2013-06-20 13:58:54 -04:00
setup: function() {
Ember.run(Discourse, Discourse.advanceReadiness);
if (options) {
if (options.setup) {
options.setup.call(this);
}
if (options.user) {
Discourse.User.resetCurrent(Discourse.User.create(options.user));
}
if (options.settings) {
Discourse.SiteSettings = jQuery.extend(true, Discourse.SiteSettings, options.settings);
}
}
2014-07-30 18:56:01 -04:00
Discourse.reset();
2013-06-20 13:58:54 -04:00
},
teardown: function() {
if (options && options.teardown) {
options.teardown.call(this);
}
2013-06-20 13:58:54 -04:00
Discourse.reset();
}
});
}
function controllerFor(controller, model) {
controller = Discourse.__container__.lookup('controller:' + controller);
if (model) { controller.set('model', model ); }
return controller;
2013-07-15 19:47:13 -04:00
}
function asyncTestDiscourse(text, func) {
asyncTest(text, function () {
var self = this;
2013-07-15 19:47:13 -04:00
Ember.run(function () {
func.call(self);
2013-07-15 19:47:13 -04:00
});
});
}
function fixture(selector) {
if (selector) {
return $("#qunit-fixture").find(selector);
}
return $("#qunit-fixture");
}