discourse/spec/components/system_message_spec.rb
Sam Saffron 4ea21fa2d0 DEV: use #frozen_string_literal: true on all spec
This change both speeds up specs (less strings to allocate) and helps catch
cases where methods in Discourse are mutating inputs.

Overall we will be migrating everything to use #frozen_string_literal: true
it will take a while, but this is the first and safest move in this direction
2019-04-30 10:27:42 +10:00

47 lines
1.3 KiB
Ruby

# frozen_string_literal: true
require 'rails_helper'
require 'system_message'
require 'topic_subtype'
describe SystemMessage do
context 'send' do
let(:admin) { Fabricate(:admin) }
let(:user) { Fabricate(:user) }
before do
SiteSetting.site_contact_username = admin.username
end
it 'should create a post correctly' do
system_message = SystemMessage.new(user)
post = system_message.create(:welcome_invite)
topic = post.topic
expect(post.valid?).to eq(true)
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)
expect(topic.allowed_users.include?(admin)).to eq(true)
expect(UserArchivedMessage.where(user_id: admin.id, topic_id: topic.id).length).to eq(1)
end
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
end
end