dawarich/spec/requests/users/registrations_spec.rb
2025-11-19 20:56:46 +01:00

564 lines
18 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
RSpec.describe 'Users::Registrations', type: :request do
let(:family_owner) { create(:user) }
let(:family) { create(:family, creator: family_owner) }
let!(:owner_membership) { create(:family_membership, user: family_owner, family: family, role: :owner) }
let(:invitation) do
create(:family_invitation, family: family, invited_by: family_owner, email: 'invited@example.com')
end
describe 'Family Invitation Registration Flow' do
context 'when accessing registration with a valid invitation token' do
it 'shows family-focused registration page' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response).to have_http_status(:ok)
expect(response.body).to include("Join #{family.name}!")
expect(response.body).to include(family_owner.email)
expect(response.body).to include(invitation.email)
expect(response.body).to include('Create Account & Join Family')
end
it 'pre-fills email field with invitation email' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response.body).to include('value="invited@example.com"')
end
it 'makes email field readonly' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response.body).to include('readonly')
end
it 'hides normal login links' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response.body).not_to include('devise/shared/links')
end
end
context 'when accessing registration without invitation token' do
it 'shows normal registration page' do
get new_user_registration_path
expect(response).to have_http_status(:ok)
expect(response.body).to include('Almost there!')
expect(response.body).to include('control over your location data')
expect(response.body).not_to include('Join')
expect(response.body).to include('Sign up')
end
end
context 'when creating account with valid invitation token' do
let(:user_params) do
{
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
}
end
let(:request_params) do
{
user: user_params,
invitation_token: invitation.token
}
end
it 'creates user and accepts invitation automatically' do
expect do
post user_registration_path, params: request_params
end.to change(User, :count).by(1)
.and change { invitation.reload.status }.from('pending').to('accepted')
new_user = User.find_by(email: invitation.email)
expect(new_user).to be_present
expect(new_user.family).to eq(family)
expect(family.reload.members).to include(new_user)
end
it 'redirects to family page after successful registration' do
post user_registration_path, params: request_params
expect(response).to redirect_to(family_path)
end
it 'displays success message with family name' do
post user_registration_path, params: request_params
# Check that user got the default registration success message
# (family welcome message is set but may be overridden by Devise)
expect(flash[:notice]).to include('signed up successfully')
end
end
context 'when creating account with invalid invitation token' do
it 'creates user but does not accept any invitation' do
expect do
post user_registration_path, params: {
user: {
email: 'user@example.com',
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: 'invalid-token'
}
end.to change(User, :count).by(1)
new_user = User.find_by(email: 'user@example.com')
expect(new_user.family).to be_nil
end
end
context 'when invitation email does not match registration email' do
it 'creates user but does not accept invitation' do
expect do
post user_registration_path, params: {
user: {
email: 'different@example.com',
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
end.to change(User, :count).by(1)
new_user = User.find_by(email: 'different@example.com')
expect(new_user.family).to be_nil
expect(invitation.reload.status).to eq('pending')
end
end
end
describe 'Self-Hosted Mode' do
before do
allow(ENV).to receive(:[]).and_call_original
allow(ENV).to receive(:[]).with('SELF_HOSTED').and_return('true')
end
context 'when accessing registration without invitation token' do
it 'redirects to root with error message' do
get new_user_registration_path
expect(response).to redirect_to(root_path)
expect(flash[:alert]).to include('Registration is not available')
end
it 'prevents account creation' do
expect do
post user_registration_path, params: {
user: {
email: 'test@example.com',
password: 'password123',
password_confirmation: 'password123'
}
}
end.not_to change(User, :count)
expect(response).to redirect_to(root_path)
expect(flash[:alert]).to include('Registration is not available')
end
end
context 'when accessing registration with valid invitation token' do
it 'allows registration page access' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response).to have_http_status(:ok)
expect(response.body).to include("Join #{family.name}!")
end
it 'allows account creation' do
expect do
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
end.to change(User, :count).by(1)
expect(response).to redirect_to(family_path)
end
end
context 'when accessing registration with expired invitation' do
before { invitation.update!(expires_at: 1.day.ago) }
it 'redirects to root with error message' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response).to redirect_to(root_path)
expect(flash[:alert]).to include('Registration is not available')
end
end
context 'when accessing registration with cancelled invitation' do
before { invitation.update!(status: :cancelled) }
it 'redirects to root with error message' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response).to redirect_to(root_path)
expect(flash[:alert]).to include('Registration is not available')
end
end
end
describe 'Non-Self-Hosted Mode' do
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(false)
allow(DawarichSettings).to receive(:family_feature_enabled?).and_return(false)
end
context 'when accessing registration without invitation token' do
it 'allows normal registration' do
get new_user_registration_path
expect(response).to have_http_status(:ok)
expect(response.body).to include('Almost there!')
end
it 'allows account creation' do
unique_email = "newuser-#{Time.current.to_i}@example.com"
expect do
post user_registration_path, params: {
user: {
email: unique_email,
password: 'password123',
password_confirmation: 'password123'
}
}
end.to change(User, :count).by(1)
expect(response).to redirect_to(root_path)
expect(User.find_by(email: unique_email)).to be_present
end
end
end
describe 'Invitation Token Handling' do
it 'accepts invitation token from params' do
get new_user_registration_path(invitation_token: invitation.token)
expect(response.body).to include("Join #{invitation.family.name}!")
end
it 'accepts invitation token from nested user params' do
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
new_user = User.find_by(email: invitation.email)
expect(new_user.family).to eq(family)
end
it 'handles session-stored invitation token' do
# Simulate session storage by passing the token directly in params
# (In real usage, this would come from the session after redirect from invitation page)
get new_user_registration_path(invitation_token: invitation.token)
expect(response.body).to include("Join #{invitation.family.name}!")
end
end
describe 'Error Handling' do
context 'when invitation acceptance fails' do
before do
# Mock service failure
allow_any_instance_of(Families::AcceptInvitation).to receive(:call).and_return(false)
allow_any_instance_of(Families::AcceptInvitation).to receive(:error_message).and_return('Mock error')
end
it 'creates user but shows invitation error in flash' do
expect do
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
end.to change(User, :count).by(1)
expect(flash[:alert]).to include('Mock error')
end
end
context 'when invitation acceptance raises exception' do
before do
# Mock service exception
allow_any_instance_of(Families::AcceptInvitation).to receive(:call).and_raise(StandardError, 'Test error')
end
it 'creates user but shows generic error in flash' do
expect do
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
end.to change(User, :count).by(1)
expect(flash[:alert]).to include('there was an issue accepting the invitation')
end
end
end
describe 'Validation Error Handling' do
context 'when trying to register with an existing email' do
let!(:existing_user) { create(:user, email: 'existing@example.com') }
it 'renders the registration form with error message' do
post user_registration_path, params: {
user: {
email: existing_user.email,
password: 'password123',
password_confirmation: 'password123'
}
}
expect(response).to have_http_status(:unprocessable_content)
expect(response.body).to include('Email has already been taken')
expect(response.body).to include('error_explanation')
end
it 'does not create a new user' do
expect do
post user_registration_path, params: {
user: {
email: existing_user.email,
password: 'password123',
password_confirmation: 'password123'
}
}
end.not_to change(User, :count)
end
end
context 'when password is too short' do
it 'renders the registration form with error message' do
post user_registration_path, params: {
user: {
email: 'newuser@example.com',
password: 'short',
password_confirmation: 'short'
}
}
expect(response).to have_http_status(:unprocessable_content)
expect(response.body).to include('Password is too short')
expect(response.body).to include('error_explanation')
end
end
context 'when passwords do not match' do
it 'renders the registration form with error message' do
post user_registration_path, params: {
user: {
email: 'newuser@example.com',
password: 'password123',
password_confirmation: 'different123'
}
}
expect(response).to have_http_status(:unprocessable_content)
expect(response.body).to include("Password confirmation doesn")
expect(response.body).to include('error_explanation')
end
end
end
describe 'UTM Parameter Tracking' do
let(:utm_params) do
{
utm_source: 'google',
utm_medium: 'cpc',
utm_campaign: 'winter_2025',
utm_term: 'location_tracking',
utm_content: 'banner_ad'
}
end
context 'when self-hosted mode is disabled' do
before do
allow(DawarichSettings).to receive(:self_hosted?).and_return(false)
end
it 'captures UTM parameters from registration page URL' do
get new_user_registration_path, params: utm_params
expect(response).to have_http_status(:ok)
expect(session[:utm_source]).to eq('google')
expect(session[:utm_medium]).to eq('cpc')
expect(session[:utm_campaign]).to eq('winter_2025')
expect(session[:utm_term]).to eq('location_tracking')
expect(session[:utm_content]).to eq('banner_ad')
end
it 'stores UTM parameters in user record after registration' do
# Visit registration page with UTM params
get new_user_registration_path, params: utm_params
# Create account
unique_email = "utm-user-#{Time.current.to_i}@example.com"
post user_registration_path, params: {
user: {
email: unique_email,
password: 'password123',
password_confirmation: 'password123'
}
}
# Verify UTM params were saved to user
user = User.find_by(email: unique_email)
expect(user.utm_source).to eq('google')
expect(user.utm_medium).to eq('cpc')
expect(user.utm_campaign).to eq('winter_2025')
expect(user.utm_term).to eq('location_tracking')
expect(user.utm_content).to eq('banner_ad')
end
it 'clears UTM parameters from session after registration' do
# Visit registration page with UTM params
get new_user_registration_path, params: utm_params
# Create account
unique_email = "utm-cleanup-#{Time.current.to_i}@example.com"
post user_registration_path, params: {
user: {
email: unique_email,
password: 'password123',
password_confirmation: 'password123'
}
}
# Verify session was cleaned up
expect(session[:utm_source]).to be_nil
expect(session[:utm_medium]).to be_nil
expect(session[:utm_campaign]).to be_nil
expect(session[:utm_term]).to be_nil
expect(session[:utm_content]).to be_nil
end
it 'handles partial UTM parameters' do
partial_utm = { utm_source: 'twitter', utm_campaign: 'spring_promo' }
get new_user_registration_path, params: partial_utm
unique_email = "partial-utm-#{Time.current.to_i}@example.com"
post user_registration_path, params: {
user: {
email: unique_email,
password: 'password123',
password_confirmation: 'password123'
}
}
user = User.find_by(email: unique_email)
expect(user.utm_source).to eq('twitter')
expect(user.utm_campaign).to eq('spring_promo')
expect(user.utm_medium).to be_nil
expect(user.utm_term).to be_nil
expect(user.utm_content).to be_nil
end
it 'does not store empty UTM parameters' do
empty_utm = {
utm_source: '',
utm_medium: '',
utm_campaign: 'campaign_only'
}
get new_user_registration_path, params: empty_utm
unique_email = "empty-utm-#{Time.current.to_i}@example.com"
post user_registration_path, params: {
user: {
email: unique_email,
password: 'password123',
password_confirmation: 'password123'
}
}
user = User.find_by(email: unique_email)
expect(user.utm_source).to be_nil
expect(user.utm_medium).to be_nil
expect(user.utm_campaign).to eq('campaign_only')
end
it 'works with family invitations' do
get new_user_registration_path, params: utm_params.merge(invitation_token: invitation.token)
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
user = User.find_by(email: invitation.email)
expect(user.utm_source).to eq('google')
expect(user.utm_campaign).to eq('winter_2025')
expect(user.family).to eq(family)
end
end
context 'when self-hosted mode is enabled' do
before do
allow(ENV).to receive(:[]).and_call_original
allow(ENV).to receive(:[]).with('SELF_HOSTED').and_return('true')
end
it 'does not capture UTM parameters' do
# With valid invitation to allow registration in self-hosted mode
get new_user_registration_path, params: utm_params.merge(invitation_token: invitation.token)
expect(session[:utm_source]).to be_nil
expect(session[:utm_medium]).to be_nil
expect(session[:utm_campaign]).to be_nil
end
it 'does not store UTM parameters in user record' do
# With valid invitation to allow registration in self-hosted mode
get new_user_registration_path, params: utm_params.merge(invitation_token: invitation.token)
post user_registration_path, params: {
user: {
email: invitation.email,
password: 'password123',
password_confirmation: 'password123'
},
invitation_token: invitation.token
}
user = User.find_by(email: invitation.email)
expect(user.utm_source).to be_nil
expect(user.utm_medium).to be_nil
expect(user.utm_campaign).to be_nil
expect(user.utm_term).to be_nil
expect(user.utm_content).to be_nil
end
end
end
end