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.
48 lines
1.6 KiB
JavaScript
48 lines
1.6 KiB
JavaScript
import { test } from "qunit";
|
|
import {
|
|
acceptance,
|
|
updateCurrentUser,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Topic - Admin Menu Anonymous Users", { loggedIn: false });
|
|
|
|
test("Enter as a regular user", async (assert) => {
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
assert.ok(
|
|
!exists(".toggle-admin-menu"),
|
|
"The admin menu button was not rendered"
|
|
);
|
|
});
|
|
|
|
acceptance("Topic - Admin Menu", { loggedIn: true });
|
|
|
|
test("Enter as a user with group moderator permissions", async (assert) => {
|
|
updateCurrentUser({ moderator: false, admin: false, trust_level: 1 });
|
|
|
|
await visit("/t/topic-for-group-moderators/2480");
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
assert.ok(exists(".toggle-admin-menu"), "The admin menu button was rendered");
|
|
});
|
|
|
|
test("Enter as a user with moderator and admin permissions", async (assert) => {
|
|
updateCurrentUser({ moderator: true, admin: true, trust_level: 4 });
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
assert.ok(exists(".toggle-admin-menu"), "The admin menu button was rendered");
|
|
});
|
|
|
|
test("Toggle the menu as admin focuses the first item", async (assert) => {
|
|
updateCurrentUser({ admin: true });
|
|
|
|
await visit("/t/internationalization-localization/280");
|
|
assert.ok(exists("#topic"), "The topic was rendered");
|
|
await click(".toggle-admin-menu");
|
|
|
|
assert.equal(
|
|
document.activeElement,
|
|
document.querySelector(".topic-admin-multi-select > button")
|
|
);
|
|
});
|