debian-mirror-gitlab/spec/support/email_helpers.rb

34 lines
842 B
Ruby
Raw Normal View History

2016-06-02 11:05:42 +05:30
module EmailHelpers
2017-08-17 22:00:37 +05:30
def sent_to_user?(user, recipients = email_recipients)
recipients.include?(user.notification_email)
2016-06-02 11:05:42 +05:30
end
2016-09-13 17:45:13 +05:30
def reset_delivered_emails!
ActionMailer::Base.deliveries.clear
end
2017-08-17 22:00:37 +05:30
def should_only_email(*users, kind: :to)
recipients = email_recipients(kind: kind)
users.each { |user| should_email(user, recipients) }
2016-09-13 17:45:13 +05:30
expect(recipients.count).to eq(users.count)
end
2017-08-17 22:00:37 +05:30
def should_email(user, recipients = email_recipients)
expect(sent_to_user?(user, recipients)).to be_truthy
end
def should_not_email(user, recipients = email_recipients)
expect(sent_to_user?(user, recipients)).to be_falsey
end
def should_not_email_anyone
expect(ActionMailer::Base.deliveries).to be_empty
2016-06-02 11:05:42 +05:30
end
2017-08-17 22:00:37 +05:30
def email_recipients(kind: :to)
ActionMailer::Base.deliveries.flat_map(&kind)
2016-06-02 11:05:42 +05:30
end
end