2023-05-22 17:38:05 +02:00
|
|
|
# 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
|
2023-11-07 10:15:30 +01:00
|
|
|
allow(Auth::ConfirmationsController).to receive(:new).and_return(stubbed_controller)
|
2023-05-22 17:38:05 +02:00
|
|
|
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 redirects to app and confirms user
|
2024-02-16 08:52:57 +01:00
|
|
|
expect { click_on I18n.t('challenge.confirm') }
|
|
|
|
.to change { user.reload.confirmed? }.from(false).to(true)
|
|
|
|
|
2023-05-22 17:38:05 +02:00
|
|
|
expect(page).to have_current_path(/\A#{client_app.confirmation_redirect_uri}/, url: true)
|
2023-10-25 23:33:44 +02:00
|
|
|
|
|
|
|
# Browsers will generally reload the original page upon redirection
|
|
|
|
# to external handlers, so test this as well
|
|
|
|
visit "/auth/confirmation?confirmation_token=#{user.confirmation_token}&redirect_to_app=true"
|
|
|
|
|
|
|
|
# It presents a page with a link to the app callback
|
2024-02-16 08:52:57 +01:00
|
|
|
expect(page)
|
|
|
|
.to have_content(I18n.t('auth.confirmations.registration_complete', domain: 'cb6e6126.ngrok.io'))
|
|
|
|
.and have_link(I18n.t('auth.confirmations.clicking_this_link'), href: client_app.confirmation_redirect_uri)
|
2023-05-22 17:38:05 +02:00
|
|
|
end
|
|
|
|
end
|
2023-11-07 10:15:30 +01:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def stubbed_controller
|
|
|
|
Auth::ConfirmationsController.new.tap do |controller|
|
|
|
|
allow(controller).to receive_messages(captcha_enabled?: true, check_captcha!: true, render_captcha: nil)
|
|
|
|
end
|
|
|
|
end
|
2023-05-22 17:38:05 +02:00
|
|
|
end
|