mirror of
https://gitlab.com/gitlab-org/gitlab-foss.git
synced 2025-08-10 01:31:45 +00:00
85 lines
2.6 KiB
Ruby
85 lines
2.6 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'spec_helper'
|
|
|
|
RSpec.describe RegistrationsController, :with_current_organization, type: :request, feature_category: :system_access do
|
|
describe '#create' do
|
|
let_it_be(:user_attrs) { build_stubbed(:user).slice(:first_name, :last_name, :username, :email, :password) }
|
|
let(:expected_context) do
|
|
{ 'meta.caller_id' => 'RegistrationsController#create' }
|
|
end
|
|
|
|
subject(:request) { post user_registration_path, params: { user: user_attrs } }
|
|
|
|
it_behaves_like 'Base action controller'
|
|
it_behaves_like 'set_current_context'
|
|
|
|
context 'when email confirmation is required' do
|
|
before do
|
|
stub_application_setting_enum('email_confirmation_setting', 'hard')
|
|
stub_application_setting(require_admin_approval_after_user_signup: false)
|
|
end
|
|
|
|
it 'redirects to the `users_almost_there_path`', unless: Gitlab.ee? do
|
|
request
|
|
|
|
expect(response).to redirect_to(users_almost_there_path(email: user_attrs[:email]))
|
|
end
|
|
end
|
|
|
|
context 'with user_detail built' do
|
|
it 'creates the user_detail record' do
|
|
expect { request }.to change { UserDetail.count }.by(1)
|
|
end
|
|
end
|
|
|
|
describe 'email reuse check' do
|
|
context 'when new user\'s normalized email matches a banned user\'s normalized email' do
|
|
let(:tumbled_email) { 'person+inbox1@test.com' }
|
|
let(:normalized_email) { 'person@test.com' }
|
|
let(:user_attrs) { super().merge({ email: tumbled_email }) }
|
|
|
|
let!(:banned_user) { create(:user, :banned, email: normalized_email) }
|
|
|
|
before do
|
|
stub_application_setting(enforce_email_subaddress_restrictions: true)
|
|
end
|
|
|
|
it 'renders new action with correct error message', :aggregate_failures do
|
|
request
|
|
|
|
expect(response.body).to include(_('is not allowed. Please enter a different email address and try again.'))
|
|
expect(response).to render_template(:new)
|
|
end
|
|
|
|
context 'when enforce_email_subaddress_restrictions application setting is disabled' do
|
|
before do
|
|
stub_application_setting(enforce_email_subaddress_restrictions: false)
|
|
end
|
|
|
|
it 'does not re-render the form' do
|
|
request
|
|
|
|
expect(response).not_to render_template(:new)
|
|
end
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
describe '#destroy' do
|
|
let(:user) { create(:user) }
|
|
let(:expected_context) do
|
|
{ 'meta.caller_id' => 'RegistrationsController#destroy',
|
|
'meta.user' => user.username }
|
|
end
|
|
|
|
subject do
|
|
sign_in(user)
|
|
delete user_registration_path
|
|
end
|
|
|
|
include_examples 'set_current_context'
|
|
end
|
|
end
|