end
def test_generated_links_in_emails
+ Setting.default_language = 'en'
Setting.host_name = 'mydomain.foo'
Setting.protocol = 'https'
- journal = Journal.find(2)
+ journal = Journal.find(3)
assert Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_not_nil mail
assert_select_email do
# link to the main ticket
- assert_select "a[href=?]",
- "https://mydomain.foo/issues/1#change-2",
- :text => "Bug #1: Can't print recipes"
+ assert_select 'a[href=?]',
+ 'https://mydomain.foo/issues/2#change-3',
+ :text => 'Feature request #2: Add ingredients categories'
# link to a referenced ticket
- assert_select "a[href=?][title=?]",
- "https://mydomain.foo/issues/2",
- "Add ingredients categories (Assigned)",
- :text => "#2"
+ assert_select 'a[href=?][title=?]',
+ 'https://mydomain.foo/issues/1',
+ 'Can\'t print recipes (New)',
+ :text => '#1'
# link to a changeset
- assert_select "a[href=?][title=?]",
- "https://mydomain.foo/projects/ecookbook/repository/revisions/2",
- "This commit fixes #1, #2 and references #1 & #3",
- :text => "r2"
+ assert_select 'a[href=?][title=?]',
+ 'https://mydomain.foo/projects/ecookbook/repository/revisions/2',
+ 'This commit fixes #1, #2 and references #1 & #3',
+ :text => 'r2'
+ # link to a description diff
+ assert_select 'a[href=?][title=?]',
+ 'https://mydomain.foo/journals/diff/3?detail_id=4',
+ 'View differences',
+ :text => 'diff'
+ # link to an attachment
+ assert_select 'a[href=?]',
+ 'https://mydomain.foo/attachments/download/4/source.rb',
+ :text => 'source.rb'
end
end
def test_generated_links_with_prefix
+ Setting.default_language = 'en'
relative_url_root = Redmine::Utils.relative_url_root
Setting.host_name = 'mydomain.foo/rdm'
Setting.protocol = 'http'
Redmine::Utils.relative_url_root = '/rdm'
- journal = Journal.find(2)
+ journal = Journal.find(3)
assert Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_not_nil mail
assert_select_email do
# link to the main ticket
- assert_select "a[href=?]",
- "http://mydomain.foo/rdm/issues/1#change-2",
- :text => "Bug #1: Can't print recipes"
+ assert_select 'a[href=?]',
+ 'http://mydomain.foo/rdm/issues/2#change-3',
+ :text => 'Feature request #2: Add ingredients categories'
# link to a referenced ticket
- assert_select "a[href=?][title=?]",
- "http://mydomain.foo/rdm/issues/2",
- "Add ingredients categories (Assigned)",
- :text => "#2"
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/issues/1',
+ 'Can\'t print recipes (New)',
+ :text => '#1'
# link to a changeset
- assert_select "a[href=?][title=?]",
- "http://mydomain.foo/rdm/projects/ecookbook/repository/revisions/2",
- "This commit fixes #1, #2 and references #1 & #3",
- :text => "r2"
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/projects/ecookbook/repository/revisions/2',
+ 'This commit fixes #1, #2 and references #1 & #3',
+ :text => 'r2'
+ # link to a description diff
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/journals/diff/3?detail_id=4',
+ 'View differences',
+ :text => 'diff'
+ # link to an attachment
+ assert_select 'a[href=?]',
+ 'http://mydomain.foo/rdm/attachments/download/4/source.rb',
+ :text => 'source.rb'
end
ensure
# restore it
end
def test_generated_links_with_prefix_and_no_relative_url_root
+ Setting.default_language = 'en'
relative_url_root = Redmine::Utils.relative_url_root
Setting.host_name = 'mydomain.foo/rdm'
Setting.protocol = 'http'
Redmine::Utils.relative_url_root = nil
- journal = Journal.find(2)
+ journal = Journal.find(3)
assert Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_not_nil mail
assert_select_email do
# link to the main ticket
- assert_select "a[href=?]",
- "http://mydomain.foo/rdm/issues/1#change-2",
- :text => "Bug #1: Can't print recipes"
+ assert_select 'a[href=?]',
+ 'http://mydomain.foo/rdm/issues/2#change-3',
+ :text => 'Feature request #2: Add ingredients categories'
# link to a referenced ticket
- assert_select "a[href=?][title=?]",
- "http://mydomain.foo/rdm/issues/2",
- "Add ingredients categories (Assigned)",
- :text => "#2"
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/issues/1',
+ 'Can\'t print recipes (New)',
+ :text => '#1'
# link to a changeset
- assert_select "a[href=?][title=?]",
- "http://mydomain.foo/rdm/projects/ecookbook/repository/revisions/2",
- "This commit fixes #1, #2 and references #1 & #3",
- :text => "r2"
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/projects/ecookbook/repository/revisions/2',
+ 'This commit fixes #1, #2 and references #1 & #3',
+ :text => 'r2'
+ # link to a description diff
+ assert_select 'a[href=?][title=?]',
+ 'http://mydomain.foo/rdm/journals/diff/3?detail_id=4',
+ 'View differences',
+ :text => 'diff'
+ # link to an attachment
+ assert_select 'a[href=?]',
+ 'http://mydomain.foo/rdm/attachments/download/4/source.rb',
+ :text => 'source.rb'
end
ensure
# restore it
def test_email_headers
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_not_nil mail
assert_equal 'OOF', mail.header_string('X-Auto-Response-Suppress')
assert_equal 'auto-generated', mail.header_string('Auto-Submitted')
def test_email_headers_should_include_sender
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal issue.author.login, mail.header_string('X-Redmine-Sender')
end
Setting.plain_text_mail = 1
journal = Journal.find(2)
Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_equal "text/plain", mail.content_type
assert_equal 0, mail.parts.size
assert !mail.encoded.include?('href')
Setting.plain_text_mail = 0
journal = Journal.find(2)
Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_equal 2, mail.parts.size
assert mail.encoded.include?('href')
end
with_settings :mail_from => 'redmine@example.net' do
Mailer.deliver_test(User.find(1))
end
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal 'redmine@example.net', mail.from_addrs.first.address
end
with_settings :mail_from => 'Redmine app <redmine@example.net>' do
Mailer.deliver_test(User.find(1))
end
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal 'redmine@example.net', mail.from_addrs.first.address
assert_equal 'Redmine app', mail.from_addrs.first.name
end
def test_issue_add_message_id
issue = Issue.find(1)
Mailer.deliver_issue_add(issue)
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal Mailer.message_id_for(issue), mail.message_id
assert_nil mail.references
end
def test_issue_edit_message_id
journal = Journal.find(1)
Mailer.deliver_issue_edit(journal)
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal Mailer.message_id_for(journal), mail.message_id
assert_equal Mailer.message_id_for(journal.issue), mail.references.first.to_s
assert_select_email do
def test_message_posted_message_id
message = Message.find(1)
Mailer.deliver_message_posted(message)
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal Mailer.message_id_for(message), mail.message_id
assert_nil mail.references
assert_select_email do
def test_reply_posted_message_id
message = Message.find(3)
Mailer.deliver_message_posted(message)
- mail = ActionMailer::Base.deliveries.last
- assert_not_nil mail
+ mail = last_email
assert_equal Mailer.message_id_for(message), mail.message_id
assert_equal Mailer.message_id_for(message.parent), mail.references.first.to_s
assert_select_email do
token.reload
ActionMailer::Base.deliveries.clear
assert Mailer.deliver_register(token)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert_select_email do
assert_select "a[href=?]",
"https://redmine.foo/account/activate?token=#{token.value}",
def test_reminders
Mailer.reminders(:days => 42)
assert_equal 1, ActionMailer::Base.deliveries.size
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
assert mail.body.include?('Bug #3: Error 281 when updating a recipe')
assert_equal '1 issue(s) due in the next 42 days', mail.subject
Mailer.reminders(:days => 42)
assert_equal 1, ActionMailer::Base.deliveries.size
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
assert !mail.body.include?('Closed issue')
end
assert_equal 0, ActionMailer::Base.deliveries.size # No mail for dlopper
Mailer.reminders(:days => 42, :users => ['3'])
assert_equal 1, ActionMailer::Base.deliveries.size # No mail for dlopper
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert mail.bcc.include?('dlopper@somenet.foo')
assert mail.body.include?('Bug #3: Error 281 when updating a recipe')
end
user = User.find(1)
user.language = 'fr'
Mailer.deliver_account_activated(user)
- mail = ActionMailer::Base.deliveries.last
+ mail = last_email
assert mail.body.include?('Votre compte')
assert_equal :it, current_language