171 lines
4.2 KiB
JavaScript
171 lines
4.2 KiB
JavaScript
/* global QUnit, fixtures */
|
|
|
|
import sessionFixtures from 'fixtures/session-fixtures';
|
|
import siteFixtures from 'fixtures/site-fixtures';
|
|
import HeaderComponent from 'discourse/components/site-header';
|
|
import { forceMobile, resetMobile } from 'discourse/lib/mobile';
|
|
import { resetPluginApi } from 'discourse/lib/plugin-api';
|
|
import { clearCache as clearOutletCache, resetExtraClasses } from 'discourse/lib/plugin-connectors';
|
|
import { clearHTMLCache } from 'discourse/helpers/custom-html';
|
|
import { flushMap } from 'discourse/models/store';
|
|
import { clearRewrites } from 'discourse/lib/url';
|
|
|
|
|
|
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;
|
|
|
|
function acceptance(name, options) {
|
|
QUnit.module("Acceptance: " + name, {
|
|
beforeEach() {
|
|
resetMobile();
|
|
|
|
// For now don't do scrolling stuff in Test Mode
|
|
HeaderComponent.reopen({examineDockHeader: function() { }});
|
|
|
|
resetExtraClasses();
|
|
const siteJson = siteFixtures['site.json'].site;
|
|
if (options) {
|
|
if (options.beforeEach) {
|
|
options.beforeEach.call(this);
|
|
}
|
|
|
|
if (options.mobileView) {
|
|
forceMobile();
|
|
}
|
|
|
|
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)));
|
|
}
|
|
}
|
|
|
|
clearOutletCache();
|
|
clearHTMLCache();
|
|
resetPluginApi();
|
|
Discourse.reset();
|
|
},
|
|
|
|
afterEach() {
|
|
if (options && options.afterEach) {
|
|
options.afterEach.call(this);
|
|
}
|
|
flushMap();
|
|
Discourse.User.resetCurrent();
|
|
Discourse.Site.resetCurrent(Discourse.Site.create(jQuery.extend(true, {}, fixtures['site.json'].site)));
|
|
|
|
resetExtraClasses();
|
|
clearOutletCache();
|
|
clearHTMLCache();
|
|
resetPluginApi();
|
|
clearRewrites();
|
|
Discourse.reset();
|
|
}
|
|
});
|
|
}
|
|
|
|
function controllerFor(controller, model) {
|
|
controller = Discourse.__container__.lookup('controller:' + controller);
|
|
if (model) { controller.set('model', model ); }
|
|
return controller;
|
|
}
|
|
|
|
function asyncTestDiscourse(text, func) {
|
|
QUnit.test(text, function(assert) {
|
|
const done = assert.async();
|
|
Ember.run(() => {
|
|
func.call(this, assert);
|
|
done();
|
|
});
|
|
});
|
|
}
|
|
|
|
function fixture(selector) {
|
|
if (selector) {
|
|
return $("#qunit-fixture").find(selector);
|
|
}
|
|
return $("#qunit-fixture");
|
|
}
|
|
|
|
QUnit.assert.not = function(actual, message) {
|
|
this.pushResult({
|
|
result: !actual,
|
|
actual,
|
|
expected: !actual,
|
|
message
|
|
});
|
|
};
|
|
|
|
QUnit.assert.blank = function(actual, message) {
|
|
this.pushResult({
|
|
result: Ember.isEmpty(actual),
|
|
actual,
|
|
message
|
|
});
|
|
};
|
|
|
|
QUnit.assert.present = function(actual, message) {
|
|
this.pushResult({
|
|
result: !Ember.isEmpty(actual),
|
|
actual,
|
|
message
|
|
});
|
|
};
|
|
|
|
QUnit.assert.containsInstance = function(collection, klass, message) {
|
|
const result = klass.detectInstance(_.first(collection));
|
|
this.pushResult({
|
|
result,
|
|
message
|
|
});
|
|
};
|
|
|
|
function waitFor(assert, callback, timeout) {
|
|
timeout = timeout || 500;
|
|
|
|
const done = assert.async();
|
|
Ember.run.later(() => {
|
|
callback();
|
|
done();
|
|
}, timeout);
|
|
}
|
|
|
|
export { acceptance,
|
|
controllerFor,
|
|
asyncTestDiscourse,
|
|
fixture,
|
|
logIn,
|
|
currentUser,
|
|
waitFor };
|