2019-04-30 08:27:42 +08:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2015-10-11 17:41:23 +08:00
|
|
|
require 'rails_helper'
|
2013-02-06 03:16:51 +08:00
|
|
|
require 'system_message'
|
2013-04-17 04:56:18 +08:00
|
|
|
require 'topic_subtype'
|
2013-02-06 03:16:51 +08:00
|
|
|
|
|
|
|
describe SystemMessage do
|
|
|
|
|
2019-05-30 07:56:04 +08:00
|
|
|
context '#create' do
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:admin) { Fabricate(:admin) }
|
|
|
|
fab!(:user) { Fabricate(:user) }
|
2016-01-10 13:46:11 +08:00
|
|
|
|
2019-03-13 18:34:47 +08:00
|
|
|
before do
|
2016-01-10 13:46:11 +08:00
|
|
|
SiteSetting.site_contact_username = admin.username
|
2019-03-13 18:34:47 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
it 'should create a post correctly' do
|
2016-01-10 13:46:11 +08:00
|
|
|
system_message = SystemMessage.new(user)
|
|
|
|
post = system_message.create(:welcome_invite)
|
|
|
|
topic = post.topic
|
|
|
|
|
2019-05-30 07:56:04 +08:00
|
|
|
expect(topic.private_message?).to eq(true)
|
2015-01-10 00:34:37 +08:00
|
|
|
expect(topic.subtype).to eq(TopicSubtype.system_message)
|
2016-01-10 13:46:11 +08:00
|
|
|
|
2019-05-30 07:56:04 +08:00
|
|
|
expect(topic.allowed_users.pluck(:user_id)).to contain_exactly(
|
|
|
|
user.id, admin.id
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(UserArchivedMessage.where(
|
|
|
|
user_id: admin.id,
|
|
|
|
topic_id: topic.id
|
|
|
|
).count).to eq(1)
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2019-03-13 18:34:47 +08:00
|
|
|
|
2019-05-29 18:56:10 +08:00
|
|
|
it 'can create a post from system user in user selected locale' do
|
|
|
|
SiteSetting.allow_user_locale = true
|
|
|
|
user_de = Fabricate(:user, locale: 'de')
|
|
|
|
system_user = Discourse.system_user
|
|
|
|
|
|
|
|
post = SystemMessage.create_from_system_user(user_de, :welcome_invite)
|
|
|
|
topic = post.topic
|
|
|
|
|
2019-05-30 07:56:04 +08:00
|
|
|
expect(topic.private_message?).to eq(true)
|
2019-05-29 18:56:10 +08:00
|
|
|
expect(topic.title).to eq(I18n.with_locale(:de) { I18n.t("system_messages.welcome_invite.subject_template", site_name: SiteSetting.title) })
|
|
|
|
expect(topic.subtype).to eq(TopicSubtype.system_message)
|
2019-05-30 07:56:04 +08:00
|
|
|
|
|
|
|
expect(topic.allowed_users.pluck(:user_id)).to contain_exactly(
|
|
|
|
user_de.id, system_user.id
|
|
|
|
)
|
|
|
|
|
|
|
|
expect(UserArchivedMessage.where(
|
|
|
|
user_id: system_user.id,
|
|
|
|
topic_id: topic.id
|
|
|
|
).count).to eq(0)
|
2019-05-29 18:56:10 +08:00
|
|
|
end
|
|
|
|
|
2020-09-02 08:25:24 +08:00
|
|
|
it 'allows message_title and message_raw ops to override content' do
|
|
|
|
user = Fabricate(:user)
|
|
|
|
system_user = Discourse.system_user
|
|
|
|
|
|
|
|
post = SystemMessage.create_from_system_user(user, :welcome_invite, { message_title: "override title", message_raw: "override body" })
|
|
|
|
topic = post.topic
|
|
|
|
|
|
|
|
expect(topic.private_message?).to eq(true)
|
|
|
|
expect(topic.title).to eq("override title")
|
|
|
|
expect(topic.subtype).to eq(TopicSubtype.system_message)
|
|
|
|
expect(post.raw).to eq("override body")
|
|
|
|
end
|
|
|
|
|
2019-03-13 18:34:47 +08: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)
|
2019-05-30 07:56:04 +08:00
|
|
|
expect(post.topic.allowed_groups).to eq([])
|
2019-03-13 18:34:47 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
end
|