mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 18:46:50 +08:00
105 lines
2.8 KiB
JavaScript
105 lines
2.8 KiB
JavaScript
/* global asyncTest */
|
|
|
|
import sessionFixtures from 'fixtures/session-fixtures';
|
|
import siteFixtures from 'fixtures/site_fixtures';
|
|
import HeaderView from 'discourse/views/header';
|
|
|
|
function currentUser() {
|
|
return Discourse.User.create(sessionFixtures['/session/current.json'].current_user);
|
|
}
|
|
|
|
function logIn() {
|
|
Discourse.User.resetCurrent(currentUser());
|
|
}
|
|
|
|
const Plugin = $.fn.modal;
|
|
const Modal = Plugin.Constructor;
|
|
|
|
function AcceptanceModal(option, _relatedTarget) {
|
|
return this.each(function () {
|
|
var $this = $(this);
|
|
var data = $this.data('bs.modal');
|
|
var options = $.extend({}, Modal.DEFAULTS, $this.data(), typeof option === 'object' && option);
|
|
|
|
if (!data) $this.data('bs.modal', (data = new Modal(this, options)));
|
|
data.$body = $('#ember-testing');
|
|
|
|
if (typeof option === 'string') data[option](_relatedTarget);
|
|
else if (options.show) data.show(_relatedTarget);
|
|
});
|
|
}
|
|
|
|
window.bootbox.$body = $('#ember-testing');
|
|
$.fn.modal = AcceptanceModal;
|
|
|
|
var oldAvatar = Discourse.Utilities.avatarImg;
|
|
|
|
function acceptance(name, options) {
|
|
module("Acceptance: " + name, {
|
|
setup: function() {
|
|
// Don't render avatars in acceptance tests, it's faster and no 404s
|
|
Discourse.Utilities.avatarImg = () => "";
|
|
|
|
// For now don't do scrolling stuff in Test Mode
|
|
Ember.CloakedCollectionView.scrolled = Ember.K;
|
|
HeaderView.reopen({examineDockHeader: Ember.K});
|
|
|
|
var siteJson = siteFixtures['site.json'].site;
|
|
if (options) {
|
|
if (options.setup) {
|
|
options.setup.call(this);
|
|
}
|
|
|
|
if (options.loggedIn) {
|
|
logIn();
|
|
}
|
|
|
|
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.User.resetCurrent();
|
|
Discourse.Site.resetCurrent(Discourse.Site.create(fixtures['site.json'].site));
|
|
|
|
Discourse.Utilities.avatarImg = oldAvatar;
|
|
Discourse.reset();
|
|
}
|
|
});
|
|
}
|
|
|
|
function controllerFor(controller, model) {
|
|
controller = Discourse.__container__.lookup('controller:' + controller);
|
|
if (model) { controller.set('model', model ); }
|
|
return controller;
|
|
}
|
|
|
|
function asyncTestDiscourse(text, func) {
|
|
asyncTest(text, function () {
|
|
var self = this;
|
|
Ember.run(function () {
|
|
func.call(self);
|
|
});
|
|
});
|
|
}
|
|
|
|
function fixture(selector) {
|
|
if (selector) {
|
|
return $("#qunit-fixture").find(selector);
|
|
}
|
|
return $("#qunit-fixture");
|
|
}
|
|
|
|
export { acceptance, controllerFor, asyncTestDiscourse, fixture, logIn, currentUser };
|