DEV: Standardize session confirmation prompt (#24212)

Switches to using a dialog to confirm a session (i.e. sudo mode for
account changes where we want to be extra sure the current user is who
they say they are) to match what we do with passkeys.
This commit is contained in:
Penar Musaraj 2023-11-07 08:26:10 -08:00 committed by GitHub
parent dcaa719363
commit a1c1f7ce75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
14 changed files with 249 additions and 358 deletions

View File

@ -21,17 +21,12 @@ export default Controller.extend(CanCheckEmails, {
modal: service(), modal: service(),
loading: false, loading: false,
dirty: false, dirty: false,
resetPasswordLoading: false,
resetPasswordProgress: "",
password: null,
errorMessage: null, errorMessage: null,
newUsername: null, newUsername: null,
backupEnabled: alias("model.second_factor_backup_enabled"), backupEnabled: alias("model.second_factor_backup_enabled"),
secondFactorMethod: SECOND_FACTOR_METHODS.TOTP, secondFactorMethod: SECOND_FACTOR_METHODS.TOTP,
totps: null, totps: null,
loaded: false,
init() { init() {
this._super(...arguments); this._super(...arguments);
this.set("totps", []); this.set("totps", []);
@ -47,6 +42,11 @@ export default Controller.extend(CanCheckEmails, {
return user && user.enforcedSecondFactor; return user && user.enforcedSecondFactor;
}, },
@discourseComputed("totps", "security_keys")
hasSecondFactors(totps, security_keys) {
return totps.length > 0 || security_keys.length > 0;
},
@action @action
handleError(error) { handleError(error) {
if (error.jqXHR) { if (error.jqXHR) {
@ -81,7 +81,7 @@ export default Controller.extend(CanCheckEmails, {
this.set("loading", true); this.set("loading", true);
this.model this.model
.loadSecondFactorCodes(this.password) .loadSecondFactorCodes()
.then((response) => { .then((response) => {
if (response.error) { if (response.error) {
this.set("errorMessage", response.error); this.set("errorMessage", response.error);
@ -90,17 +90,10 @@ export default Controller.extend(CanCheckEmails, {
this.setProperties({ this.setProperties({
errorMessage: null, errorMessage: null,
loaded: true,
totps: response.totps, totps: response.totps,
security_keys: response.security_keys, security_keys: response.security_keys,
password: null,
dirty: false, dirty: false,
}); });
this.set(
"model.second_factor_enabled",
(response.totps && response.totps.length > 0) ||
(response.security_keys && response.security_keys.length > 0)
);
}) })
.catch((e) => this.handleError(e)) .catch((e) => this.handleError(e))
.finally(() => this.set("loading", false)); .finally(() => this.set("loading", false));
@ -111,37 +104,7 @@ export default Controller.extend(CanCheckEmails, {
this.set("dirty", true); this.set("dirty", true);
}, },
@action
resetPassword(event) {
event?.preventDefault();
this.setProperties({
resetPasswordLoading: true,
resetPasswordProgress: "",
});
return this.model
.changePassword()
.then(() => {
this.set(
"resetPasswordProgress",
I18n.t("user.change_password.success")
);
})
.catch(popupAjaxError)
.finally(() => this.set("resetPasswordLoading", false));
},
actions: { actions: {
confirmPassword() {
if (!this.password) {
return;
}
this.markDirty();
this.loadSecondFactors();
this.set("password", null);
},
disableAllSecondFactors() { disableAllSecondFactors() {
if (this.loading) { if (this.loading) {
return; return;

View File

@ -2,6 +2,7 @@ import Controller from "@ember/controller";
import { action } from "@ember/object"; import { action } from "@ember/object";
import { gt } from "@ember/object/computed"; import { gt } from "@ember/object/computed";
import { inject as service } from "@ember/service"; import { inject as service } from "@ember/service";
import ConfirmSession from "discourse/components/dialog-messages/confirm-session";
import AuthTokenModal from "discourse/components/modal/auth-token"; import AuthTokenModal from "discourse/components/modal/auth-token";
import { ajax } from "discourse/lib/ajax"; import { ajax } from "discourse/lib/ajax";
import { popupAjaxError } from "discourse/lib/ajax-error"; import { popupAjaxError } from "discourse/lib/ajax-error";
@ -17,6 +18,8 @@ const DEFAULT_AUTH_TOKENS_COUNT = 2;
export default Controller.extend(CanCheckEmails, { export default Controller.extend(CanCheckEmails, {
modal: service(), modal: service(),
dialog: service(),
router: service(),
passwordProgress: null, passwordProgress: null,
subpageTitle: I18n.t("user.preferences_nav.security"), subpageTitle: I18n.t("user.preferences_nav.security"),
showAllAuthTokens: false, showAllAuthTokens: false,
@ -114,6 +117,27 @@ export default Controller.extend(CanCheckEmails, {
.catch(popupAjaxError); .catch(popupAjaxError);
}, },
@action
async manage2FA() {
try {
const trustedSession = await this.model.trustedSession();
if (!trustedSession.success) {
this.dialog.dialog({
title: I18n.t("user.confirm_access.title"),
type: "notice",
bodyComponent: ConfirmSession,
didConfirm: () =>
this.router.transitionTo("preferences.second-factor"),
});
} else {
await this.router.transitionTo("preferences.second-factor");
}
} catch (error) {
popupAjaxError(error);
}
},
actions: { actions: {
save() { save() {
this.set("saved", false); this.set("saved", false);

View File

@ -540,9 +540,8 @@ const User = RestModel.extend({
}); });
}, },
loadSecondFactorCodes(password) { loadSecondFactorCodes() {
return ajax("/u/second_factors.json", { return ajax("/u/second_factors.json", {
data: { password },
type: "POST", type: "POST",
}); });
}, },

View File

@ -5,6 +5,7 @@ import RestrictedUserRoute from "discourse/routes/restricted-user";
export default RestrictedUserRoute.extend({ export default RestrictedUserRoute.extend({
currentUser: service(), currentUser: service(),
siteSettings: service(), siteSettings: service(),
router: service(),
model() { model() {
return this.modelFor("user"); return this.modelFor("user");
@ -15,15 +16,15 @@ export default RestrictedUserRoute.extend({
controller.set("loading", true); controller.set("loading", true);
model model
.loadSecondFactorCodes("") .loadSecondFactorCodes()
.then((response) => { .then((response) => {
if (response.error) { if (response.error) {
controller.set("errorMessage", response.error); controller.set("errorMessage", response.error);
} else if (response.unconfirmed_session) {
this.router.transitionTo("preferences.security");
} else { } else {
controller.setProperties({ controller.setProperties({
errorMessage: null, errorMessage: null,
loaded: !response.password_required,
dirty: !!response.password_required,
totps: response.totps, totps: response.totps,
security_keys: response.security_keys, security_keys: response.security_keys,
}); });

View File

@ -19,194 +19,140 @@
<div class="alert alert-error">{{this.errorMessage}}</div> <div class="alert alert-error">{{this.errorMessage}}</div>
{{/if}} {{/if}}
{{#if this.loaded}} <div class="control-group totp">
<div class="control-group totp"> <div class="controls">
<div class="controls"> <h2>{{i18n "user.second_factor.totp.title"}}</h2>
<h2>{{i18n "user.second_factor.totp.title"}}</h2> {{#each this.totps as |totp|}}
{{#each this.totps as |totp|}}
<div class="second-factor-item row">
<div class="details">
{{#if totp.name}}
{{totp.name}}
{{else}}
{{i18n "user.second_factor.totp.default_name"}}
{{/if}}
</div>
{{#if this.isCurrentUser}}
<div class="actions">
<TokenBasedAuthDropdown
@totp={{totp}}
@editSecondFactor={{action "editSecondFactor"}}
@disableSingleSecondFactor={{action
"disableSingleSecondFactor"
}}
/>
</div>
{{/if}}
</div>
{{/each}}
<DButton
@action={{action "createTotp"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor.totp.add"
class="btn-default new-totp"
/>
</div>
</div>
<div class="control-group security-key">
<div class="controls">
<h2>{{i18n "user.second_factor.security_key.title"}}</h2>
{{#each this.security_keys as |security_key|}}
<div class="second-factor-item row">
<div class="details">
{{#if security_key.name}}
{{security_key.name}}
{{else}}
{{i18n "user.second_factor.security_key.default_name"}}
{{/if}}
</div>
{{#if this.isCurrentUser}}
<div class="actions">
<SecurityKeyDropdown
@securityKey={{security_key}}
@editSecurityKey={{action "editSecurityKey"}}
@disableSingleSecondFactor={{action
"disableSingleSecondFactor"
}}
/>
</div>
{{/if}}
</div>
{{/each}}
<DButton
@action={{action "createSecurityKey"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor.security_key.add"
class="btn-default new-security-key"
/>
</div>
</div>
<div class="control-group pref-second-factor-backup">
<div class="controls pref-second-factor-backup">
<h2>{{i18n "user.second_factor_backup.title"}}</h2>
<div class="second-factor-item row"> <div class="second-factor-item row">
{{#if this.model.second_factor_enabled}} <div class="details">
<div class="details"> {{#if totp.name}}
{{#if this.model.second_factor_backup_enabled}} {{totp.name}}
{{html-safe {{else}}
(i18n {{i18n "user.second_factor.totp.default_name"}}
"user.second_factor_backup.manage"
count=this.model.second_factor_remaining_backup_codes
)
}}
{{else}}
<DButton
@action={{action "editSecondFactorBackup"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor_backup.enable_long"
class="btn-default new-second-factor-backup"
/>
{{/if}}
</div>
{{#if
(and
this.model.second_factor_backup_enabled this.isCurrentUser
)
}}
<div class="actions">
<TwoFactorBackupDropdown
@secondFactorBackupEnabled={{this.model.second_factor_backup_enabled}}
@editSecondFactorBackup={{action
"editSecondFactorBackup"
}}
@disableSecondFactorBackup={{action
"disableSecondFactorBackup"
}}
/>
</div>
{{/if}} {{/if}}
</div>
{{else}} {{#if this.isCurrentUser}}
{{i18n "user.second_factor_backup.enable_prerequisites"}} <div class="actions">
<TokenBasedAuthDropdown
@totp={{totp}}
@editSecondFactor={{action "editSecondFactor"}}
@disableSingleSecondFactor={{action
"disableSingleSecondFactor"
}}
/>
</div>
{{/if}} {{/if}}
</div> </div>
</div> {{/each}}
<DButton
@action={{action "createTotp"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor.totp.add"
class="btn-default new-totp"
/>
</div> </div>
</div>
{{#if this.model.second_factor_enabled}} <div class="control-group security-key">
{{#unless this.showEnforcedNotice}} <div class="controls">
<div class="control-group pref-second-factor-disable-all"> <h2>{{i18n "user.second_factor.security_key.title"}}</h2>
<div class="controls -actions"> {{#each this.security_keys as |security_key|}}
<DButton <div class="second-factor-item row">
@icon="ban" <div class="details">
@action={{action "disableAllSecondFactors"}} {{#if security_key.name}}
@disabled={{this.loading}} {{security_key.name}}
@label="user.second_factor.disable_all" {{else}}
class="btn-danger" {{i18n "user.second_factor.security_key.default_name"}}
/> {{/if}}
<CancelLink
@route="preferences.security"
@args={{this.model.username}}
/>
</div> </div>
</div>
{{/unless}}
{{/if}}
{{else}}
<div class="control-group">
<label class="control-label">{{i18n "user.password.title"}}</label>
<div class="controls"> {{#if this.isCurrentUser}}
<div> <div class="actions">
<TextField <SecurityKeyDropdown
@value={{this.password}} @securityKey={{security_key}}
@id="password" @editSecurityKey={{action "editSecurityKey"}}
@type="password" @disableSingleSecondFactor={{action
@classNames="input-large" "disableSingleSecondFactor"
@autofocus="autofocus" }}
/> />
</div> </div>
<div class="instructions"> {{/if}}
{{i18n "user.second_factor.confirm_password_description"}}
</div> </div>
{{/each}}
<DButton
@action={{action "createSecurityKey"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor.security_key.add"
class="btn-default new-security-key"
/>
</div>
</div>
<div class="control-group pref-second-factor-backup">
<div class="controls pref-second-factor-backup">
<h2>{{i18n "user.second_factor_backup.title"}}</h2>
<div class="second-factor-item row">
{{#if this.model.second_factor_enabled}}
<div class="details">
{{#if this.model.second_factor_backup_enabled}}
{{html-safe
(i18n
"user.second_factor_backup.manage"
count=this.model.second_factor_remaining_backup_codes
)
}}
{{else}}
<DButton
@action={{action "editSecondFactorBackup"}}
@icon="plus"
@disabled={{this.loading}}
@label="user.second_factor_backup.enable_long"
class="btn-default new-second-factor-backup"
/>
{{/if}}
</div>
{{#if
(and this.model.second_factor_backup_enabled this.isCurrentUser)
}}
<div class="actions">
<TwoFactorBackupDropdown
@secondFactorBackupEnabled={{this.model.second_factor_backup_enabled}}
@editSecondFactorBackup={{action "editSecondFactorBackup"}}
@disableSecondFactorBackup={{action
"disableSecondFactorBackup"
}}
/>
</div>
{{/if}}
{{else}}
{{i18n "user.second_factor_backup.enable_prerequisites"}}
{{/if}}
</div> </div>
</div> </div>
</div>
<div class="control-group"> {{#if this.hasSecondFactors}}
<div class="controls -actions"> {{#unless this.showEnforcedNotice}}
<DButton <div class="control-group pref-second-factor-disable-all">
@action={{action "confirmPassword"}} <div class="controls -actions">
@disabled={{this.loading}} <DButton
@label="continue" @icon="ban"
type="submit" @action={{action "disableAllSecondFactors"}}
class="btn-primary" @disabled={{this.loading}}
/> @label="user.second_factor.disable_all"
class="btn-danger"
{{#unless this.showEnforcedNotice}} />
<CancelLink <CancelLink
@route="preferences.security" @route="preferences.security"
@args={{this.model.username}} @args={{this.model.username}}
/> />
{{/unless}} </div>
</div> </div>
<div class="controls" style="margin-top: 5px"> {{/unless}}
{{this.resetPasswordProgress}}
{{#unless this.resetPasswordLoading}}
<a
href
class="instructions"
{{on "click" this.resetPassword}}
>{{i18n "user.second_factor.forgot_password"}}</a>
{{/unless}}
</div>
</div>
{{/if}} {{/if}}
</form> </form>
</ConditionalLoadingSpinner> </ConditionalLoadingSpinner>

View File

@ -19,28 +19,26 @@
<UserPreferences::UserPasskeys @model={{@model}} /> <UserPreferences::UserPasskeys @model={{@model}} />
{{/if}} {{/if}}
<div {{#if this.isCurrentUser}}
class="control-group pref-second-factor" <div
data-setting-name="user-second-factor" class="control-group pref-second-factor"
> data-setting-name="user-second-factor"
<label class="control-label">{{i18n "user.second_factor.title"}}</label> >
{{#unless this.model.second_factor_enabled}} <label class="control-label">{{i18n "user.second_factor.title"}}</label>
<div class="instructions"> <div class="instructions">
{{i18n "user.second_factor.short_description"}} {{i18n "user.second_factor.short_description"}}
</div> </div>
{{/unless}}
<div class="controls pref-second-factor"> <div class="controls pref-second-factor">
{{#if this.isCurrentUser}} <DButton
<LinkTo @action={{this.manage2FA}}
@route="preferences.second-factor" @icon="lock"
class="btn btn-default btn-second-factor" @label="user.second_factor.enable"
> class="btn-second-factor"
{{d-icon "lock"}} />
<span>{{i18n "user.second_factor.enable"}}</span> </div>
</LinkTo>
{{/if}}
</div> </div>
</div> {{/if}}
{{/if}} {{/if}}
{{#if this.canCheckEmails}} {{#if this.canCheckEmails}}

View File

@ -15,13 +15,13 @@ async function catchAbortedTransition() {
} }
} }
acceptance("Enforce Second Factor", function (needs) { acceptance("Enforce Second Factor for unconfirmed session", function (needs) {
needs.user(); needs.user();
needs.pretender((server, helper) => { needs.pretender((server, helper) => {
server.post("/u/second_factors.json", () => { server.post("/u/second_factors.json", () => {
return helper.response({ return helper.response({
success: "OK", success: "OK",
password_required: "true", unconfirmed_session: "true",
}); });
}); });
}); });
@ -30,22 +30,10 @@ acceptance("Enforce Second Factor", function (needs) {
await visit("/u/eviltrout/preferences/second-factor"); await visit("/u/eviltrout/preferences/second-factor");
this.siteSettings.enforce_second_factor = "staff"; this.siteSettings.enforce_second_factor = "staff";
await catchAbortedTransition();
assert.strictEqual( assert.strictEqual(
currentRouteName(), currentRouteName(),
"preferences.second-factor", "preferences.security",
"it will not transition from second-factor preferences" "it transitions to security preferences"
);
await click(
".sidebar-section[data-section-name='community'] .sidebar-section-link[data-link-name='admin']"
);
assert.strictEqual(
currentRouteName(),
"preferences.second-factor",
"it stays at second-factor preferences"
); );
}); });
@ -55,26 +43,10 @@ acceptance("Enforce Second Factor", function (needs) {
await visit("/u/eviltrout/preferences/second-factor"); await visit("/u/eviltrout/preferences/second-factor");
this.siteSettings.enforce_second_factor = "all"; this.siteSettings.enforce_second_factor = "all";
await catchAbortedTransition();
assert.strictEqual( assert.strictEqual(
currentRouteName(), currentRouteName(),
"preferences.second-factor", "preferences.security",
"it will not transition from second-factor preferences" "it will transition to security preferences"
);
await click(
".sidebar-section[data-section-name='community'] .sidebar-more-section-links-details-summary"
);
await click(
".sidebar-section[data-section-name='community'] .sidebar-section-link[data-link-name='about']"
);
assert.strictEqual(
currentRouteName(),
"preferences.second-factor",
"it stays at second-factor preferences"
); );
}); });

View File

@ -1,4 +1,4 @@
import { click, fillIn, visit } from "@ember/test-helpers"; import { click, currentRouteName, fillIn, visit } from "@ember/test-helpers";
import { test } from "qunit"; import { test } from "qunit";
import { import {
acceptance, acceptance,
@ -14,7 +14,6 @@ acceptance("User Preferences - Second Factor", function (needs) {
server.post("/u/second_factors.json", () => { server.post("/u/second_factors.json", () => {
return helper.response({ return helper.response({
success: "OK", success: "OK",
password_required: "true",
totps: [{ id: 1, name: "one of them" }], totps: [{ id: 1, name: "one of them" }],
security_keys: [{ id: 2, name: "key" }], security_keys: [{ id: 2, name: "key" }],
}); });
@ -57,12 +56,6 @@ acceptance("User Preferences - Second Factor", function (needs) {
test("second factor totp", async function (assert) { test("second factor totp", async function (assert) {
await visit("/u/eviltrout/preferences/second-factor"); await visit("/u/eviltrout/preferences/second-factor");
assert.ok(exists("#password"), "it has a password input");
await fillIn("#password", "secrets");
await click(".user-preferences .btn-primary");
assert.notOk(exists("#password"), "it hides the password input");
await click(".new-totp"); await click(".new-totp");
assert.ok(exists(".qr-code img"), "shows qr code image"); assert.ok(exists(".qr-code img"), "shows qr code image");
@ -82,12 +75,6 @@ acceptance("User Preferences - Second Factor", function (needs) {
test("second factor security keys", async function (assert) { test("second factor security keys", async function (assert) {
await visit("/u/eviltrout/preferences/second-factor"); await visit("/u/eviltrout/preferences/second-factor");
assert.ok(exists("#password"), "it has a password input");
await fillIn("#password", "secrets");
await click(".user-preferences .btn-primary");
assert.notOk(exists("#password"), "it hides the password input");
await click(".new-security-key"); await click(".new-security-key");
assert.ok(exists("#security-key-name"), "shows security key name input"); assert.ok(exists("#security-key-name"), "shows security key name input");
@ -109,10 +96,6 @@ acceptance("User Preferences - Second Factor", function (needs) {
updateCurrentUser({ moderator: false, admin: false, trust_level: 1 }); updateCurrentUser({ moderator: false, admin: false, trust_level: 1 });
await visit("/u/eviltrout/preferences/second-factor"); await visit("/u/eviltrout/preferences/second-factor");
assert.ok(exists("#password"), "it has a password input");
await fillIn("#password", "secrets");
await click(".user-preferences .btn-primary");
await click(".token-based-auth-dropdown .select-kit-header"); await click(".token-based-auth-dropdown .select-kit-header");
await click("li[data-name='Disable']"); await click("li[data-name='Disable']");
@ -147,3 +130,29 @@ acceptance("User Preferences - Second Factor", function (needs) {
); );
}); });
}); });
acceptance(
"User Preferences - Second Factor - Unconfirmed Session",
function (needs) {
needs.user();
needs.pretender((server, helper) => {
server.post("/u/second_factors.json", () => {
return helper.response({
success: "OK",
unconfirmed_session: "true",
});
});
});
test("redirects to security preferences", async function (assert) {
await visit("/u/eviltrout/preferences/second-factor");
assert.strictEqual(
currentRouteName(),
"preferences.security",
"it transitions to security preferences"
);
});
}
);

View File

@ -518,6 +518,23 @@
} }
.user-preferences { .user-preferences {
.form-vertical {
width: 500px;
max-width: 100%;
.control-group {
margin-bottom: 2em;
}
}
.category-selector,
.tag-chooser,
textarea,
input.user-selector,
.user-chooser {
width: 100%;
}
textarea { textarea {
height: 100px; height: 100px;
} }
@ -735,6 +752,10 @@
} }
} }
} }
.pref-second-factor {
margin-top: 0.5em;
}
} }
.paginated-topics-list { .paginated-topics-list {

View File

@ -107,10 +107,6 @@
} }
} }
.pref-second-factor {
margin-top: 10px;
}
.invite-controls .btn { .invite-controls .btn {
margin-right: 0px; margin-right: 0px;
} }
@ -252,21 +248,6 @@ table.user-invite-list {
margin-right: 0.2em; margin-right: 0.2em;
} }
.user-preferences {
.form-vertical {
width: 500px;
max-width: 100%;
}
.category-selector,
.tag-chooser,
textarea,
input.user-selector,
.user-chooser {
width: 100%;
}
}
.user-crawler { .user-crawler {
.username { .username {
margin-left: 5px; margin-left: 5px;

View File

@ -1533,12 +1533,6 @@ class UsersController < ApplicationController
raise Discourse::NotFound raise Discourse::NotFound
end end
if params[:password].present?
if !confirm_secure_session
return render json: failed_json.merge(error: I18n.t("login.incorrect_password"))
end
end
if secure_session_confirmed? if secure_session_confirmed?
totp_second_factors = totp_second_factors =
current_user current_user
@ -1555,7 +1549,7 @@ class UsersController < ApplicationController
render json: success_json.merge(totps: totp_second_factors, security_keys: security_keys) render json: success_json.merge(totps: totp_second_factors, security_keys: security_keys)
else else
render json: success_json.merge(password_required: true) render json: success_json.merge(unconfirmed_session: true)
end end
end end

View File

@ -1463,8 +1463,6 @@ en:
title: "Two-Factor Authentication" title: "Two-Factor Authentication"
enable: "Manage Two-Factor Authentication" enable: "Manage Two-Factor Authentication"
disable_all: "Disable All" disable_all: "Disable All"
forgot_password: "Forgot password?"
confirm_password_description: "Please confirm your password to continue"
name: "Name" name: "Name"
label: "Code" label: "Code"
rate_limit: "Please wait before trying another authentication code." rate_limit: "Please wait before trying another authentication code."

View File

@ -6322,55 +6322,40 @@ RSpec.describe UsersController do
SiteSetting.enable_discourse_connect = false SiteSetting.enable_discourse_connect = false
end end
context "when the password parameter is not provided" do context "when the session is unconfirmed" do
let(:password) { "" } it "returns unconfirmed session response" do
post "/u/second_factors.json"
before { post "/u/second_factors.json", params: { password: password } }
it "returns password required response" do
expect(response.status).to eq(200) expect(response.status).to eq(200)
response_body = response.parsed_body response_body = response.parsed_body
expect(response_body["password_required"]).to eq(true) expect(response_body["unconfirmed_session"]).to eq(true)
end end
end end
context "when the password is provided" do context "when the session is confirmed" do
fab!(:user) { Fabricate(:user, password: "8555039dd212cc66ec68") } fab!(:user) { Fabricate(:user, password: "acoolpassword") }
context "when the password is correct" do it "returns a list of enabled totps and security_key second factors" do
let(:password) { "8555039dd212cc66ec68" } totp_second_factor = Fabricate(:user_second_factor_totp, user: user)
security_key_second_factor =
it "returns a list of enabled totps and security_key second factors" do Fabricate(
totp_second_factor = Fabricate(:user_second_factor_totp, user: user) :user_security_key,
security_key_second_factor = user: user,
Fabricate( factor_type: UserSecurityKey.factor_types[:second_factor],
:user_security_key,
user: user,
factor_type: UserSecurityKey.factor_types[:second_factor],
)
post "/u/second_factors.json", params: { password: password }
expect(response.status).to eq(200)
response_body = response.parsed_body
expect(response_body["totps"].map { |second_factor| second_factor["id"] }).to include(
totp_second_factor.id,
) )
expect(
response_body["security_keys"].map { |second_factor| second_factor["id"] },
).to include(security_key_second_factor.id)
end
end
context "when the password is not correct" do post "/u/confirm-session.json", params: { password: "acoolpassword" }
let(:password) { "wrongpassword" }
it "returns the incorrect password response" do post "/u/second_factors.json"
post "/u/second_factors.json", params: { password: password }
response_body = response.parsed_body expect(response.status).to eq(200)
expect(response_body["error"]).to eq(I18n.t("login.incorrect_password")) response_body = response.parsed_body
end expect(response_body["totps"].map { |second_factor| second_factor["id"] }).to include(
totp_second_factor.id,
)
expect(
response_body["security_keys"].map { |second_factor| second_factor["id"] },
).to include(security_key_second_factor.id)
end end
end end
end end

View File

@ -9,10 +9,10 @@ module PageObjects
end end
def visit_second_factor(password) def visit_second_factor(password)
click_link(class: "btn-second-factor") click_button "Manage Two-Factor Authentication"
find(".second-factor input#password").fill_in(with: password) find(".dialog-body input#password").fill_in(with: password)
find(".second-factor .btn-primary").click find(".dialog-body .btn-primary").click
end end
end end
end end