2008-01-05 08:31:04 -05:00
|
|
|
require 'abstract_unit'
|
2009-04-22 20:41:28 -04:00
|
|
|
require 'active_support/core_ext/kernel/reporting'
|
2008-01-05 08:31:04 -05:00
|
|
|
|
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
|
|
|
|
|
|
|
if lambda { }.respond_to?(:binding)
|
|
|
|
def test_assert_no_difference
|
|
|
|
assert_no_difference '@object.num' do
|
|
|
|
# ...
|
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
|
2007-09-29 18:08:41 -04:00
|
|
|
def test_assert_difference
|
|
|
|
assert_difference '@object.num', +1 do
|
|
|
|
@object.increment
|
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
|
|
|
|
2007-09-29 18:08:41 -04:00
|
|
|
def test_assert_difference_with_implicit_difference
|
|
|
|
assert_difference '@object.num' do
|
|
|
|
@object.increment
|
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
|
2007-09-29 18:08:41 -04:00
|
|
|
def test_arbitrary_expression
|
|
|
|
assert_difference '@object.num + 1', +2 do
|
|
|
|
@object.increment
|
|
|
|
@object.increment
|
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
|
|
|
|
2007-09-29 18:08:41 -04:00
|
|
|
def test_negative_differences
|
|
|
|
assert_difference '@object.num', -1 do
|
|
|
|
@object.decrement
|
|
|
|
end
|
2007-05-07 23:54:34 -04:00
|
|
|
end
|
2007-05-08 02:27:10 -04:00
|
|
|
|
2007-09-29 18:08:41 -04:00
|
|
|
def test_expression_is_evaluated_in_the_appropriate_scope
|
|
|
|
local_scope = 'foo'
|
|
|
|
silence_warnings do
|
|
|
|
assert_difference('local_scope; @object.num') { @object.increment }
|
|
|
|
end
|
2007-05-08 02:27:10 -04:00
|
|
|
end
|
2007-09-29 18:08:41 -04:00
|
|
|
|
|
|
|
def test_array_of_expressions
|
|
|
|
assert_difference [ '@object.num', '@object.num + 1' ], +1 do
|
|
|
|
@object.increment
|
|
|
|
end
|
2007-06-01 16:20:19 -04:00
|
|
|
end
|
2008-10-02 21:58:28 -04:00
|
|
|
|
|
|
|
def test_array_of_expressions_identify_failure
|
|
|
|
assert_difference ['@object.num', '1 + 1'] do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
fail 'should not get to here'
|
2008-11-07 13:00:13 -05:00
|
|
|
rescue Exception => e
|
2009-02-06 12:55:18 -05:00
|
|
|
assert_match(/didn't change by/, e.message)
|
|
|
|
assert_match(/expected but was/, e.message)
|
2008-10-02 21:58:28 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_array_of_expressions_identify_failure_when_message_provided
|
|
|
|
assert_difference ['@object.num', '1 + 1'], 1, 'something went wrong' do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
fail 'should not get to here'
|
2008-11-07 13:00:13 -05:00
|
|
|
rescue Exception => e
|
2009-02-06 12:55:18 -05:00
|
|
|
assert_match(/something went wrong/, e.message)
|
|
|
|
assert_match(/didn't change by/, e.message)
|
|
|
|
assert_match(/expected but was/, e.message)
|
2008-10-02 21:58:28 -04:00
|
|
|
end
|
2007-09-29 18:08:41 -04:00
|
|
|
else
|
|
|
|
def default_test; 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
|
|
|
|
2007-10-26 19:38:34 -04:00
|
|
|
# These should always pass
|
2008-11-22 18:27:48 -05:00
|
|
|
if ActiveSupport::Testing.const_defined?(:Default)
|
2008-11-07 12:45:48 -05:00
|
|
|
class NotTestingThingsTest < Test::Unit::TestCase
|
|
|
|
include ActiveSupport::Testing::Default
|
|
|
|
end
|
2007-10-26 19:24:10 -04:00
|
|
|
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
|
|
|
|
teardown :foo, :sentinel, :foo
|
|
|
|
|
|
|
|
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
|
2009-12-30 05:09:27 -05:00
|
|
|
assert_equal [:foo, :sentinel, :foo], 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
|
|
|
|
assert_equal [:foo, :foo], @called_back
|
|
|
|
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
|
2009-12-30 05:09:27 -05:00
|
|
|
assert_equal [:foo, :sentinel, :foo, :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
|
|
|
|
assert_equal [:foo, :bar, :bar, :foo], @called_back
|
|
|
|
end
|
|
|
|
end
|