2017-11-01 15:08:18 -04:00
|
|
|
/* global QUnit, resetSite */
|
2014-09-26 14:48:34 -04:00
|
|
|
|
2015-04-01 14:18:46 -04:00
|
|
|
import sessionFixtures from 'fixtures/session-fixtures';
|
2016-04-14 15:23:05 -04:00
|
|
|
import HeaderComponent from 'discourse/components/site-header';
|
2016-05-05 12:49:12 -04:00
|
|
|
import { forceMobile, resetMobile } from 'discourse/lib/mobile';
|
2016-11-22 15:36:18 -05:00
|
|
|
import { resetPluginApi } from 'discourse/lib/plugin-api';
|
2016-12-19 11:19:10 -05:00
|
|
|
import { clearCache as clearOutletCache, resetExtraClasses } from 'discourse/lib/plugin-connectors';
|
2016-11-23 12:57:50 -05:00
|
|
|
import { clearHTMLCache } from 'discourse/helpers/custom-html';
|
2016-12-19 11:19:10 -05:00
|
|
|
import { flushMap } from 'discourse/models/store';
|
2017-03-27 15:34:54 -04:00
|
|
|
import { clearRewrites } from 'discourse/lib/url';
|
2017-12-19 22:04:23 -05:00
|
|
|
import { initSearchData } from 'discourse/widgets/search-menu';
|
2016-12-19 11:19:10 -05:00
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function currentUser() {
|
2015-04-01 14:18:46 -04:00
|
|
|
return Discourse.User.create(sessionFixtures['/session/current.json'].current_user);
|
|
|
|
}
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function logIn() {
|
2015-04-01 14:18:46 -04:00
|
|
|
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;
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
let _pretenderCallbacks = [];
|
|
|
|
|
|
|
|
export function applyPretender(server, helper) {
|
|
|
|
_pretenderCallbacks.forEach(cb => cb(server, helper));
|
|
|
|
}
|
|
|
|
|
|
|
|
export function acceptance(name, options) {
|
|
|
|
options = options || {};
|
|
|
|
|
|
|
|
if (options.pretend) {
|
|
|
|
_pretenderCallbacks.push(options.pretend);
|
|
|
|
}
|
|
|
|
|
2017-07-05 14:14:30 -04:00
|
|
|
QUnit.module("Acceptance: " + name, {
|
2017-06-14 13:57:58 -04:00
|
|
|
beforeEach() {
|
2016-05-05 12:49:12 -04:00
|
|
|
resetMobile();
|
|
|
|
|
2015-04-01 14:18:46 -04:00
|
|
|
// For now don't do scrolling stuff in Test Mode
|
2017-06-13 15:59:48 -04:00
|
|
|
HeaderComponent.reopen({examineDockHeader: function() { }});
|
2015-04-01 14:18:46 -04:00
|
|
|
|
2016-12-19 11:19:10 -05:00
|
|
|
resetExtraClasses();
|
2017-09-13 11:54:49 -04:00
|
|
|
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) {
|
2017-11-01 15:08:18 -04:00
|
|
|
resetSite(Discourse.SiteSettings, options.site);
|
2014-07-31 13:24:07 -04:00
|
|
|
}
|
2014-09-26 14:48:34 -04:00
|
|
|
|
2016-11-23 12:57:50 -05:00
|
|
|
clearOutletCache();
|
|
|
|
clearHTMLCache();
|
2016-11-23 10:41:21 -05:00
|
|
|
resetPluginApi();
|
2014-07-30 18:56:01 -04:00
|
|
|
Discourse.reset();
|
2013-06-20 13:58:54 -04:00
|
|
|
},
|
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
afterEach() {
|
|
|
|
if (options && options.afterEach) {
|
|
|
|
options.afterEach.call(this);
|
2013-11-05 11:42:37 -05:00
|
|
|
}
|
2016-12-19 11:19:10 -05:00
|
|
|
flushMap();
|
2017-11-02 18:38:51 -04:00
|
|
|
localStorage.clear();
|
2015-04-30 16:04:58 -04:00
|
|
|
Discourse.User.resetCurrent();
|
2017-11-01 15:08:18 -04:00
|
|
|
resetSite(Discourse.SiteSettings);
|
2016-12-19 11:19:10 -05:00
|
|
|
resetExtraClasses();
|
2016-11-23 12:57:50 -05:00
|
|
|
clearOutletCache();
|
|
|
|
clearHTMLCache();
|
2016-11-22 15:36:18 -05:00
|
|
|
resetPluginApi();
|
2017-03-27 15:34:54 -04:00
|
|
|
clearRewrites();
|
2017-12-19 22:04:23 -05:00
|
|
|
initSearchData();
|
2013-06-20 13:58:54 -04:00
|
|
|
Discourse.reset();
|
|
|
|
}
|
|
|
|
});
|
2013-06-20 17:20:08 -04:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function controllerFor(controller, model) {
|
2014-03-11 02:30:49 -04:00
|
|
|
controller = Discourse.__container__.lookup('controller:' + controller);
|
2013-06-20 17:20:08 -04:00
|
|
|
if (model) { controller.set('model', model ); }
|
|
|
|
return controller;
|
2013-07-15 19:47:13 -04:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function asyncTestDiscourse(text, func) {
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.test(text, function(assert) {
|
|
|
|
const done = assert.async();
|
|
|
|
Ember.run(() => {
|
|
|
|
func.call(this, assert);
|
|
|
|
done();
|
2013-07-15 19:47:13 -04:00
|
|
|
});
|
|
|
|
});
|
2013-11-07 13:46:38 -05:00
|
|
|
}
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function fixture(selector) {
|
2013-11-07 13:46:38 -05:00
|
|
|
if (selector) {
|
|
|
|
return $("#qunit-fixture").find(selector);
|
|
|
|
}
|
|
|
|
return $("#qunit-fixture");
|
|
|
|
}
|
2015-02-06 13:25:48 -05:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.assert.not = function(actual, message) {
|
|
|
|
this.pushResult({
|
|
|
|
result: !actual,
|
|
|
|
actual,
|
|
|
|
expected: !actual,
|
|
|
|
message
|
|
|
|
});
|
|
|
|
};
|
2015-08-11 12:27:07 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
QUnit.assert.blank = function(actual, message) {
|
|
|
|
this.pushResult({
|
|
|
|
result: Ember.isEmpty(actual),
|
|
|
|
actual,
|
|
|
|
message
|
|
|
|
});
|
|
|
|
};
|
2015-08-11 12:27:07 -04:00
|
|
|
|
2017-06-14 13:57:58 -04:00
|
|
|
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
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2017-09-13 11:54:49 -04:00
|
|
|
export function waitFor(assert, callback, timeout) {
|
2016-10-06 15:18:05 -04:00
|
|
|
timeout = timeout || 500;
|
2017-06-14 13:57:58 -04:00
|
|
|
|
|
|
|
const done = assert.async();
|
2016-10-06 15:18:05 -04:00
|
|
|
Ember.run.later(() => {
|
|
|
|
callback();
|
2017-06-14 13:57:58 -04:00
|
|
|
done();
|
2016-10-06 15:18:05 -04:00
|
|
|
}, timeout);
|
|
|
|
}
|