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
|
|
|
|
|
|
|
describe EmailLog do
|
2013-02-26 00:42:20 +08:00
|
|
|
|
2014-12-31 22:55:03 +08:00
|
|
|
it { is_expected.to belong_to :user }
|
|
|
|
it { is_expected.to validate_presence_of :to_address }
|
|
|
|
it { is_expected.to validate_presence_of :email_type }
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2019-05-07 11:12:20 +08:00
|
|
|
fab!(:user) { Fabricate(:user) }
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2016-04-15 13:59:01 +08:00
|
|
|
context 'unique email per post' do
|
|
|
|
it 'only allows through one email per post' do
|
|
|
|
post = Fabricate(:post)
|
|
|
|
user = post.user
|
|
|
|
|
|
|
|
ran = EmailLog.unique_email_per_post(post, user) do
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-07-27 12:32:07 +08:00
|
|
|
expect(ran).to be(true)
|
2016-04-15 13:59:01 +08:00
|
|
|
|
2018-07-27 12:32:07 +08:00
|
|
|
Fabricate(:email_log,
|
|
|
|
user: user,
|
|
|
|
email_type: 'blah',
|
|
|
|
post_id: post.id,
|
|
|
|
to_address: user.email,
|
|
|
|
user_id: user.id
|
|
|
|
)
|
2016-04-15 13:59:01 +08:00
|
|
|
|
|
|
|
ran = EmailLog.unique_email_per_post(post, user) do
|
|
|
|
true
|
|
|
|
end
|
|
|
|
|
2018-07-27 12:32:07 +08:00
|
|
|
expect(ran).to be(nil)
|
2016-04-15 13:59:01 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2014-02-15 02:06:21 +08:00
|
|
|
context 'after_create' do
|
2013-06-11 04:46:08 +08:00
|
|
|
context 'with user' do
|
|
|
|
it 'updates the last_emailed_at value for the user' do
|
2014-12-31 22:55:03 +08:00
|
|
|
expect {
|
2013-06-11 04:46:08 +08:00
|
|
|
user.email_logs.create(email_type: 'blah', to_address: user.email)
|
|
|
|
user.reload
|
2014-12-31 22:55:03 +08:00
|
|
|
}.to change(user, :last_emailed_at)
|
2013-06-11 04:46:08 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
2014-02-15 02:06:21 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
|
2016-03-23 12:08:34 +08:00
|
|
|
describe '#reached_max_emails?' do
|
2017-05-03 16:03:43 +08:00
|
|
|
before do
|
2016-03-23 12:08:34 +08:00
|
|
|
SiteSetting.max_emails_per_day_per_user = 2
|
2017-05-03 20:14:32 +08:00
|
|
|
Fabricate(:email_log, user: user, email_type: 'blah', to_address: user.email, user_id: user.id)
|
|
|
|
Fabricate(:email_log, user: user, email_type: 'blah', to_address: user.email, user_id: user.id, created_at: 3.days.ago)
|
2017-05-03 16:03:43 +08:00
|
|
|
end
|
2016-03-23 12:08:34 +08:00
|
|
|
|
2017-05-03 16:03:43 +08:00
|
|
|
it "tracks when max emails are reached" do
|
2016-03-23 12:08:34 +08:00
|
|
|
expect(EmailLog.reached_max_emails?(user)).to eq(false)
|
|
|
|
|
2017-05-03 20:14:32 +08:00
|
|
|
Fabricate(:email_log, user: user, email_type: 'blah', to_address: user.email, user_id: user.id)
|
2016-03-23 12:08:34 +08:00
|
|
|
expect(EmailLog.reached_max_emails?(user)).to eq(true)
|
|
|
|
end
|
2017-05-03 16:03:43 +08:00
|
|
|
|
2017-05-03 19:36:01 +08:00
|
|
|
it "returns false for critical email" do
|
2017-05-03 20:14:32 +08:00
|
|
|
Fabricate(:email_log, user: user, email_type: 'blah', to_address: user.email, user_id: user.id)
|
2017-05-03 16:03:43 +08:00
|
|
|
expect(EmailLog.reached_max_emails?(user, 'forgot_password')).to eq(false)
|
2017-05-03 19:36:01 +08:00
|
|
|
expect(EmailLog.reached_max_emails?(user, 'confirm_new_email')).to eq(false)
|
2017-05-03 16:03:43 +08:00
|
|
|
end
|
2016-03-23 12:08:34 +08:00
|
|
|
end
|
|
|
|
|
2014-02-15 02:06:21 +08:00
|
|
|
describe '#count_per_day' do
|
|
|
|
it "counts sent emails" do
|
2017-05-03 20:14:32 +08:00
|
|
|
Fabricate(:email_log, user: user, email_type: 'blah', to_address: user.email)
|
2014-12-31 22:55:03 +08:00
|
|
|
expect(described_class.count_per_day(1.day.ago, Time.now).first[1]).to eq 1
|
2014-02-15 02:06:21 +08:00
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|
|
|
|
|
2013-11-15 23:27:43 +08:00
|
|
|
describe ".last_sent_email_address" do
|
|
|
|
context "when user's email exist in the logs" do
|
|
|
|
before do
|
|
|
|
user.email_logs.create(email_type: 'signup', to_address: user.email)
|
|
|
|
user.email_logs.create(email_type: 'blah', to_address: user.email)
|
|
|
|
user.reload
|
|
|
|
end
|
|
|
|
|
|
|
|
it "the user's last email from the log" do
|
|
|
|
expect(user.email_logs.last_sent_email_address).to eq(user.email)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context "when user's email does not exist email logs" do
|
|
|
|
it "returns nil" do
|
2014-11-01 01:44:26 +08:00
|
|
|
expect(user.email_logs.last_sent_email_address).to be_nil
|
2013-11-15 23:27:43 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2018-07-18 16:28:44 +08:00
|
|
|
describe "#bounce_key" do
|
|
|
|
it "should format the bounce_key correctly" do
|
|
|
|
hex = SecureRandom.hex
|
|
|
|
email_log = Fabricate(:email_log, user: user, bounce_key: hex)
|
|
|
|
|
|
|
|
raw_key = EmailLog.where(id: email_log.id)
|
|
|
|
.pluck("bounce_key::text")
|
|
|
|
.first
|
|
|
|
|
2019-01-10 09:56:03 +08:00
|
|
|
expect(raw_key).to_not eq(hex)
|
|
|
|
expect(raw_key.delete('-')).to eq(hex)
|
2018-07-18 16:28:44 +08:00
|
|
|
expect(EmailLog.find(email_log.id).bounce_key).to eq(hex)
|
2018-07-16 20:05:54 +08:00
|
|
|
end
|
|
|
|
end
|
2013-02-06 03:16:51 +08:00
|
|
|
end
|