@@ -5,12 +5,12 | |||||
5 | # modify it under the terms of the GNU General Public License |
|
5 | # modify it under the terms of the GNU General Public License | |
6 | # as published by the Free Software Foundation; either version 2 |
|
6 | # as published by the Free Software Foundation; either version 2 | |
7 | # of the License, or (at your option) any later version. |
|
7 | # of the License, or (at your option) any later version. | |
8 |
# |
|
8 | # | |
9 | # This program is distributed in the hope that it will be useful, |
|
9 | # This program is distributed in the hope that it will be useful, | |
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | # GNU General Public License for more details. |
|
12 | # GNU General Public License for more details. | |
13 |
# |
|
13 | # | |
14 | # You should have received a copy of the GNU General Public License |
|
14 | # You should have received a copy of the GNU General Public License | |
15 | # along with this program; if not, write to the Free Software |
|
15 | # along with this program; if not, write to the Free Software | |
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
16 | # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | |
@@ -21,24 +21,24 class MailerTest < ActiveSupport::TestCase | |||||
21 | include Redmine::I18n |
|
21 | include Redmine::I18n | |
22 | include ActionController::Assertions::SelectorAssertions |
|
22 | include ActionController::Assertions::SelectorAssertions | |
23 | fixtures :all |
|
23 | fixtures :all | |
24 |
|
24 | |||
25 | def setup |
|
25 | def setup | |
26 | ActionMailer::Base.deliveries.clear |
|
26 | ActionMailer::Base.deliveries.clear | |
27 | Setting.host_name = 'mydomain.foo' |
|
27 | Setting.host_name = 'mydomain.foo' | |
28 | Setting.protocol = 'http' |
|
28 | Setting.protocol = 'http' | |
29 | Setting.plain_text_mail = '0' |
|
29 | Setting.plain_text_mail = '0' | |
30 | end |
|
30 | end | |
31 |
|
31 | |||
32 | def test_generated_links_in_emails |
|
32 | def test_generated_links_in_emails | |
33 | Setting.host_name = 'mydomain.foo' |
|
33 | Setting.host_name = 'mydomain.foo' | |
34 | Setting.protocol = 'https' |
|
34 | Setting.protocol = 'https' | |
35 |
|
35 | |||
36 | journal = Journal.find(2) |
|
36 | journal = Journal.find(2) | |
37 | assert Mailer.deliver_issue_edit(journal) |
|
37 | assert Mailer.deliver_issue_edit(journal) | |
38 |
|
38 | |||
39 | mail = ActionMailer::Base.deliveries.last |
|
39 | mail = ActionMailer::Base.deliveries.last | |
40 | assert_kind_of TMail::Mail, mail |
|
40 | assert_kind_of TMail::Mail, mail | |
41 |
|
41 | |||
42 | assert_select_email do |
|
42 | assert_select_email do | |
43 | # link to the main ticket |
|
43 | # link to the main ticket | |
44 | assert_select "a[href=?]", "https://mydomain.foo/issues/1", :text => "Bug #1: Can't print recipes" |
|
44 | assert_select "a[href=?]", "https://mydomain.foo/issues/1", :text => "Bug #1: Can't print recipes" | |
@@ -48,16 +48,16 class MailerTest < ActiveSupport::TestCase | |||||
48 | assert_select "a[href=?][title=?]", "https://mydomain.foo/projects/ecookbook/repository/revisions/2", "This commit fixes #1, #2 and references #1 & #3", :text => "r2" |
|
48 | assert_select "a[href=?][title=?]", "https://mydomain.foo/projects/ecookbook/repository/revisions/2", "This commit fixes #1, #2 and references #1 & #3", :text => "r2" | |
49 | end |
|
49 | end | |
50 | end |
|
50 | end | |
51 |
|
51 | |||
52 | def test_generated_links_with_prefix |
|
52 | def test_generated_links_with_prefix | |
53 | relative_url_root = Redmine::Utils.relative_url_root |
|
53 | relative_url_root = Redmine::Utils.relative_url_root | |
54 | Setting.host_name = 'mydomain.foo/rdm' |
|
54 | Setting.host_name = 'mydomain.foo/rdm' | |
55 | Setting.protocol = 'http' |
|
55 | Setting.protocol = 'http' | |
56 | Redmine::Utils.relative_url_root = '/rdm' |
|
56 | Redmine::Utils.relative_url_root = '/rdm' | |
57 |
|
57 | |||
58 | journal = Journal.find(2) |
|
58 | journal = Journal.find(2) | |
59 | assert Mailer.deliver_issue_edit(journal) |
|
59 | assert Mailer.deliver_issue_edit(journal) | |
60 |
|
60 | |||
61 | mail = ActionMailer::Base.deliveries.last |
|
61 | mail = ActionMailer::Base.deliveries.last | |
62 | assert_kind_of TMail::Mail, mail |
|
62 | assert_kind_of TMail::Mail, mail | |
63 |
|
63 | |||
@@ -73,16 +73,16 class MailerTest < ActiveSupport::TestCase | |||||
73 | # restore it |
|
73 | # restore it | |
74 | Redmine::Utils.relative_url_root = relative_url_root |
|
74 | Redmine::Utils.relative_url_root = relative_url_root | |
75 | end |
|
75 | end | |
76 |
|
76 | |||
77 | def test_generated_links_with_prefix_and_no_relative_url_root |
|
77 | def test_generated_links_with_prefix_and_no_relative_url_root | |
78 | relative_url_root = Redmine::Utils.relative_url_root |
|
78 | relative_url_root = Redmine::Utils.relative_url_root | |
79 | Setting.host_name = 'mydomain.foo/rdm' |
|
79 | Setting.host_name = 'mydomain.foo/rdm' | |
80 | Setting.protocol = 'http' |
|
80 | Setting.protocol = 'http' | |
81 | Redmine::Utils.relative_url_root = nil |
|
81 | Redmine::Utils.relative_url_root = nil | |
82 |
|
82 | |||
83 | journal = Journal.find(2) |
|
83 | journal = Journal.find(2) | |
84 | assert Mailer.deliver_issue_edit(journal) |
|
84 | assert Mailer.deliver_issue_edit(journal) | |
85 |
|
85 | |||
86 | mail = ActionMailer::Base.deliveries.last |
|
86 | mail = ActionMailer::Base.deliveries.last | |
87 | assert_kind_of TMail::Mail, mail |
|
87 | assert_kind_of TMail::Mail, mail | |
88 |
|
88 | |||
@@ -98,7 +98,7 class MailerTest < ActiveSupport::TestCase | |||||
98 | # restore it |
|
98 | # restore it | |
99 | Redmine::Utils.relative_url_root = relative_url_root |
|
99 | Redmine::Utils.relative_url_root = relative_url_root | |
100 | end |
|
100 | end | |
101 |
|
101 | |||
102 | def test_email_headers |
|
102 | def test_email_headers | |
103 | issue = Issue.find(1) |
|
103 | issue = Issue.find(1) | |
104 | Mailer.deliver_issue_add(issue) |
|
104 | Mailer.deliver_issue_add(issue) | |
@@ -126,7 +126,7 class MailerTest < ActiveSupport::TestCase | |||||
126 | assert_equal 2, mail.parts.size |
|
126 | assert_equal 2, mail.parts.size | |
127 | assert mail.encoded.include?('href') |
|
127 | assert mail.encoded.include?('href') | |
128 | end |
|
128 | end | |
129 |
|
129 | |||
130 | def test_mail_from_with_phrase |
|
130 | def test_mail_from_with_phrase | |
131 | with_settings :mail_from => 'Redmine app <redmine@example.net>' do |
|
131 | with_settings :mail_from => 'Redmine app <redmine@example.net>' do | |
132 | Mailer.deliver_test(User.find(1)) |
|
132 | Mailer.deliver_test(User.find(1)) | |
@@ -135,13 +135,13 class MailerTest < ActiveSupport::TestCase | |||||
135 | assert_not_nil mail |
|
135 | assert_not_nil mail | |
136 | assert_equal 'Redmine app', mail.from_addrs.first.name |
|
136 | assert_equal 'Redmine app', mail.from_addrs.first.name | |
137 | end |
|
137 | end | |
138 |
|
138 | |||
139 | def test_should_not_send_email_without_recipient |
|
139 | def test_should_not_send_email_without_recipient | |
140 | news = News.find(:first) |
|
140 | news = News.find(:first) | |
141 | user = news.author |
|
141 | user = news.author | |
142 | # Remove members except news author |
|
142 | # Remove members except news author | |
143 | news.project.memberships.each {|m| m.destroy unless m.user == user} |
|
143 | news.project.memberships.each {|m| m.destroy unless m.user == user} | |
144 |
|
144 | |||
145 | user.pref[:no_self_notified] = false |
|
145 | user.pref[:no_self_notified] = false | |
146 | user.pref.save |
|
146 | user.pref.save | |
147 | User.current = user |
|
147 | User.current = user | |
@@ -165,7 +165,7 class MailerTest < ActiveSupport::TestCase | |||||
165 | assert_equal Mailer.message_id_for(issue), mail.message_id |
|
165 | assert_equal Mailer.message_id_for(issue), mail.message_id | |
166 | assert_nil mail.references |
|
166 | assert_nil mail.references | |
167 | end |
|
167 | end | |
168 |
|
168 | |||
169 | def test_issue_edit_message_id |
|
169 | def test_issue_edit_message_id | |
170 | journal = Journal.find(1) |
|
170 | journal = Journal.find(1) | |
171 | Mailer.deliver_issue_edit(journal) |
|
171 | Mailer.deliver_issue_edit(journal) | |
@@ -174,7 +174,7 class MailerTest < ActiveSupport::TestCase | |||||
174 | assert_equal Mailer.message_id_for(journal), mail.message_id |
|
174 | assert_equal Mailer.message_id_for(journal), mail.message_id | |
175 | assert_equal Mailer.message_id_for(journal.issue), mail.references.first.to_s |
|
175 | assert_equal Mailer.message_id_for(journal.issue), mail.references.first.to_s | |
176 | end |
|
176 | end | |
177 |
|
177 | |||
178 | def test_message_posted_message_id |
|
178 | def test_message_posted_message_id | |
179 | message = Message.find(1) |
|
179 | message = Message.find(1) | |
180 | Mailer.deliver_message_posted(message) |
|
180 | Mailer.deliver_message_posted(message) | |
@@ -187,7 +187,7 class MailerTest < ActiveSupport::TestCase | |||||
187 | assert_select "a[href=?]", "http://mydomain.foo/boards/#{message.board.id}/topics/#{message.id}", :text => message.subject |
|
187 | assert_select "a[href=?]", "http://mydomain.foo/boards/#{message.board.id}/topics/#{message.id}", :text => message.subject | |
188 | end |
|
188 | end | |
189 | end |
|
189 | end | |
190 |
|
190 | |||
191 | def test_reply_posted_message_id |
|
191 | def test_reply_posted_message_id | |
192 | message = Message.find(3) |
|
192 | message = Message.find(3) | |
193 | Mailer.deliver_message_posted(message) |
|
193 | Mailer.deliver_message_posted(message) | |
@@ -200,25 +200,25 class MailerTest < ActiveSupport::TestCase | |||||
200 | assert_select "a[href=?]", "http://mydomain.foo/boards/#{message.board.id}/topics/#{message.root.id}?r=#{message.id}#message-#{message.id}", :text => message.subject |
|
200 | assert_select "a[href=?]", "http://mydomain.foo/boards/#{message.board.id}/topics/#{message.root.id}?r=#{message.id}#message-#{message.id}", :text => message.subject | |
201 | end |
|
201 | end | |
202 | end |
|
202 | end | |
203 |
|
203 | |||
204 | context("#issue_add") do |
|
204 | context("#issue_add") do | |
205 | setup do |
|
205 | setup do | |
206 | ActionMailer::Base.deliveries.clear |
|
206 | ActionMailer::Base.deliveries.clear | |
207 | Setting.bcc_recipients = '1' |
|
207 | Setting.bcc_recipients = '1' | |
208 |
@issue = Issue.find(1) |
|
208 | @issue = Issue.find(1) | |
209 | end |
|
209 | end | |
210 |
|
210 | |||
211 | should "notify project members" do |
|
211 | should "notify project members" do | |
212 | assert Mailer.deliver_issue_add(@issue) |
|
212 | assert Mailer.deliver_issue_add(@issue) | |
213 | assert last_email.bcc.include?('dlopper@somenet.foo') |
|
213 | assert last_email.bcc.include?('dlopper@somenet.foo') | |
214 | end |
|
214 | end | |
215 |
|
215 | |||
216 | should "not notify project members that are not allow to view the issue" do |
|
216 | should "not notify project members that are not allow to view the issue" do | |
217 | Role.find(2).remove_permission!(:view_issues) |
|
217 | Role.find(2).remove_permission!(:view_issues) | |
218 | assert Mailer.deliver_issue_add(@issue) |
|
218 | assert Mailer.deliver_issue_add(@issue) | |
219 | assert !last_email.bcc.include?('dlopper@somenet.foo') |
|
219 | assert !last_email.bcc.include?('dlopper@somenet.foo') | |
220 | end |
|
220 | end | |
221 |
|
221 | |||
222 | should "notify issue watchers" do |
|
222 | should "notify issue watchers" do | |
223 | user = User.find(9) |
|
223 | user = User.find(9) | |
224 | # minimal email notification options |
|
224 | # minimal email notification options | |
@@ -226,12 +226,12 class MailerTest < ActiveSupport::TestCase | |||||
226 | user.pref.save |
|
226 | user.pref.save | |
227 | user.mail_notification = false |
|
227 | user.mail_notification = false | |
228 | user.save |
|
228 | user.save | |
229 |
|
229 | |||
230 | Watcher.create!(:watchable => @issue, :user => user) |
|
230 | Watcher.create!(:watchable => @issue, :user => user) | |
231 | assert Mailer.deliver_issue_add(@issue) |
|
231 | assert Mailer.deliver_issue_add(@issue) | |
232 | assert last_email.bcc.include?(user.mail) |
|
232 | assert last_email.bcc.include?(user.mail) | |
233 | end |
|
233 | end | |
234 |
|
234 | |||
235 | should "not notify watchers not allowed to view the issue" do |
|
235 | should "not notify watchers not allowed to view the issue" do | |
236 | user = User.find(9) |
|
236 | user = User.find(9) | |
237 | Watcher.create!(:watchable => @issue, :user => user) |
|
237 | Watcher.create!(:watchable => @issue, :user => user) | |
@@ -240,7 +240,7 class MailerTest < ActiveSupport::TestCase | |||||
240 | assert !last_email.bcc.include?(user.mail) |
|
240 | assert !last_email.bcc.include?(user.mail) | |
241 | end |
|
241 | end | |
242 | end |
|
242 | end | |
243 |
|
243 | |||
244 | # test mailer methods for each language |
|
244 | # test mailer methods for each language | |
245 | def test_issue_add |
|
245 | def test_issue_add | |
246 | issue = Issue.find(1) |
|
246 | issue = Issue.find(1) | |
@@ -257,7 +257,7 class MailerTest < ActiveSupport::TestCase | |||||
257 | assert Mailer.deliver_issue_edit(journal) |
|
257 | assert Mailer.deliver_issue_edit(journal) | |
258 | end |
|
258 | end | |
259 | end |
|
259 | end | |
260 |
|
260 | |||
261 | def test_document_added |
|
261 | def test_document_added | |
262 | document = Document.find(1) |
|
262 | document = Document.find(1) | |
263 | valid_languages.each do |lang| |
|
263 | valid_languages.each do |lang| | |
@@ -265,7 +265,7 class MailerTest < ActiveSupport::TestCase | |||||
265 | assert Mailer.deliver_document_added(document) |
|
265 | assert Mailer.deliver_document_added(document) | |
266 | end |
|
266 | end | |
267 | end |
|
267 | end | |
268 |
|
268 | |||
269 | def test_attachments_added |
|
269 | def test_attachments_added | |
270 | attachements = [ Attachment.find_by_container_type('Document') ] |
|
270 | attachements = [ Attachment.find_by_container_type('Document') ] | |
271 | valid_languages.each do |lang| |
|
271 | valid_languages.each do |lang| | |
@@ -273,7 +273,7 class MailerTest < ActiveSupport::TestCase | |||||
273 | assert Mailer.deliver_attachments_added(attachements) |
|
273 | assert Mailer.deliver_attachments_added(attachements) | |
274 | end |
|
274 | end | |
275 | end |
|
275 | end | |
276 |
|
276 | |||
277 | def test_version_file_added |
|
277 | def test_version_file_added | |
278 | attachements = [ Attachment.find_by_container_type('Version') ] |
|
278 | attachements = [ Attachment.find_by_container_type('Version') ] | |
279 | assert Mailer.deliver_attachments_added(attachements) |
|
279 | assert Mailer.deliver_attachments_added(attachements) | |
@@ -283,7 +283,7 class MailerTest < ActiveSupport::TestCase | |||||
283 | assert_select "a[href=?]", "http://mydomain.foo/projects/ecookbook/files" |
|
283 | assert_select "a[href=?]", "http://mydomain.foo/projects/ecookbook/files" | |
284 | end |
|
284 | end | |
285 | end |
|
285 | end | |
286 |
|
286 | |||
287 | def test_project_file_added |
|
287 | def test_project_file_added | |
288 | attachements = [ Attachment.find_by_container_type('Project') ] |
|
288 | attachements = [ Attachment.find_by_container_type('Project') ] | |
289 | assert Mailer.deliver_attachments_added(attachements) |
|
289 | assert Mailer.deliver_attachments_added(attachements) | |
@@ -293,7 +293,7 class MailerTest < ActiveSupport::TestCase | |||||
293 | assert_select "a[href=?]", "http://mydomain.foo/projects/ecookbook/files" |
|
293 | assert_select "a[href=?]", "http://mydomain.foo/projects/ecookbook/files" | |
294 | end |
|
294 | end | |
295 | end |
|
295 | end | |
296 |
|
296 | |||
297 | def test_news_added |
|
297 | def test_news_added | |
298 | news = News.find(:first) |
|
298 | news = News.find(:first) | |
299 | valid_languages.each do |lang| |
|
299 | valid_languages.each do |lang| | |
@@ -301,7 +301,7 class MailerTest < ActiveSupport::TestCase | |||||
301 | assert Mailer.deliver_news_added(news) |
|
301 | assert Mailer.deliver_news_added(news) | |
302 | end |
|
302 | end | |
303 | end |
|
303 | end | |
304 |
|
304 | |||
305 | def test_news_comment_added |
|
305 | def test_news_comment_added | |
306 | comment = Comment.find(2) |
|
306 | comment = Comment.find(2) | |
307 | valid_languages.each do |lang| |
|
307 | valid_languages.each do |lang| | |
@@ -309,7 +309,7 class MailerTest < ActiveSupport::TestCase | |||||
309 | assert Mailer.deliver_news_comment_added(comment) |
|
309 | assert Mailer.deliver_news_comment_added(comment) | |
310 | end |
|
310 | end | |
311 | end |
|
311 | end | |
312 |
|
312 | |||
313 | def test_message_posted |
|
313 | def test_message_posted | |
314 | message = Message.find(:first) |
|
314 | message = Message.find(:first) | |
315 | recipients = ([message.root] + message.root.children).collect {|m| m.author.mail if m.author} |
|
315 | recipients = ([message.root] + message.root.children).collect {|m| m.author.mail if m.author} | |
@@ -319,7 +319,7 class MailerTest < ActiveSupport::TestCase | |||||
319 | assert Mailer.deliver_message_posted(message) |
|
319 | assert Mailer.deliver_message_posted(message) | |
320 | end |
|
320 | end | |
321 | end |
|
321 | end | |
322 |
|
322 | |||
323 | def test_wiki_content_added |
|
323 | def test_wiki_content_added | |
324 | content = WikiContent.find(:first) |
|
324 | content = WikiContent.find(:first) | |
325 | valid_languages.each do |lang| |
|
325 | valid_languages.each do |lang| | |
@@ -329,7 +329,7 class MailerTest < ActiveSupport::TestCase | |||||
329 | end |
|
329 | end | |
330 | end |
|
330 | end | |
331 | end |
|
331 | end | |
332 |
|
332 | |||
333 | def test_wiki_content_updated |
|
333 | def test_wiki_content_updated | |
334 | content = WikiContent.find(:first) |
|
334 | content = WikiContent.find(:first) | |
335 | valid_languages.each do |lang| |
|
335 | valid_languages.each do |lang| | |
@@ -339,7 +339,7 class MailerTest < ActiveSupport::TestCase | |||||
339 | end |
|
339 | end | |
340 | end |
|
340 | end | |
341 | end |
|
341 | end | |
342 |
|
342 | |||
343 | def test_account_information |
|
343 | def test_account_information | |
344 | user = User.find(2) |
|
344 | user = User.find(2) | |
345 | valid_languages.each do |lang| |
|
345 | valid_languages.each do |lang| | |
@@ -362,7 +362,7 class MailerTest < ActiveSupport::TestCase | |||||
362 | token = Token.find(1) |
|
362 | token = Token.find(1) | |
363 | Setting.host_name = 'redmine.foo' |
|
363 | Setting.host_name = 'redmine.foo' | |
364 | Setting.protocol = 'https' |
|
364 | Setting.protocol = 'https' | |
365 |
|
365 | |||
366 | valid_languages.each do |lang| |
|
366 | valid_languages.each do |lang| | |
367 | token.user.update_attribute :language, lang.to_s |
|
367 | token.user.update_attribute :language, lang.to_s | |
368 | token.reload |
|
368 | token.reload | |
@@ -372,7 +372,7 class MailerTest < ActiveSupport::TestCase | |||||
372 | assert mail.body.include?("https://redmine.foo/account/activate?token=#{token.value}") |
|
372 | assert mail.body.include?("https://redmine.foo/account/activate?token=#{token.value}") | |
373 | end |
|
373 | end | |
374 | end |
|
374 | end | |
375 |
|
375 | |||
376 | def test_test |
|
376 | def test_test | |
377 | user = User.find(1) |
|
377 | user = User.find(1) | |
378 | valid_languages.each do |lang| |
|
378 | valid_languages.each do |lang| | |
@@ -380,7 +380,7 class MailerTest < ActiveSupport::TestCase | |||||
380 | assert Mailer.deliver_test(user) |
|
380 | assert Mailer.deliver_test(user) | |
381 | end |
|
381 | end | |
382 | end |
|
382 | end | |
383 |
|
383 | |||
384 | def test_reminders |
|
384 | def test_reminders | |
385 | Mailer.reminders(:days => 42) |
|
385 | Mailer.reminders(:days => 42) | |
386 | assert_equal 1, ActionMailer::Base.deliveries.size |
|
386 | assert_equal 1, ActionMailer::Base.deliveries.size | |
@@ -389,7 +389,7 class MailerTest < ActiveSupport::TestCase | |||||
389 | assert mail.body.include?('Bug #3: Error 281 when updating a recipe') |
|
389 | assert mail.body.include?('Bug #3: Error 281 when updating a recipe') | |
390 | assert_equal '1 issue(s) due in the next 42 days', mail.subject |
|
390 | assert_equal '1 issue(s) due in the next 42 days', mail.subject | |
391 | end |
|
391 | end | |
392 |
|
392 | |||
393 | def test_reminders_for_users |
|
393 | def test_reminders_for_users | |
394 | Mailer.reminders(:days => 42, :users => ['5']) |
|
394 | Mailer.reminders(:days => 42, :users => ['5']) | |
395 | assert_equal 0, ActionMailer::Base.deliveries.size # No mail for dlopper |
|
395 | assert_equal 0, ActionMailer::Base.deliveries.size # No mail for dlopper | |
@@ -399,13 +399,13 class MailerTest < ActiveSupport::TestCase | |||||
399 | assert mail.bcc.include?('dlopper@somenet.foo') |
|
399 | assert mail.bcc.include?('dlopper@somenet.foo') | |
400 | assert mail.body.include?('Bug #3: Error 281 when updating a recipe') |
|
400 | assert mail.body.include?('Bug #3: Error 281 when updating a recipe') | |
401 | end |
|
401 | end | |
402 |
|
402 | |||
403 | def last_email |
|
403 | def last_email | |
404 | mail = ActionMailer::Base.deliveries.last |
|
404 | mail = ActionMailer::Base.deliveries.last | |
405 | assert_not_nil mail |
|
405 | assert_not_nil mail | |
406 |
|
406 | |||
407 | end |
|
407 | end | |
408 |
|
408 | |||
409 | def test_mailer_should_not_change_locale |
|
409 | def test_mailer_should_not_change_locale | |
410 | Setting.default_language = 'en' |
|
410 | Setting.default_language = 'en' | |
411 | # Set current language to italian |
|
411 | # Set current language to italian | |
@@ -416,10 +416,10 class MailerTest < ActiveSupport::TestCase | |||||
416 | Mailer.deliver_account_activated(user) |
|
416 | Mailer.deliver_account_activated(user) | |
417 | mail = ActionMailer::Base.deliveries.last |
|
417 | mail = ActionMailer::Base.deliveries.last | |
418 | assert mail.body.include?('Votre compte') |
|
418 | assert mail.body.include?('Votre compte') | |
419 |
|
419 | |||
420 | assert_equal :it, current_language |
|
420 | assert_equal :it, current_language | |
421 | end |
|
421 | end | |
422 |
|
422 | |||
423 | def test_with_deliveries_off |
|
423 | def test_with_deliveries_off | |
424 | Mailer.with_deliveries false do |
|
424 | Mailer.with_deliveries false do | |
425 | Mailer.deliver_test(User.find(1)) |
|
425 | Mailer.deliver_test(User.find(1)) |
General Comments 0
You need to be logged in to leave comments.
Login now