3 class UserMailerTest < ActionMailer::TestCase
 
   4   def test_html_layout_is_used
 
   5     email = UserMailer.message_notification(create(:message))
 
   7     assert_match(/<html lang=/, email.html_part.body.to_s)
 
  10   def test_gpx_description_tags
 
  11     trace = create(:trace) do |t|
 
  12       create(:tracetag, :trace => t, :tag => "one")
 
  13       create(:tracetag, :trace => t, :tag => "two")
 
  14       create(:tracetag, :trace => t, :tag => "three")
 
  16     email = UserMailer.gpx_success(trace, 100)
 
  18     assert_match("<em>one</em>, <em>two</em>, <em>three</em>", email.html_part.body.to_s)
 
  21   def test_gpx_success_all_traces_link
 
  22     trace = create(:trace)
 
  23     email = UserMailer.gpx_success(trace, 100)
 
  24     body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body)
 
  26     url = Rails.application.routes.url_helpers.url_for(:controller => "traces", :action => "mine", :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  27     assert_select body, "a[href='#{url}']"
 
  30   def test_gpx_success_trace_link
 
  31     trace = create(:trace)
 
  32     email = UserMailer.gpx_success(trace, 100)
 
  33     body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body)
 
  35     url = Rails.application.routes.url_helpers.show_trace_url(trace.user, trace, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  36     assert_select body, "a[href='#{url}']", :text => trace.name
 
  39   def test_gpx_failure_no_trace_link
 
  40     trace = create(:trace)
 
  41     email = UserMailer.gpx_failure(trace, "some error")
 
  42     body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body)
 
  44     url = Rails.application.routes.url_helpers.show_trace_url(trace.user, trace, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  45     assert_select body, "a[href='#{url}']", :count => 0
 
  48   def test_html_encoding
 
  49     user = create(:user, :display_name => "Jack & Jill <br>")
 
  50     message = create(:message, :sender => user)
 
  51     email = UserMailer.message_notification(message)
 
  53     assert_match("Jack & Jill <br>", email.text_part.body.to_s)
 
  54     assert_match("Jack & Jill <br>", email.html_part.body.to_s)
 
  57   def test_diary_comment_notification
 
  58     create(:language, :code => "en")
 
  60     other_user = create(:user)
 
  61     diary_entry = create(:diary_entry, :user => user)
 
  62     diary_comment = create(:diary_comment, :diary_entry => diary_entry)
 
  63     email = UserMailer.diary_comment_notification(diary_comment, other_user)
 
  64     body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body)
 
  66     url = Rails.application.routes.url_helpers.diary_entry_url(user, diary_entry, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  67     unsubscribe_url = Rails.application.routes.url_helpers.diary_entry_unsubscribe_url(user, diary_entry, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  68     assert_select body, "a[href^='#{url}']"
 
  69     assert_select body, "a[href='#{unsubscribe_url}']", :count => 1
 
  72   def test_changeset_comment_notification
 
  73     create(:language, :code => "en")
 
  75     other_user = create(:user)
 
  76     changeset = create(:changeset, :user => user)
 
  77     changeset_comment = create(:changeset_comment, :changeset => changeset)
 
  78     email = UserMailer.changeset_comment_notification(changeset_comment, other_user)
 
  79     body = Rails::Dom::Testing.html_document_fragment.parse(email.html_part.body)
 
  81     url = Rails.application.routes.url_helpers.changeset_url(changeset, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  82     unsubscribe_url = Rails.application.routes.url_helpers.unsubscribe_changeset_url(changeset, :host => Settings.server_url, :protocol => Settings.server_protocol)
 
  83     assert_select body, "a[href^='#{url}']"
 
  84     assert_select body, "a[href='#{unsubscribe_url}']", :count => 1