discourse/spec/models/invite_spec.rb

338 lines
9.8 KiB
Ruby
Raw Normal View History

2013-02-05 14:16:51 -05:00
require 'spec_helper'
describe Invite do
it { should validate_presence_of :email }
it { should validate_presence_of :invited_by_id }
let(:iceking) { 'iceking@adventuretime.ooo' }
2013-02-05 14:16:51 -05:00
context 'user validators' do
let(:coding_horror) { Fabricate(:coding_horror) }
let(:user) { Fabricate(:user) }
let(:invite) { Invite.create(email: user.email, invited_by: coding_horror) }
it "should not allow an invite with the same email as an existing user" do
invite.should_not be_valid
end
it "should not allow a user to invite themselves" do
invite.email_already_exists.should be_true
end
end
context '#create' do
context 'saved' do
subject { Fabricate(:invite) }
its(:invite_key) { should be_present }
its(:email_already_exists) { should be_false }
it 'should store a lower case version of the email' do
subject.email.should == iceking
2013-02-05 14:16:51 -05:00
end
end
context 'to a topic' do
let!(:topic) { Fabricate(:topic) }
let(:inviter) { topic.user }
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
context 'email' do
it 'enqueues a job to email the invite' do
Jobs.expects(:enqueue).with(:invite_email, has_key(:invite_id))
topic.invite_by_email(inviter, iceking)
2013-02-05 14:16:51 -05:00
end
end
context 'destroyed' do
it "can invite the same user after their invite was destroyed" do
invite = topic.invite_by_email(inviter, iceking)
2013-02-05 14:16:51 -05:00
invite.destroy
invite = topic.invite_by_email(inviter, iceking)
2013-02-05 14:16:51 -05:00
invite.should be_present
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
context 'after created' do
before do
@invite = topic.invite_by_email(inviter, iceking)
2013-02-05 14:16:51 -05:00
end
it 'belongs to the topic' do
topic.invites.should == [@invite]
@invite.topics.should == [topic]
end
context 'when added by another user' do
let(:coding_horror) { Fabricate(:coding_horror) }
let(:new_invite) { topic.invite_by_email(coding_horror, iceking) }
2013-02-05 14:16:51 -05:00
it 'returns a different invite' do
new_invite.should_not == @invite
new_invite.invite_key.should_not == @invite.invite_key
new_invite.topics.should == [topic]
end
2013-02-05 14:16:51 -05:00
end
context 'when adding a duplicate' do
it 'returns the original invite' do
topic.invite_by_email(inviter, 'iceking@adventuretime.ooo').should == @invite
topic.invite_by_email(inviter, 'iceking@ADVENTURETIME.ooo').should == @invite
topic.invite_by_email(inviter, 'ICEKING@adventuretime.ooo').should_not == @invite
2013-02-05 14:16:51 -05:00
end
it 'returns a new invite if the other has expired' do
SiteSetting.stubs(:invite_expiry_days).returns(1)
@invite.created_at = 2.days.ago
@invite.save
new_invite = topic.invite_by_email(inviter, 'iceking@adventuretime.ooo')
new_invite.should_not == @invite
new_invite.should_not be_expired
end
2013-02-05 14:16:51 -05:00
end
context 'when adding to another topic' do
let!(:another_topic) { Fabricate(:topic, user: topic.user) }
it 'should be the same invite' do
@new_invite = another_topic.invite_by_email(inviter, iceking)
2013-02-05 14:16:51 -05:00
@new_invite.should == @invite
another_topic.invites.should == [@invite]
@invite.topics.should =~ [topic, another_topic]
end
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
end
end
context 'an existing user' do
let(:topic) { Fabricate(:topic, archetype: Archetype.private_message) }
let(:coding_horror) { Fabricate(:coding_horror) }
let!(:invite) { topic.invite_by_email(topic.user, coding_horror.email) }
it "doesn't create an invite" do
invite.should be_blank
end
it "gives the user permission to access the topic" do
topic.allowed_users.include?(coding_horror).should be_true
end
end
context '.redeem' do
let(:invite) { Fabricate(:invite) }
it 'creates a notification for the invitee' do
lambda { invite.redeem }.should change(Notification, :count)
end
it 'wont redeem an expired invite' do
SiteSetting.expects(:invite_expiry_days).returns(10)
invite.update_column(:created_at, 20.days.ago)
invite.redeem.should be_blank
end
it 'wont redeem a deleted invite' do
invite.destroy
invite.redeem.should be_blank
end
it "won't redeem an invalidated invite" do
invite.invalidated_at = 1.day.ago
invite.redeem.should be_blank
end
context "when inviting to groups" do
it "add the user to the correct groups" do
group = Fabricate(:group)
invite.invited_groups.build(group_id: group.id)
invite.save
user = invite.redeem
user.groups.count.should == 1
end
end
context "invite trust levels" do
2013-02-05 14:16:51 -05:00
it "returns the trust level in default_invitee_trust_level" do
SiteSetting.stubs(:default_invitee_trust_level).returns(TrustLevel.levels[:leader])
invite.redeem.trust_level.should == TrustLevel.levels[:leader]
2013-02-05 14:16:51 -05:00
end
end
context 'inviting when must_approve_users? is enabled' do
it 'correctly activates accounts' do
SiteSetting.stubs(:must_approve_users).returns(true)
user = invite.redeem
user.approved?.should == true
end
end
2013-02-05 14:16:51 -05:00
context 'simple invite' do
2013-02-25 11:42:20 -05:00
2013-02-05 14:16:51 -05:00
let!(:user) { invite.redeem }
it 'works correctly' do
2013-02-05 14:16:51 -05:00
user.is_a?(User).should be_true
user.send_welcome_message.should be_true
user.trust_level.should == SiteSetting.default_invitee_trust_level
end
context 'after redeeming' do
before do
invite.reload
end
it 'works correctly' do
# has set the user_id attribute
2013-02-05 14:16:51 -05:00
invite.user.should == user
# returns true for redeemed
2013-02-05 14:16:51 -05:00
invite.should be_redeemed
end
2013-02-05 14:16:51 -05:00
context 'again' do
it 'will not redeem twice' do
invite.redeem.should == user
invite.redeem.send_welcome_message.should be_false
end
end
end
end
context 'invited to topics' do
let!(:topic) { Fabricate(:private_message_topic) }
2014-05-08 21:45:18 -04:00
let!(:invite) {
topic.invite(topic.user, 'jake@adventuretime.ooo')
}
2013-02-05 14:16:51 -05:00
context 'redeem topic invite' do
it 'adds the user to the topic_users' do
2014-05-08 21:45:18 -04:00
user = invite.redeem
topic.reload
2013-02-05 14:16:51 -05:00
topic.allowed_users.include?(user).should be_true
Guardian.new(user).can_see?(topic).should be_true
end
2014-05-08 21:45:18 -04:00
2013-02-05 14:16:51 -05:00
end
context 'invited by another user to the same topic' do
let(:coding_horror) { User.find_by(username: "CodingHorror") }
2013-02-05 14:16:51 -05:00
let!(:another_invite) { topic.invite(coding_horror, 'jake@adventuretime.ooo') }
let!(:user) { invite.redeem }
it 'adds the user to the topic_users' do
2014-05-08 21:45:18 -04:00
topic.reload
2013-02-05 14:16:51 -05:00
topic.allowed_users.include?(user).should be_true
end
end
context 'invited by another user to a different topic' do
let!(:another_invite) { another_topic.invite(coding_horror, 'jake@adventuretime.ooo') }
let!(:user) { invite.redeem }
2014-05-08 21:45:18 -04:00
let(:coding_horror) { User.find_by(username: "CodingHorror") }
let(:another_topic) { Fabricate(:topic, archetype: "private_message", user: coding_horror) }
2013-02-05 14:16:51 -05:00
it 'adds the user to the topic_users of the first topic' do
topic.allowed_users.include?(user).should be_true
another_topic.allowed_users.include?(user).should be_true
another_invite.reload
another_invite.should_not be_redeemed
end
context 'if they redeem the other invite afterwards' do
it 'returns the same user' do
2014-05-08 21:45:18 -04:00
result = another_invite.redeem
result.should == user
2013-02-05 14:16:51 -05:00
another_invite.reload
another_invite.should be_redeemed
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
end
2013-02-25 11:42:20 -05:00
end
2013-02-05 14:16:51 -05:00
end
describe '.find_all_invites_from' do
context 'with user that has invited' do
it 'returns invites' do
inviter = Fabricate(:user)
invite = Fabricate(:invite, invited_by: inviter)
invites = Invite.find_all_invites_from(inviter)
expect(invites).to include invite
end
end
context 'with user that has not invited' do
it 'does not return invites' do
user = Fabricate(:user)
Fabricate(:invite)
invites = Invite.find_all_invites_from(user)
expect(invites).to be_empty
end
end
end
describe '.find_redeemed_invites_from' do
it 'returns redeemed invites only' do
inviter = Fabricate(:user)
Fabricate(
:invite,
invited_by: inviter,
user_id: nil,
email: 'pending@example.com'
)
redeemed_invite = Fabricate(
:invite,
invited_by: inviter,
user_id: 123,
email: 'redeemed@example.com'
)
invites = Invite.find_redeemed_invites_from(inviter)
expect(invites).to have(1).items
expect(invites.first).to eq redeemed_invite
end
end
describe '.invalidate_for_email' do
let(:email) { 'invite.me@example.com' }
subject { described_class.invalidate_for_email(email) }
it 'returns nil if there is no invite for the given email' do
subject.should == nil
end
it 'sets the matching invite to be invalid' do
invite = Fabricate(:invite, invited_by: Fabricate(:user), user_id: nil, email: email)
subject.should == invite
subject.link_valid?.should == false
subject.should be_valid
end
it 'sets the matching invite to be invalid without being case-sensitive' do
invite = Fabricate(:invite, invited_by: Fabricate(:user), user_id: nil, email: 'invite.me2@Example.COM')
result = described_class.invalidate_for_email('invite.me2@EXAMPLE.com')
result.should == invite
result.link_valid?.should == false
result.should be_valid
end
end
2013-02-05 14:16:51 -05:00
end