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.
89 lines
2.1 KiB
JavaScript
89 lines
2.1 KiB
JavaScript
import { test } from "qunit";
|
|
import {
|
|
acceptance,
|
|
updateCurrentUser,
|
|
} from "discourse/tests/helpers/qunit-helpers";
|
|
|
|
acceptance("Enforce Second Factor", {
|
|
loggedIn: true,
|
|
pretend(server, helper) {
|
|
server.post("/u/second_factors.json", () => {
|
|
return helper.response({
|
|
success: "OK",
|
|
password_required: "true",
|
|
});
|
|
});
|
|
},
|
|
});
|
|
|
|
test("as an admin", async function (assert) {
|
|
await visit("/u/eviltrout/preferences/second-factor");
|
|
this.siteSettings.enforce_second_factor = "staff";
|
|
|
|
await visit("/u/eviltrout/summary");
|
|
|
|
assert.equal(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it will not transition from second-factor preferences"
|
|
);
|
|
|
|
await click("#toggle-hamburger-menu");
|
|
await click("a.admin-link");
|
|
|
|
assert.equal(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it stays at second-factor preferences"
|
|
);
|
|
});
|
|
|
|
test("as a user", async function (assert) {
|
|
updateCurrentUser({ moderator: false, admin: false });
|
|
|
|
await visit("/u/eviltrout/preferences/second-factor");
|
|
this.siteSettings.enforce_second_factor = "all";
|
|
|
|
await visit("/u/eviltrout/summary");
|
|
|
|
assert.equal(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it will not transition from second-factor preferences"
|
|
);
|
|
|
|
await click("#toggle-hamburger-menu");
|
|
await click("a.about-link");
|
|
|
|
assert.equal(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it stays at second-factor preferences"
|
|
);
|
|
});
|
|
|
|
test("as an anonymous user", async function (assert) {
|
|
updateCurrentUser({ moderator: false, admin: false, is_anonymous: true });
|
|
|
|
await visit("/u/eviltrout/preferences/second-factor");
|
|
this.siteSettings.enforce_second_factor = "all";
|
|
this.siteSettings.allow_anonymous_posting = true;
|
|
|
|
await visit("/u/eviltrout/summary");
|
|
|
|
assert.notEqual(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it will transition from second-factor preferences"
|
|
);
|
|
|
|
await click("#toggle-hamburger-menu");
|
|
await click("a.about-link");
|
|
|
|
assert.notEqual(
|
|
find(".control-label").text(),
|
|
"Password",
|
|
"it is possible to navigate to other pages"
|
|
);
|
|
});
|