2019-04-30 10:27:42 +10:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2022-07-28 05:27:38 +03:00
|
|
|
RSpec.describe EmailToken do
|
2014-12-31 11:55:03 -03:00
|
|
|
it { is_expected.to validate_presence_of :user_id }
|
|
|
|
it { is_expected.to validate_presence_of :email }
|
|
|
|
it { is_expected.to belong_to :user }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2022-07-27 12:21:10 +02:00
|
|
|
describe '#create' do
|
2019-05-07 03:12:20 +00:00
|
|
|
fab!(:user) { Fabricate(:user, active: false) }
|
2013-02-05 14:16:51 -05:00
|
|
|
let!(:original_token) { user.email_tokens.first }
|
2021-11-25 09:34:39 +02:00
|
|
|
let!(:email_token) { Fabricate(:email_token, user: user, email: 'bubblegum@adventuretime.ooo') }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'should create the email token' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token).to be_present
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2014-07-14 10:16:24 -04:00
|
|
|
it 'should downcase the email' do
|
2021-11-25 09:34:39 +02:00
|
|
|
token = Fabricate(:email_token, user: user, email: "UpperCaseSoWoW@GMail.com")
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(token.email).to eq "uppercasesowow@gmail.com"
|
2014-07-14 10:16:24 -04:00
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it 'is valid' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token).to be_valid
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a token' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token.token).to be_present
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not confirmed' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token).to_not be_confirmed
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not expired' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token).to_not be_expired
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the older token as expired' do
|
|
|
|
original_token.reload
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(original_token).to be_expired
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 12:21:10 +02:00
|
|
|
describe '#confirm' do
|
2019-05-07 03:12:20 +00:00
|
|
|
fab!(:user) { Fabricate(:user, active: false) }
|
2021-11-25 09:34:39 +02:00
|
|
|
let!(:email_token) { Fabricate(:email_token, user: user) }
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'returns nil with a nil token' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(EmailToken.confirm(nil)).to be_blank
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2021-11-25 09:34:39 +02:00
|
|
|
it 'returns nil with an invalid token' do
|
|
|
|
expect(EmailToken.confirm("random token")).to be_blank
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil when a token is expired' do
|
|
|
|
email_token.update_column(:expired, true)
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(EmailToken.confirm(email_token.token)).to be_blank
|
2013-02-25 19:42:20 +03:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
it 'returns nil when a token is older than a specific time' do
|
2014-07-02 09:08:25 +10:00
|
|
|
SiteSetting.email_token_valid_hours = 10
|
|
|
|
email_token.update_column(:created_at, 11.hours.ago)
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(EmailToken.confirm(email_token.token)).to be_blank
|
2013-02-25 19:42:20 +03:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context 'with taken email address' do
|
2013-02-05 14:16:51 -05:00
|
|
|
before do
|
|
|
|
@other_user = Fabricate(:coding_horror)
|
|
|
|
email_token.update_attribute :email, @other_user.email
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil when the email has been taken since the token has been generated' do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(EmailToken.confirm(email_token.token)).to be_blank
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context 'with welcome message' do
|
2013-02-05 14:16:51 -05:00
|
|
|
it 'sends a welcome message when the user is activated' do
|
|
|
|
user = EmailToken.confirm(email_token.token)
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(user.send_welcome_message).to eq true
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context 'with success' do
|
2013-02-05 14:16:51 -05:00
|
|
|
let!(:confirmed_user) { EmailToken.confirm(email_token.token) }
|
|
|
|
|
|
|
|
it "returns the correct user" do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(confirmed_user).to eq user
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as active' do
|
|
|
|
confirmed_user.reload
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(confirmed_user).to be_active
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the token as confirmed' do
|
|
|
|
email_token.reload
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(email_token).to be_confirmed
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
2016-12-19 17:15:20 +11:00
|
|
|
it "will not confirm again" do
|
2014-12-31 11:55:03 -03:00
|
|
|
expect(EmailToken.confirm(email_token.token)).to be_blank
|
2014-03-04 14:03:04 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2015-06-26 01:21:26 +05:30
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context 'when confirms the token and redeems invite' do
|
2015-06-26 01:21:26 +05:30
|
|
|
before do
|
|
|
|
SiteSetting.must_approve_users = true
|
2019-04-03 12:04:05 -04:00
|
|
|
Jobs.run_immediately!
|
2015-06-26 01:21:26 +05:30
|
|
|
end
|
|
|
|
|
2020-06-09 20:49:32 +05:30
|
|
|
fab!(:invite) { Fabricate(:invite, email: 'test@example.com') }
|
2019-05-07 03:12:20 +00:00
|
|
|
fab!(:invited_user) { Fabricate(:user, active: false, email: invite.email) }
|
2022-07-19 22:25:01 +03:00
|
|
|
let!(:user_email_token) { Fabricate(:email_token, user: invited_user, scope: EmailToken.scopes[:signup]) }
|
|
|
|
let!(:confirmed_invited_user) { EmailToken.confirm(user_email_token.token, scope: EmailToken.scopes[:signup]) }
|
2015-06-26 01:21:26 +05:30
|
|
|
|
|
|
|
it "returns the correct user" do
|
|
|
|
expect(confirmed_invited_user).to eq invited_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as active' do
|
|
|
|
confirmed_invited_user.reload
|
|
|
|
expect(confirmed_invited_user).to be_active
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the token as confirmed' do
|
|
|
|
user_email_token.reload
|
|
|
|
expect(user_email_token).to be_confirmed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'redeems invite' do
|
|
|
|
invite.reload
|
|
|
|
expect(invite).to be_redeemed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as approved' do
|
|
|
|
expect(confirmed_invited_user).to be_approved
|
|
|
|
end
|
|
|
|
end
|
2022-07-19 22:25:01 +03:00
|
|
|
|
2022-07-27 18:14:14 +02:00
|
|
|
context 'when does not redeem the invite if token is password_reset' do
|
2022-07-19 22:25:01 +03:00
|
|
|
before do
|
|
|
|
SiteSetting.must_approve_users = true
|
|
|
|
Jobs.run_immediately!
|
|
|
|
end
|
|
|
|
|
|
|
|
fab!(:invite) { Fabricate(:invite, email: 'test@example.com') }
|
|
|
|
fab!(:invited_user) { Fabricate(:user, active: false, email: invite.email) }
|
|
|
|
let!(:user_email_token) { Fabricate(:email_token, user: invited_user, scope: EmailToken.scopes[:password_reset]) }
|
|
|
|
let!(:confirmed_invited_user) { EmailToken.confirm(user_email_token.token, scope: EmailToken.scopes[:password_reset]) }
|
|
|
|
|
|
|
|
it "returns the correct user" do
|
|
|
|
expect(confirmed_invited_user).to eq invited_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as active' do
|
|
|
|
confirmed_invited_user.reload
|
|
|
|
expect(confirmed_invited_user).to be_active
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the token as confirmed' do
|
|
|
|
user_email_token.reload
|
|
|
|
expect(user_email_token).to be_confirmed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not redeem invite' do
|
|
|
|
invite.reload
|
|
|
|
expect(invite).not_to be_redeemed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as approved' do
|
|
|
|
expect(confirmed_invited_user).to be_approved
|
|
|
|
end
|
|
|
|
end
|
2022-08-05 07:50:48 +05:30
|
|
|
|
|
|
|
context 'with expired invite record' do
|
|
|
|
before do
|
|
|
|
SiteSetting.must_approve_users = true
|
|
|
|
Jobs.run_immediately!
|
|
|
|
end
|
|
|
|
|
|
|
|
fab!(:invite) { Fabricate(:invite, email: 'test@example.com', expires_at: 1.day.ago) }
|
|
|
|
fab!(:invited_user) { Fabricate(:user, active: false, email: invite.email) }
|
|
|
|
let!(:user_email_token) { Fabricate(:email_token, user: invited_user, scope: EmailToken.scopes[:signup]) }
|
|
|
|
let!(:confirmed_invited_user) { EmailToken.confirm(user_email_token.token, scope: EmailToken.scopes[:signup]) }
|
|
|
|
|
|
|
|
it "returns the correct user" do
|
|
|
|
expect(confirmed_invited_user).to eq invited_user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as active' do
|
|
|
|
confirmed_invited_user.reload
|
|
|
|
expect(confirmed_invited_user).to be_active
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the token as confirmed' do
|
|
|
|
user_email_token.reload
|
|
|
|
expect(user_email_token).to be_confirmed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'does not redeem invite' do
|
|
|
|
invite.reload
|
|
|
|
expect(invite).not_to be_redeemed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as approved' do
|
|
|
|
expect(confirmed_invited_user).to be_approved
|
|
|
|
end
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
end
|