2015-10-11 05:41:23 -04:00
|
|
|
require 'rails_helper'
|
2013-02-05 14:16:51 -05:00
|
|
|
require 'system_message'
|
2013-04-16 16:56:18 -04:00
|
|
|
require 'topic_subtype'
|
2013-02-05 14:16:51 -05:00
|
|
|
|
|
|
|
describe SystemMessage do
|
|
|
|
|
|
|
|
context 'send' do
|
|
|
|
|
2019-03-13 06:34:47 -04:00
|
|
|
let(:admin) { Fabricate(:admin) }
|
|
|
|
let(:user) { Fabricate(:user) }
|
2016-01-10 00:46:11 -05:00
|
|
|
|
2019-03-13 06:34:47 -04:00
|
|
|
before do
|
2016-01-10 00:46:11 -05:00
|
|
|
SiteSetting.site_contact_username = admin.username
|
2019-03-13 06:34:47 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should create a post correctly' do
|
2016-01-10 00:46:11 -05:00
|
|
|
system_message = SystemMessage.new(user)
|
|
|
|
post = system_message.create(:welcome_invite)
|
|
|
|
topic = post.topic
|
|
|
|
|
2019-03-12 08:56:18 -04:00
|
|
|
expect(post.valid?).to eq(true)
|
2015-01-09 11:34:37 -05:00
|
|
|
expect(topic).to be_private_message
|
|
|
|
expect(topic).to be_valid
|
|
|
|
expect(topic.subtype).to eq(TopicSubtype.system_message)
|
|
|
|
expect(topic.allowed_users.include?(user)).to eq(true)
|
2016-01-10 00:46:11 -05:00
|
|
|
expect(topic.allowed_users.include?(admin)).to eq(true)
|
|
|
|
|
|
|
|
expect(UserArchivedMessage.where(user_id: admin.id, topic_id: topic.id).length).to eq(1)
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
2019-03-13 06:34:47 -04:00
|
|
|
|
|
|
|
it 'should allow site_contact_group_name' do
|
|
|
|
group = Fabricate(:group)
|
|
|
|
SiteSetting.site_contact_group_name = group.name
|
|
|
|
|
|
|
|
post = SystemMessage.create(user, :welcome_invite)
|
|
|
|
expect(post.topic.allowed_groups).to contain_exactly(group)
|
|
|
|
|
|
|
|
group.update!(name: "anewname")
|
|
|
|
post = SystemMessage.create(user, :welcome_invite)
|
|
|
|
expect(post.topic.allowed_groups).to contain_exactly()
|
|
|
|
end
|
2013-02-05 14:16:51 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|