2016-09-08 10:25:33 -05:00
|
|
|
# frozen_string_literal: true
|
2016-08-02 11:30:03 -05:00
|
|
|
require 'test_helper'
|
|
|
|
|
|
|
|
class ReviewerMailerTest < ActionMailer::TestCase
|
|
|
|
test "candidate_submission" do
|
|
|
|
candidate = candidates :dawn
|
|
|
|
mail = ReviewerMailer.candidate_submission candidate
|
|
|
|
assert_match "Results", mail.subject
|
2016-11-16 18:47:15 -06:00
|
|
|
assert_match candidate.test_hash, mail.subject
|
2016-09-15 13:40:43 -05:00
|
|
|
assert_equal candidate.quiz.reviewers.map(&:email), mail.to
|
2016-08-02 11:30:03 -05:00
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
|
|
|
assert_match candidate.test_hash, mail.body.encoded
|
|
|
|
end
|
2017-02-08 17:57:25 -06:00
|
|
|
|
|
|
|
test "reminder" do
|
|
|
|
reminders = ReviewerReminder.new
|
|
|
|
reminder = reminders.reminders.first
|
|
|
|
mail = ReviewerMailer.reminder reminder
|
|
|
|
assert_match "Review Reminder", mail.subject
|
|
|
|
assert_equal [reminder.email], mail.to
|
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
|
|
|
assert_match reminder.test_hash, mail.body.encoded
|
|
|
|
end
|
2017-02-09 15:38:38 -06:00
|
|
|
|
|
|
|
test "notify_manager" do
|
|
|
|
candidate = candidates(:richard)
|
|
|
|
mail = ReviewerMailer.notify_manager candidate.id
|
|
|
|
assert_match "Voting Complete", mail.subject
|
|
|
|
assert_equal [candidate.manager.email], mail.to
|
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
|
|
|
assert_match candidate.test_hash, mail.body.encoded
|
|
|
|
end
|
2017-02-14 11:32:39 -06:00
|
|
|
|
|
|
|
test "comment notification" do
|
|
|
|
comment = quiz_comments(:com5)
|
|
|
|
mail = ReviewerMailer.new_comment comment
|
|
|
|
assert_match "Comment", mail.subject
|
|
|
|
assert_match comment.test_hash, mail.subject
|
|
|
|
assert_equal comment.candidate.reviewers.map(&:email), mail.to
|
|
|
|
assert_equal [ENV["default_mail_from"]], mail.from
|
|
|
|
assert_match comment.test_hash, mail.body.encoded
|
|
|
|
end
|
2016-08-02 11:30:03 -05:00
|
|
|
end
|