We used many global functions to handle tests when they should be imported like other libraries in our application. This also gets us closer to the way Ember CLI prefers our tests to be laid out.
75 lines
2.4 KiB
JavaScript
75 lines
2.4 KiB
JavaScript
import EmberObject from "@ember/object";
|
|
import createStore from "discourse/tests/helpers/create-store";
|
|
import { autoLoadModules } from "discourse/initializers/auto-load-modules";
|
|
import TopicTrackingState from "discourse/models/topic-tracking-state";
|
|
import User from "discourse/models/user";
|
|
import Site from "discourse/models/site";
|
|
import Session from "discourse/models/session";
|
|
import { currentSettings } from "discourse/tests/helpers/site-settings";
|
|
import { test } from "qunit";
|
|
|
|
export default function (name, opts) {
|
|
opts = opts || {};
|
|
|
|
if (opts.skip) {
|
|
return;
|
|
}
|
|
|
|
test(name, function (assert) {
|
|
this.site = Site.current();
|
|
this.session = Session.current();
|
|
|
|
this.registry.register("site-settings:main", currentSettings(), {
|
|
instantiate: false,
|
|
});
|
|
this.registry.register("capabilities:main", EmberObject);
|
|
this.registry.register("site:main", this.site, { instantiate: false });
|
|
this.registry.register("session:main", this.session, {
|
|
instantiate: false,
|
|
});
|
|
this.registry.injection("component", "siteSettings", "site-settings:main");
|
|
this.registry.injection("component", "appEvents", "service:app-events");
|
|
this.registry.injection("component", "capabilities", "capabilities:main");
|
|
this.registry.injection("component", "site", "site:main");
|
|
this.registry.injection("component", "session", "session:main");
|
|
|
|
this.siteSettings = currentSettings();
|
|
autoLoadModules(this.container, this.registry);
|
|
|
|
const store = createStore();
|
|
if (!opts.anonymous) {
|
|
const currentUser = User.create({ username: "eviltrout" });
|
|
this.currentUser = currentUser;
|
|
this.registry.register("current-user:main", this.currentUser, {
|
|
instantiate: false,
|
|
});
|
|
this.registry.injection("component", "currentUser", "current-user:main");
|
|
this.registry.register(
|
|
"topic-tracking-state:main",
|
|
TopicTrackingState.create({ currentUser }),
|
|
{ instantiate: false }
|
|
);
|
|
}
|
|
|
|
this.registry.register("service:store", store, { instantiate: false });
|
|
|
|
if (opts.beforeEach) {
|
|
opts.beforeEach.call(this, store);
|
|
}
|
|
|
|
andThen(() => {
|
|
return this.render(opts.template);
|
|
});
|
|
|
|
andThen(() => {
|
|
return opts.test.call(this, assert);
|
|
}).finally(() => {
|
|
if (opts.afterEach) {
|
|
andThen(() => {
|
|
return opts.afterEach.call(opts);
|
|
});
|
|
}
|
|
});
|
|
});
|
|
}
|