91 lines
3.1 KiB
Ruby
91 lines
3.1 KiB
Ruby
require "rails_helper"
|
|
|
|
RSpec.describe Message, type: :model do
|
|
let(:user) { create(:user) }
|
|
let(:user2) { create(:user) }
|
|
let(:chat_channel) { create(:chat_channel) }
|
|
let(:message) { create(:message, user: user) }
|
|
|
|
describe "validations" do
|
|
context "with automatic validations" do
|
|
before do
|
|
allow(ChatChannel).to receive(:find).and_return(ChatChannel.new)
|
|
end
|
|
|
|
it { is_expected.to belong_to(:user) }
|
|
it { is_expected.to belong_to(:chat_channel) }
|
|
it { is_expected.to validate_presence_of(:message_html) }
|
|
it { is_expected.to validate_presence_of(:message_markdown) }
|
|
end
|
|
|
|
it "is invalid without channel permission for invite only channels" do
|
|
chat_channel.update(channel_type: "invite_only")
|
|
message = build(:message, chat_channel: chat_channel, user: user)
|
|
expect(message).not_to be_valid
|
|
end
|
|
|
|
it "is valid with channel permission" do
|
|
chat_channel.add_users([user])
|
|
message = build(:message, chat_channel: chat_channel, user: user)
|
|
expect(message).to be_valid
|
|
end
|
|
|
|
it "is invalid with text over 1024 chars" do
|
|
message = build(:message, chat_channel: chat_channel, user: user, message_markdown: "x" * 1025)
|
|
expect(message).not_to be_valid
|
|
end
|
|
end
|
|
|
|
context "when callbacks are triggered before validation" do
|
|
let_it_be(:article) { create(:article) }
|
|
|
|
describe "#message_html" do
|
|
it "creates rich link with proper link" do
|
|
message.message_markdown = "hello http://#{ApplicationConfig['APP_DOMAIN']}#{article.path}"
|
|
message.validate!
|
|
|
|
expect(message.message_html).to include(article.title)
|
|
expect(message.message_html).to include("data-content")
|
|
end
|
|
|
|
it "creates rich link with non-rich link" do
|
|
message.message_markdown = "hello http://#{ApplicationConfig['APP_DOMAIN']}/report-abuse"
|
|
message.validate!
|
|
|
|
expect(message.message_html).not_to include("data-content")
|
|
end
|
|
end
|
|
end
|
|
|
|
context "when callbacks are triggered after create" do
|
|
before do
|
|
chat_channel.add_users([user, user2])
|
|
end
|
|
|
|
it "sends email if user not recently active on /connect" do
|
|
chat_channel.update_column(:channel_type, "direct")
|
|
user2.update_column(:updated_at, 1.day.ago)
|
|
user2.chat_channel_memberships.last.update_column(:last_opened_at, 2.days.ago)
|
|
|
|
create(:message, chat_channel: chat_channel, user: user)
|
|
|
|
expect(EmailMessage.last.subject).to start_with("#{user.name} just messaged you")
|
|
end
|
|
|
|
it "does not send email if user has been recently active" do
|
|
expect do
|
|
create(:message, chat_channel: chat_channel, user: user)
|
|
end.to change(EmailMessage, :count).by(0)
|
|
end
|
|
|
|
it "does not send email if user has email_messages turned off" do
|
|
chat_channel.update_column(:channel_type, "direct")
|
|
user2.update_columns(updated_at: 1.day.ago, email_connect_messages: false)
|
|
user2.chat_channel_memberships.last.update_column(:last_opened_at, 2.days.ago)
|
|
|
|
expect do
|
|
create(:message, chat_channel: chat_channel, user: user)
|
|
end.to change(EmailMessage, :count).by(0)
|
|
end
|
|
end
|
|
end
|