Skip to content

Commit

Permalink
Fix account confirmation flow not returning to app after captcha vali…
Browse files Browse the repository at this point in the history
…dation (mastodon#25057)
  • Loading branch information
ClearlyClaire authored and smiba committed Feb 17, 2024
1 parent ac3448a commit ae26b19
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
1 change: 1 addition & 0 deletions app/views/auth/confirmations/captcha.html.haml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
= render 'auth/shared/progress', stage: 'confirm'

= hidden_field_tag :confirmation_token, params[:confirmation_token]
= hidden_field_tag :redirect_to_app, params[:redirect_to_app]

%p.lead= t('auth.captcha_confirmation.hint_html')

Expand Down
35 changes: 35 additions & 0 deletions spec/features/captcha_spec.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# frozen_string_literal: true

require 'rails_helper'

describe 'email confirmation flow when captcha is enabled' do
let(:user) { Fabricate(:user, confirmed_at: nil, confirmation_token: 'foobar', created_by_application: client_app) }
let(:client_app) { nil }

before do
# rubocop:disable RSpec/AnyInstance -- easiest way to deal with that that I know of
allow_any_instance_of(Auth::ConfirmationsController).to receive(:captcha_enabled?).and_return(true)
allow_any_instance_of(Auth::ConfirmationsController).to receive(:check_captcha!).and_return(true)
allow_any_instance_of(Auth::ConfirmationsController).to receive(:render_captcha).and_return(nil)
# rubocop:enable RSpec/AnyInstance
end

context 'when the user signed up through an app' do
let(:client_app) { Fabricate(:application) }

it 'logs in' do
visit "/auth/confirmation?confirmation_token=#{user.confirmation_token}&redirect_to_app=true"

# It presents the user with a captcha form
expect(page).to have_title(I18n.t('auth.captcha_confirmation.title'))

# It does not confirm the user just yet
expect(user.reload.confirmed?).to be false

# It redirects to app and confirms user
click_on I18n.t('challenge.confirm')
expect(user.reload.confirmed?).to be true
expect(page).to have_current_path(/\A#{client_app.confirmation_redirect_uri}/, url: true)
end
end
end

0 comments on commit ae26b19

Please sign in to comment.