2019-10-12 21:52:04 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2019-12-04 20:38:33 +05:30
|
|
|
require 'spec_helper'
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2020-06-23 00:09:42 +05:30
|
|
|
RSpec.describe 'Profile > Emails' do
|
2018-03-17 18:26:18 +05:30
|
|
|
let(:user) { create(:user) }
|
|
|
|
|
|
|
|
before do
|
|
|
|
sign_in(user)
|
|
|
|
end
|
|
|
|
|
|
|
|
describe 'User adds an email' do
|
|
|
|
before do
|
|
|
|
visit profile_emails_path
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'saves the new email' do
|
2018-03-17 18:26:18 +05:30
|
|
|
fill_in('Email', with: 'my@email.com')
|
|
|
|
click_button('Add email address')
|
|
|
|
|
|
|
|
expect(page).to have_content('my@email.com Unverified')
|
|
|
|
expect(page).to have_content("#{user.email} Verified")
|
|
|
|
expect(page).to have_content('Resend confirmation email')
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'does not add a duplicate email' do
|
2018-03-17 18:26:18 +05:30
|
|
|
fill_in('Email', with: user.email)
|
|
|
|
click_button('Add email address')
|
|
|
|
|
|
|
|
email = user.emails.find_by(email: user.email)
|
|
|
|
expect(email).to be_nil
|
|
|
|
expect(page).to have_content('Email has already been taken')
|
|
|
|
end
|
2020-05-24 23:13:21 +05:30
|
|
|
|
|
|
|
it 'does not add an invalid email' do
|
|
|
|
fill_in('Email', with: 'test.@example.com')
|
|
|
|
click_button('Add email address')
|
|
|
|
|
|
|
|
email = user.emails.find_by(email: email)
|
|
|
|
expect(email).to be_nil
|
|
|
|
expect(page).to have_content('Email is invalid')
|
|
|
|
end
|
2018-03-17 18:26:18 +05:30
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'User removes email' do
|
2018-03-17 18:26:18 +05:30
|
|
|
user.emails.create(email: 'my@email.com')
|
|
|
|
visit profile_emails_path
|
|
|
|
expect(page).to have_content("my@email.com")
|
|
|
|
|
|
|
|
click_link('Remove')
|
|
|
|
expect(page).not_to have_content("my@email.com")
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'User confirms email' do
|
2018-03-17 18:26:18 +05:30
|
|
|
email = user.emails.create(email: 'my@email.com')
|
|
|
|
visit profile_emails_path
|
|
|
|
expect(page).to have_content("#{email.email} Unverified")
|
|
|
|
|
|
|
|
email.confirm
|
|
|
|
expect(email.confirmed?).to be_truthy
|
|
|
|
|
|
|
|
visit profile_emails_path
|
|
|
|
expect(page).to have_content("#{email.email} Verified")
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'User re-sends confirmation email' do
|
2018-03-17 18:26:18 +05:30
|
|
|
email = user.emails.create(email: 'my@email.com')
|
|
|
|
visit profile_emails_path
|
|
|
|
|
2020-05-24 23:13:21 +05:30
|
|
|
expect { click_link("Resend confirmation email") }.to have_enqueued_job.on_queue('mailers')
|
2018-03-17 18:26:18 +05:30
|
|
|
expect(page).to have_content("Confirmation email sent to #{email.email}")
|
|
|
|
end
|
|
|
|
|
2018-11-08 19:23:39 +05:30
|
|
|
it 'old unconfirmed emails show Send Confirmation button' do
|
2018-03-17 18:26:18 +05:30
|
|
|
email = user.emails.create(email: 'my@email.com')
|
|
|
|
email.update_attribute(:confirmation_sent_at, nil)
|
|
|
|
visit profile_emails_path
|
|
|
|
|
|
|
|
expect(page).not_to have_content('Resend confirmation email')
|
|
|
|
expect(page).to have_content('Send confirmation email')
|
|
|
|
end
|
|
|
|
end
|