summaryrefslogtreecommitdiff
path: root/spec/features/users/password_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/features/users/password_spec.rb')
-rw-r--r--spec/features/users/password_spec.rb54
1 files changed, 54 insertions, 0 deletions
diff --git a/spec/features/users/password_spec.rb b/spec/features/users/password_spec.rb
index ccd383c8a15..59f49c791b6 100644
--- a/spec/features/users/password_spec.rb
+++ b/spec/features/users/password_spec.rb
@@ -3,6 +3,8 @@
require 'spec_helper'
RSpec.describe 'User password', feature_category: :system_access do
+ include EmailHelpers
+
describe 'send password reset' do
context 'when recaptcha is enabled' do
before do
@@ -26,5 +28,57 @@ RSpec.describe 'User password', feature_category: :system_access do
expect(page).not_to have_css('.g-recaptcha')
end
end
+
+ context 'when user has multiple emails' do
+ let_it_be(:user) { create(:user, email: 'primary@example.com') }
+ let_it_be(:verified_email) { create(:email, :confirmed, user: user, email: 'second@example.com') }
+ let_it_be(:unverified_email) { create(:email, user: user, email: 'unverified@example.com') }
+
+ let(:ff_enabled) { true }
+
+ before do
+ stub_feature_flags(password_reset_any_verified_email: ff_enabled)
+
+ perform_enqueued_jobs do
+ visit new_user_password_path
+ fill_in 'user_email', with: email
+ click_button 'Reset password'
+ end
+ end
+
+ context 'when user enters the primary email' do
+ let(:email) { user.email }
+
+ it 'send the email to the correct email address' do
+ expect(ActionMailer::Base.deliveries.first.to).to include(email)
+ end
+ end
+
+ context 'when user enters a secondary verified email' do
+ let(:email) { verified_email.email }
+
+ context 'when password_reset_any_verified_email FF is enabled' do
+ it 'send the email to the correct email address' do
+ expect(ActionMailer::Base.deliveries.first.to).to include(email)
+ end
+ end
+
+ context 'when password_reset_any_verified_email FF is not enabled' do
+ let(:ff_enabled) { false }
+
+ it 'does not send an email' do
+ expect(ActionMailer::Base.deliveries.count).to eq(0)
+ end
+ end
+ end
+
+ context 'when user enters an unverified email' do
+ let(:email) { unverified_email.email }
+
+ it 'does not send an email' do
+ expect(ActionMailer::Base.deliveries.count).to eq(0)
+ end
+ end
+ end
end
end