2008-01-05 08:31:04 -05:00
|
|
|
require 'abstract_unit'
|
|
|
|
|
2008-06-10 17:01:05 -04:00
|
|
|
class AssertDifferenceTest < ActiveSupport::TestCase
|
2007-05-01 17:02:37 -04:00
|
|
|
def setup
|
2007-05-07 23:54:34 -04:00
|
|
|
@object = Class.new do
|
2009-10-13 00:03:02 -04:00
|
|
|
attr_accessor :num
|
2007-05-07 23:54:34 -04:00
|
|
|
def increment
|
|
|
|
self.num += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def decrement
|
|
|
|
self.num -= 1
|
|
|
|
end
|
2009-10-13 00:03:02 -04:00
|
|
|
end.new
|
2007-05-07 23:54:34 -04:00
|
|
|
@object.num = 0
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2007-09-29 18:08:41 -04:00
|
|
|
|
2012-12-28 12:34:26 -05:00
|
|
|
def test_assert_not
|
2012-12-28 23:47:42 -05:00
|
|
|
assert_equal true, assert_not(nil)
|
|
|
|
assert_equal true, assert_not(false)
|
2012-12-28 12:34:26 -05:00
|
|
|
|
2012-12-28 23:47:42 -05:00
|
|
|
e = assert_raises(MiniTest::Assertion) { assert_not true }
|
|
|
|
assert_equal 'Expected true to be nil or false', e.message
|
2012-12-28 12:34:26 -05:00
|
|
|
|
2012-12-28 23:47:42 -05:00
|
|
|
e = assert_raises(MiniTest::Assertion) { assert_not true, 'custom' }
|
|
|
|
assert_equal 'custom', e.message
|
2012-12-28 12:34:26 -05:00
|
|
|
end
|
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_assert_no_difference
|
|
|
|
assert_no_difference '@object.num' do
|
|
|
|
# ...
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_assert_difference
|
|
|
|
assert_difference '@object.num', +1 do
|
|
|
|
@object.increment
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_assert_difference_with_implicit_difference
|
|
|
|
assert_difference '@object.num' do
|
|
|
|
@object.increment
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_arbitrary_expression
|
|
|
|
assert_difference '@object.num + 1', +2 do
|
|
|
|
@object.increment
|
|
|
|
@object.increment
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_negative_differences
|
|
|
|
assert_difference '@object.num', -1 do
|
|
|
|
@object.decrement
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-05-08 02:27:10 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_expression_is_evaluated_in_the_appropriate_scope
|
|
|
|
silence_warnings do
|
|
|
|
local_scope = local_scope = 'foo'
|
|
|
|
assert_difference('local_scope; @object.num') { @object.increment }
|
2007-05-08 02:27:10 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2007-09-29 18:08:41 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_array_of_expressions
|
|
|
|
assert_difference [ '@object.num', '@object.num + 1' ], +1 do
|
|
|
|
@object.increment
|
2007-06-01 16:20:19 -04:00
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2008-10-02 21:58:28 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_array_of_expressions_identify_failure
|
|
|
|
assert_raises(MiniTest::Assertion) do
|
|
|
|
assert_difference ['@object.num', '1 + 1'] do
|
|
|
|
@object.increment
|
2008-10-02 21:58:28 -04:00
|
|
|
end
|
|
|
|
end
|
2012-06-11 12:43:28 -04:00
|
|
|
end
|
2008-10-02 21:58:28 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_array_of_expressions_identify_failure_when_message_provided
|
|
|
|
assert_raises(MiniTest::Assertion) do
|
|
|
|
assert_difference ['@object.num', '1 + 1'], 1, 'something went wrong' do
|
|
|
|
@object.increment
|
2008-10-02 21:58:28 -04:00
|
|
|
end
|
|
|
|
end
|
2007-06-01 16:20:19 -04:00
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2007-10-26 19:24:10 -04:00
|
|
|
|
2010-03-30 17:18:44 -04:00
|
|
|
class AssertBlankTest < ActiveSupport::TestCase
|
|
|
|
BLANK = [ EmptyTrue.new, nil, false, '', ' ', " \n\t \r ", [], {} ]
|
2010-03-30 17:39:00 -04:00
|
|
|
NOT_BLANK = [ EmptyFalse.new, Object.new, true, 0, 1, 'x', [nil], { nil => 0 } ]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-03-30 17:18:44 -04:00
|
|
|
def test_assert_blank_true
|
2013-01-05 11:59:36 -05:00
|
|
|
BLANK.each { |value|
|
|
|
|
assert_deprecated { assert_blank value }
|
|
|
|
}
|
2010-03-30 17:18:44 -04:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2010-03-30 17:18:44 -04:00
|
|
|
def test_assert_blank_false
|
|
|
|
NOT_BLANK.each { |v|
|
2013-01-05 11:59:36 -05:00
|
|
|
assert_deprecated {
|
|
|
|
begin
|
|
|
|
assert_blank v
|
|
|
|
fail 'should not get to here'
|
|
|
|
rescue Exception => e
|
|
|
|
assert_match(/is not blank/, e.message)
|
|
|
|
end
|
|
|
|
}
|
2010-03-30 17:18:44 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2010-03-30 17:39:00 -04:00
|
|
|
class AssertPresentTest < ActiveSupport::TestCase
|
|
|
|
BLANK = [ EmptyTrue.new, nil, false, '', ' ', " \n\t \r ", [], {} ]
|
|
|
|
NOT_BLANK = [ EmptyFalse.new, Object.new, true, 0, 1, 'x', [nil], { nil => 0 } ]
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-09-28 16:58:27 -04:00
|
|
|
def test_assert_present_true
|
2013-01-05 11:59:36 -05:00
|
|
|
NOT_BLANK.each { |v|
|
|
|
|
assert_deprecated { assert_present v }
|
|
|
|
}
|
2010-03-30 17:39:00 -04:00
|
|
|
end
|
2010-08-14 01:13:00 -04:00
|
|
|
|
2012-09-28 16:58:27 -04:00
|
|
|
def test_assert_present_false
|
2010-03-30 17:39:00 -04:00
|
|
|
BLANK.each { |v|
|
2013-01-05 11:59:36 -05:00
|
|
|
assert_deprecated {
|
|
|
|
begin
|
|
|
|
assert_present v
|
|
|
|
fail 'should not get to here'
|
|
|
|
rescue Exception => e
|
|
|
|
assert_match(/is blank/, e.message)
|
|
|
|
end
|
|
|
|
}
|
2010-03-30 17:39:00 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2007-10-26 19:38:34 -04:00
|
|
|
class AlsoDoingNothingTest < ActiveSupport::TestCase
|
|
|
|
end
|
2009-10-14 19:12:19 -04:00
|
|
|
|
|
|
|
# Setup and teardown callbacks.
|
|
|
|
class SetupAndTeardownTest < ActiveSupport::TestCase
|
|
|
|
setup :reset_callback_record, :foo
|
2012-08-15 08:43:04 -04:00
|
|
|
teardown :foo, :sentinel
|
2009-10-14 19:12:19 -04:00
|
|
|
|
|
|
|
def test_inherited_setup_callbacks
|
2009-12-30 05:09:27 -05:00
|
|
|
assert_equal [:reset_callback_record, :foo], self.class._setup_callbacks.map(&:raw_filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
assert_equal [:foo], @called_back
|
2012-08-15 08:43:04 -04:00
|
|
|
assert_equal [:foo, :sentinel], self.class._teardown_callbacks.map(&:raw_filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
2009-12-30 05:09:27 -05:00
|
|
|
|
2009-10-14 19:12:19 -04:00
|
|
|
def reset_callback_record
|
|
|
|
@called_back = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
|
|
|
@called_back << :foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def sentinel
|
2012-08-15 08:43:04 -04:00
|
|
|
assert_equal [:foo], @called_back
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
class SubclassSetupAndTeardownTest < SetupAndTeardownTest
|
|
|
|
setup :bar
|
|
|
|
teardown :bar
|
|
|
|
|
|
|
|
def test_inherited_setup_callbacks
|
2009-12-30 05:09:27 -05:00
|
|
|
assert_equal [:reset_callback_record, :foo, :bar], self.class._setup_callbacks.map(&:raw_filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
assert_equal [:foo, :bar], @called_back
|
2012-08-15 08:43:04 -04:00
|
|
|
assert_equal [:foo, :sentinel, :bar], self.class._teardown_callbacks.map(&:raw_filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
protected
|
|
|
|
def bar
|
|
|
|
@called_back << :bar
|
|
|
|
end
|
|
|
|
|
|
|
|
def sentinel
|
2012-08-15 08:43:04 -04:00
|
|
|
assert_equal [:foo, :bar, :bar], @called_back
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
end
|
2012-09-26 14:16:43 -04:00
|
|
|
|
|
|
|
|
|
|
|
class TestCaseTaggedLoggingTest < ActiveSupport::TestCase
|
|
|
|
def before_setup
|
|
|
|
require 'stringio'
|
|
|
|
@out = StringIO.new
|
|
|
|
self.tagged_logger = ActiveSupport::TaggedLogging.new(Logger.new(@out))
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_logs_tagged_with_current_test_case
|
2012-12-26 23:02:24 -05:00
|
|
|
assert_match "#{self.class}: #{__name__}\n", @out.string
|
2012-09-26 14:16:43 -04:00
|
|
|
end
|
|
|
|
end
|