2020-12-08 15:28:05 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
RSpec.describe ConfirmationsController do
|
|
|
|
include DeviseHelpers
|
|
|
|
|
|
|
|
before do
|
|
|
|
set_devise_mapping(context: @request)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe '#show' do
|
|
|
|
render_views
|
|
|
|
|
2021-09-04 01:27:46 +05:30
|
|
|
def perform_request
|
|
|
|
get :show, params: { confirmation_token: confirmation_token }
|
|
|
|
end
|
2020-12-08 15:28:05 +05:30
|
|
|
|
|
|
|
context 'user is already confirmed' do
|
|
|
|
let_it_be_with_reload(:user) { create(:user, :unconfirmed) }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
let(:confirmation_token) { user.confirmation_token }
|
|
|
|
|
|
|
|
before do
|
|
|
|
user.confirm
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders `new`' do
|
2021-09-04 01:27:46 +05:30
|
|
|
perform_request
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response).to render_template(:new)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays an error message' do
|
2021-09-04 01:27:46 +05:30
|
|
|
perform_request
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response.body).to include('Email was already confirmed, please try signing in')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display the email of the user' do
|
2021-09-04 01:27:46 +05:30
|
|
|
perform_request
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response.body).not_to include(user.email)
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'sets the username and caller_id in the context' do
|
|
|
|
expect(controller).to receive(:show).and_wrap_original do |m, *args|
|
|
|
|
m.call(*args)
|
|
|
|
|
|
|
|
expect(Gitlab::ApplicationContext.current)
|
|
|
|
.to include('meta.user' => user.username,
|
|
|
|
'meta.caller_id' => 'ConfirmationsController#show')
|
|
|
|
end
|
|
|
|
|
|
|
|
perform_request
|
|
|
|
end
|
2020-12-08 15:28:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'user accesses the link after the expiry of confirmation token has passed' do
|
|
|
|
let_it_be_with_reload(:user) { create(:user, :unconfirmed) }
|
2021-09-30 23:02:18 +05:30
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
let(:confirmation_token) { user.confirmation_token }
|
|
|
|
|
|
|
|
before do
|
|
|
|
allow(Devise).to receive(:confirm_within).and_return(1.day)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'renders `new`' do
|
2021-09-04 01:27:46 +05:30
|
|
|
travel_to(3.days.from_now) { perform_request }
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response).to render_template(:new)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays an error message' do
|
2021-09-04 01:27:46 +05:30
|
|
|
travel_to(3.days.from_now) { perform_request }
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response.body).to include('Email needs to be confirmed within 1 day, please request a new one below')
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not display the email of the user' do
|
2021-09-04 01:27:46 +05:30
|
|
|
travel_to(3.days.from_now) { perform_request }
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response.body).not_to include(user.email)
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'sets the username and caller_id in the context' do
|
|
|
|
expect(controller).to receive(:show).and_wrap_original do |m, *args|
|
|
|
|
m.call(*args)
|
|
|
|
|
|
|
|
expect(Gitlab::ApplicationContext.current)
|
|
|
|
.to include('meta.user' => user.username,
|
|
|
|
'meta.caller_id' => 'ConfirmationsController#show')
|
|
|
|
end
|
|
|
|
|
|
|
|
travel_to(3.days.from_now) { perform_request }
|
|
|
|
end
|
2020-12-08 15:28:05 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
context 'with an invalid confirmation token' do
|
|
|
|
let(:confirmation_token) { 'invalid_confirmation_token' }
|
|
|
|
|
|
|
|
it 'renders `new`' do
|
2021-09-04 01:27:46 +05:30
|
|
|
perform_request
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response).to render_template(:new)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays an error message' do
|
2021-09-04 01:27:46 +05:30
|
|
|
perform_request
|
|
|
|
|
2020-12-08 15:28:05 +05:30
|
|
|
expect(response.body).to include('Confirmation token is invalid')
|
|
|
|
end
|
2021-09-04 01:27:46 +05:30
|
|
|
|
|
|
|
it 'sets the the caller_id in the context' do
|
|
|
|
expect(controller).to receive(:show).and_wrap_original do |m, *args|
|
|
|
|
expect(Gitlab::ApplicationContext.current)
|
|
|
|
.to include('meta.caller_id' => 'ConfirmationsController#show')
|
|
|
|
|
|
|
|
m.call(*args)
|
|
|
|
end
|
|
|
|
|
|
|
|
perform_request
|
|
|
|
end
|
2020-12-08 15:28:05 +05:30
|
|
|
end
|
|
|
|
end
|
2021-12-11 22:18:48 +05:30
|
|
|
|
|
|
|
describe '#create' do
|
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
subject(:perform_request) { post(:create, params: { user: { email: user.email } }) }
|
|
|
|
|
|
|
|
context 'when reCAPTCHA is disabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(recaptcha_enabled: false)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'successfully sends password reset when reCAPTCHA is not solved' do
|
|
|
|
perform_request
|
|
|
|
|
|
|
|
expect(response).to redirect_to(dashboard_projects_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'when reCAPTCHA is enabled' do
|
|
|
|
before do
|
|
|
|
stub_application_setting(recaptcha_enabled: true)
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'displays an error when the reCAPTCHA is not solved' do
|
|
|
|
Recaptcha.configuration.skip_verify_env.delete('test')
|
|
|
|
|
|
|
|
perform_request
|
|
|
|
|
|
|
|
expect(response).to render_template(:new)
|
|
|
|
expect(flash[:alert]).to include 'There was an error with the reCAPTCHA. Please solve the reCAPTCHA again.'
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'successfully sends password reset when reCAPTCHA is solved' do
|
|
|
|
Recaptcha.configuration.skip_verify_env << 'test'
|
|
|
|
|
|
|
|
perform_request
|
|
|
|
|
|
|
|
expect(response).to redirect_to(dashboard_projects_path)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2020-12-08 15:28:05 +05:30
|
|
|
end
|