mail_helper_test.rb 3.2 KB
Newer Older
1
require "abstract_unit"
2 3 4 5 6 7 8 9 10 11 12

class HelperMailer < ActionMailer::Base
  def use_mail_helper
    @text = "But soft! What light through yonder window breaks? It is the east, " +
            "and Juliet is the sun. Arise, fair sun, and kill the envious moon, " +
            "which is sick and pale with grief that thou, her maid, art far more " +
            "fair than she. Be not her maid, for she is envious! Her vestal " +
            "livery is but sick and green, and none but fools do wear it. Cast " +
            "it off!"

    mail_with_defaults do |format|
13
      format.html { render(inline: "<%= block_format @text %>") }
14 15 16
    end
  end

17 18 19 20
  def use_format_paragraph
    @text = "But soft! What light through yonder window breaks?"

    mail_with_defaults do |format|
21
      format.html { render(inline: "<%= format_paragraph @text, 15, 1 %>") }
22 23 24
    end
  end

25 26 27 28
  def use_format_paragraph_with_long_first_word
    @text = "Antidisestablishmentarianism is very long."

    mail_with_defaults do |format|
29
      format.html { render(inline: "<%= format_paragraph @text, 10, 1 %>") }
30 31 32
    end
  end

33 34
  def use_mailer
    mail_with_defaults do |format|
35
      format.html { render(inline: "<%= mailer.message.subject %>") }
36 37 38 39 40
    end
  end

  def use_message
    mail_with_defaults do |format|
41
      format.html { render(inline: "<%= message.subject %>") }
42 43 44
    end
  end

45 46 47 48 49 50 51 52 53 54 55 56 57
  def use_block_format
    @text = <<-TEXT
This is the
first     paragraph.

The second
   paragraph.

* item1 * item2
  * item3
    TEXT

    mail_with_defaults do |format|
58
      format.html { render(inline: "<%= block_format @text %>") }
59 60 61
    end
  end

62 63 64 65 66 67
  def use_cache
    mail_with_defaults do |format|
      format.html { render(inline: "<% cache(:foo) do %>Greetings from a cache helper block<% end %>") }
    end
  end

68
  private
69

70 71 72 73
    def mail_with_defaults(&block)
      mail(to: "test@localhost", from: "tester@example.com",
            subject: "using helpers", &block)
    end
74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
end

class MailerHelperTest < ActionMailer::TestCase
  def test_use_mail_helper
    mail = HelperMailer.use_mail_helper
    assert_match %r{  But soft!}, mail.body.encoded
    assert_match %r{east, and\r\n  Juliet}, mail.body.encoded
  end

  def test_use_mailer
    mail = HelperMailer.use_mailer
    assert_match "using helpers", mail.body.encoded
  end

  def test_use_message
    mail = HelperMailer.use_message
    assert_match "using helpers", mail.body.encoded
  end
92 93 94 95 96

  def test_use_format_paragraph
    mail = HelperMailer.use_format_paragraph
    assert_match " But soft! What\r\n light through\r\n yonder window\r\n breaks?", mail.body.encoded
  end
97

98 99 100 101 102
  def test_use_format_paragraph_with_long_first_word
    mail = HelperMailer.use_format_paragraph_with_long_first_word
    assert_equal " Antidisestablishmentarianism\r\n is very\r\n long.", mail.body.encoded
  end

103 104 105 106 107 108 109 110 111 112 113 114 115
  def test_use_block_format
    mail = HelperMailer.use_block_format
    expected = <<-TEXT
  This is the first paragraph.

  The second paragraph.

  * item1
  * item2
  * item3
    TEXT
    assert_equal expected.gsub("\n", "\r\n"), mail.body.encoded
  end
116

117 118 119 120 121 122 123
  def test_use_cache
    assert_nothing_raised do
      mail = HelperMailer.use_cache
      assert_equal "Greetings from a cache helper block", mail.body.encoded
    end
  end
end