mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-20 17:20:12 +01:00
Changes you will need to make: * In your environment.rb, you will need to update references to a few files per environment.rb.tmpl * In your environment.rb, you will need to specify the local time zone of the computer that is running your Tracks install. Other notes on my changes: * Modified our code to take advantage of Rails 2.1's slick time zone support. * Upgraded will_paginate for compatibility * Hacked the Selenium on Rails plugin, which has not been updated in some time and does not support Rails 2.1 * Verified that all tests pass on my machine, including Selenium tests -- I'd like confirmation from others, too.
129 lines
3 KiB
Ruby
129 lines
3 KiB
Ruby
require 'abstract_unit'
|
|
|
|
class TestHelperMailer < ActionMailer::Base
|
|
def test
|
|
recipients "test@example.com"
|
|
from "tester@example.com"
|
|
body render(:inline => "Hello, <%= @world %>", :body => { :world => "Earth" })
|
|
end
|
|
end
|
|
|
|
class TestHelperMailerTest < ActionMailer::TestCase
|
|
def test_setup_sets_right_action_mailer_options
|
|
assert_equal :test, ActionMailer::Base.delivery_method
|
|
assert ActionMailer::Base.perform_deliveries
|
|
assert_equal [], ActionMailer::Base.deliveries
|
|
end
|
|
|
|
def test_setup_creates_the_expected_mailer
|
|
assert @expected.is_a?(TMail::Mail)
|
|
assert_equal "1.0", @expected.mime_version
|
|
assert_equal "text/plain", @expected.content_type
|
|
end
|
|
|
|
def test_mailer_class_is_correctly_inferred
|
|
assert_equal TestHelperMailer, self.class.mailer_class
|
|
end
|
|
|
|
def test_determine_default_mailer_raises_correct_error
|
|
assert_raises(ActionMailer::NonInferrableMailerError) do
|
|
self.class.determine_default_mailer("NotAMailerTest")
|
|
end
|
|
end
|
|
|
|
def test_charset_is_utf_8
|
|
assert_equal "utf-8", charset
|
|
end
|
|
|
|
def test_encode
|
|
assert_equal "=?utf-8?Q?=0aasdf=0a?=", encode("\nasdf\n")
|
|
end
|
|
|
|
def test_assert_emails
|
|
assert_nothing_raised do
|
|
assert_emails 1 do
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_repeated_assert_emails_calls
|
|
assert_nothing_raised do
|
|
assert_emails 1 do
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
|
|
assert_nothing_raised do
|
|
assert_emails 2 do
|
|
TestHelperMailer.deliver_test
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_assert_emails_with_no_block
|
|
assert_nothing_raised do
|
|
TestHelperMailer.deliver_test
|
|
assert_emails 1
|
|
end
|
|
|
|
assert_nothing_raised do
|
|
TestHelperMailer.deliver_test
|
|
TestHelperMailer.deliver_test
|
|
assert_emails 3
|
|
end
|
|
end
|
|
|
|
def test_assert_no_emails
|
|
assert_nothing_raised do
|
|
assert_no_emails do
|
|
TestHelperMailer.create_test
|
|
end
|
|
end
|
|
end
|
|
|
|
def test_assert_emails_too_few_sent
|
|
error = assert_raises Test::Unit::AssertionFailedError do
|
|
assert_emails 2 do
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
|
|
assert_match /2 .* but 1/, error.message
|
|
end
|
|
|
|
def test_assert_emails_too_many_sent
|
|
error = assert_raises Test::Unit::AssertionFailedError do
|
|
assert_emails 1 do
|
|
TestHelperMailer.deliver_test
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
|
|
assert_match /1 .* but 2/, error.message
|
|
end
|
|
|
|
def test_assert_no_emails_failure
|
|
error = assert_raises Test::Unit::AssertionFailedError do
|
|
assert_no_emails do
|
|
TestHelperMailer.deliver_test
|
|
end
|
|
end
|
|
|
|
assert_match /0 .* but 1/, error.message
|
|
end
|
|
end
|
|
|
|
class AnotherTestHelperMailerTest < ActionMailer::TestCase
|
|
tests TestHelperMailer
|
|
|
|
def setup
|
|
@test_var = "a value"
|
|
end
|
|
|
|
def test_setup_shouldnt_conflict_with_mailer_setup
|
|
assert @expected.is_a?(TMail::Mail)
|
|
assert_equal 'a value', @test_var
|
|
end
|
|
end
|