2013-02-05 14:16:51 -05:00
|
|
|
require 'spec_helper'
|
|
|
|
|
|
|
|
describe EmailToken do
|
2013-02-25 11:42:20 -05:00
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it { should validate_presence_of :user_id }
|
|
|
|
it { should validate_presence_of :email }
|
|
|
|
it { should belong_to :user }
|
|
|
|
|
|
|
|
|
|
|
|
context '#create' do
|
2013-07-11 18:47:06 -04:00
|
|
|
let(:user) { Fabricate(:user, active: false) }
|
2013-02-05 14:16:51 -05:00
|
|
|
let!(:original_token) { user.email_tokens.first }
|
|
|
|
let!(:email_token) { user.email_tokens.create(email: 'bubblegum@adevnturetime.ooo') }
|
|
|
|
|
|
|
|
it 'should create the email token' do
|
|
|
|
email_token.should be_present
|
|
|
|
end
|
|
|
|
|
2014-07-14 10:16:24 -04:00
|
|
|
it 'should downcase the email' do
|
|
|
|
token = user.email_tokens.create(email: "UpperCaseSoWoW@GMail.com")
|
|
|
|
token.email.should == "uppercasesowow@gmail.com"
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
it 'is valid' do
|
|
|
|
email_token.should be_valid
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'has a token' do
|
|
|
|
email_token.token.should be_present
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not confirmed' do
|
|
|
|
email_token.should_not be_confirmed
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'is not expired' do
|
|
|
|
email_token.should_not be_expired
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the older token as expired' do
|
|
|
|
original_token.reload
|
|
|
|
original_token.should be_expired
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
context '#confirm' do
|
|
|
|
|
2013-07-11 18:47:06 -04:00
|
|
|
let(:user) { Fabricate(:user, active: false) }
|
2013-02-05 14:16:51 -05:00
|
|
|
let(:email_token) { user.email_tokens.first }
|
|
|
|
|
|
|
|
it 'returns nil with a nil token' do
|
|
|
|
EmailToken.confirm(nil).should be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil with a made up token' do
|
|
|
|
EmailToken.confirm(EmailToken.generate_token).should be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil unless the token is the right length' do
|
|
|
|
EmailToken.confirm('a').should be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'returns nil when a token is expired' do
|
|
|
|
email_token.update_column(:expired, true)
|
|
|
|
EmailToken.confirm(email_token.token).should be_blank
|
2013-02-25 11:42:20 -05: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-01 19:08:25 -04:00
|
|
|
SiteSetting.email_token_valid_hours = 10
|
|
|
|
email_token.update_column(:created_at, 11.hours.ago)
|
2013-02-05 14:16:51 -05:00
|
|
|
EmailToken.confirm(email_token.token).should be_blank
|
2013-02-25 11:42:20 -05:00
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
context 'taken email address' do
|
|
|
|
|
|
|
|
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
|
|
|
|
EmailToken.confirm(email_token.token).should be_blank
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'welcome message' do
|
|
|
|
it 'sends a welcome message when the user is activated' do
|
|
|
|
user = EmailToken.confirm(email_token.token)
|
|
|
|
user.send_welcome_message.should be_true
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when using the code a second time" do
|
|
|
|
|
|
|
|
it "doesn't send the welcome message" do
|
2014-07-01 19:08:25 -04:00
|
|
|
SiteSetting.email_token_grace_period_hours = 1
|
|
|
|
EmailToken.confirm(email_token.token)
|
2013-02-05 14:16:51 -05:00
|
|
|
user = EmailToken.confirm(email_token.token)
|
|
|
|
user.send_welcome_message.should be_false
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'success' do
|
|
|
|
|
|
|
|
let!(:confirmed_user) { EmailToken.confirm(email_token.token) }
|
|
|
|
|
|
|
|
it "returns the correct user" do
|
|
|
|
confirmed_user.should == user
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the user as active' do
|
|
|
|
confirmed_user.reload
|
|
|
|
confirmed_user.should be_active
|
|
|
|
end
|
|
|
|
|
|
|
|
it 'marks the token as confirmed' do
|
|
|
|
email_token.reload
|
|
|
|
email_token.should be_confirmed
|
|
|
|
end
|
|
|
|
|
2014-03-04 14:03:04 -05:00
|
|
|
it "can be confirmed again" do
|
|
|
|
EmailToken.stubs(:confirm_valid_after).returns(1.hour.ago)
|
|
|
|
|
|
|
|
EmailToken.confirm(email_token.token).should == user
|
|
|
|
|
|
|
|
# Unless `confirm_valid_after` has passed
|
|
|
|
EmailToken.stubs(:confirm_valid_after).returns(1.hour.from_now)
|
|
|
|
EmailToken.confirm(email_token.token).should be_blank
|
|
|
|
end
|
|
|
|
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
end
|