mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 04:04:21 +08:00
63 lines
1.5 KiB
JavaScript
63 lines
1.5 KiB
JavaScript
/* global asyncTest */
|
|
|
|
import siteFixtures from 'fixtures/site_fixtures';
|
|
|
|
export function integration(name, options) {
|
|
module("Integration: " + name, {
|
|
setup: function() {
|
|
Ember.run(Discourse, Discourse.advanceReadiness);
|
|
|
|
var siteJson = siteFixtures['site.json'].site;
|
|
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);
|
|
}
|
|
|
|
if (options.site) {
|
|
Discourse.Site.resetCurrent(Discourse.Site.create(jQuery.extend(true, {}, siteJson, options.site)));
|
|
}
|
|
}
|
|
|
|
Discourse.reset();
|
|
},
|
|
|
|
teardown: function() {
|
|
if (options && options.teardown) {
|
|
options.teardown.call(this);
|
|
}
|
|
|
|
Discourse.reset();
|
|
}
|
|
});
|
|
}
|
|
|
|
export function controllerFor(controller, model) {
|
|
controller = Discourse.__container__.lookup('controller:' + controller);
|
|
if (model) { controller.set('model', model ); }
|
|
return controller;
|
|
}
|
|
|
|
export function asyncTestDiscourse(text, func) {
|
|
asyncTest(text, function () {
|
|
var self = this;
|
|
Ember.run(function () {
|
|
func.call(self);
|
|
});
|
|
});
|
|
}
|
|
|
|
export function fixture(selector) {
|
|
if (selector) {
|
|
return $("#qunit-fixture").find(selector);
|
|
}
|
|
return $("#qunit-fixture");
|
|
}
|