2017-07-09 20:06:36 +08:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 21:39:13 +08:00
|
|
|
|
2016-08-07 00:03:25 +08:00
|
|
|
require "abstract_unit"
|
2008-01-05 21:31:04 +08:00
|
|
|
|
2008-06-11 05:01:05 +08:00
|
|
|
class AssertDifferenceTest < ActiveSupport::TestCase
|
2007-05-02 05:02:37 +08:00
|
|
|
def setup
|
2007-05-08 11:54:34 +08:00
|
|
|
@object = Class.new do
|
2009-10-13 12:03:02 +08:00
|
|
|
attr_accessor :num
|
2007-05-08 11:54:34 +08:00
|
|
|
def increment
|
|
|
|
self.num += 1
|
|
|
|
end
|
|
|
|
|
|
|
|
def decrement
|
|
|
|
self.num -= 1
|
|
|
|
end
|
2009-10-13 12:03:02 +08:00
|
|
|
end.new
|
2007-05-08 11:54:34 +08:00
|
|
|
@object.num = 0
|
2007-05-02 05:02:37 +08:00
|
|
|
end
|
2007-09-30 06:08:41 +08:00
|
|
|
|
2012-12-29 01:34:26 +08:00
|
|
|
def test_assert_not
|
2012-12-29 12:47:42 +08:00
|
|
|
assert_equal true, assert_not(nil)
|
|
|
|
assert_equal true, assert_not(false)
|
2012-12-29 01:34:26 +08:00
|
|
|
|
2013-12-18 15:51:24 +08:00
|
|
|
e = assert_raises(Minitest::Assertion) { assert_not true }
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_equal "Expected true to be nil or false", e.message
|
2012-12-29 01:34:26 +08:00
|
|
|
|
2016-08-07 00:03:25 +08:00
|
|
|
e = assert_raises(Minitest::Assertion) { assert_not true, "custom" }
|
|
|
|
assert_equal "custom", e.message
|
2012-12-29 01:34:26 +08:00
|
|
|
end
|
|
|
|
|
2014-06-13 09:22:58 +08:00
|
|
|
def test_assert_no_difference_pass
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_no_difference "@object.num" do
|
2012-06-12 00:43:28 +08:00
|
|
|
# ...
|
2007-05-02 05:02:37 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-05-08 11:54:34 +08:00
|
|
|
|
2014-06-13 09:22:58 +08:00
|
|
|
def test_assert_no_difference_fail
|
|
|
|
error = assert_raises(Minitest::Assertion) do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_no_difference "@object.num" do
|
2014-06-13 09:22:58 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "\"@object.num\" didn't change by 0.\nExpected: 0\n Actual: 1", error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_difference_with_message_fail
|
|
|
|
error = assert_raises(Minitest::Assertion) do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_no_difference "@object.num", "Object Changed" do
|
2014-06-13 09:22:58 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "Object Changed.\n\"@object.num\" didn't change by 0.\nExpected: 0\n Actual: 1", error.message
|
|
|
|
end
|
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_assert_difference
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference "@object.num", +1 do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
2007-05-02 05:02:37 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-05-02 05:02:37 +08:00
|
|
|
|
2015-09-25 00:32:08 +08:00
|
|
|
def test_assert_difference_retval
|
2016-08-07 00:03:25 +08:00
|
|
|
incremented = assert_difference "@object.num", +1 do
|
2015-09-25 00:32:08 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal incremented, 1
|
|
|
|
end
|
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_assert_difference_with_implicit_difference
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference "@object.num" do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
2007-05-08 11:54:34 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-05-02 05:02:37 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_arbitrary_expression
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference "@object.num + 1", +2 do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
|
|
|
@object.increment
|
2007-05-08 11:54:34 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-05-08 11:54:34 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_negative_differences
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference "@object.num", -1 do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.decrement
|
2007-05-08 11:54:34 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-05-08 14:27:10 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_expression_is_evaluated_in_the_appropriate_scope
|
|
|
|
silence_warnings do
|
2017-10-28 16:39:58 +08:00
|
|
|
local_scope = "foo"
|
2017-09-01 17:40:19 +08:00
|
|
|
local_scope = local_scope # to suppress unused variable warning
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference("local_scope; @object.num") { @object.increment }
|
2007-05-08 14:27:10 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2007-09-30 06:08:41 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_array_of_expressions
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference [ "@object.num", "@object.num + 1" ], +1 do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
2007-06-02 04:20:19 +08:00
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2008-10-03 09:58:28 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_array_of_expressions_identify_failure
|
2013-12-18 15:51:24 +08:00
|
|
|
assert_raises(Minitest::Assertion) do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference ["@object.num", "1 + 1"] do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
2008-10-03 09:58:28 +08:00
|
|
|
end
|
|
|
|
end
|
2012-06-12 00:43:28 +08:00
|
|
|
end
|
2008-10-03 09:58:28 +08:00
|
|
|
|
2012-06-12 00:43:28 +08:00
|
|
|
def test_array_of_expressions_identify_failure_when_message_provided
|
2013-12-18 15:51:24 +08:00
|
|
|
assert_raises(Minitest::Assertion) do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_difference ["@object.num", "1 + 1"], 1, "something went wrong" do
|
2012-06-12 00:43:28 +08:00
|
|
|
@object.increment
|
2008-10-03 09:58:28 +08:00
|
|
|
end
|
|
|
|
end
|
2007-06-02 04:20:19 +08:00
|
|
|
end
|
2016-06-14 04:28:05 +08:00
|
|
|
|
2018-01-19 04:20:34 +08:00
|
|
|
def test_hash_of_expressions
|
|
|
|
assert_difference "@object.num" => 1, "@object.num + 1" => 1 do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_hash_of_expressions_with_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_difference({ "@object.num" => 0 }, "Object Changed") do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "Object Changed.\n\"@object.num\" didn't change by 0.\nExpected: 0\n Actual: 1", error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_hash_of_lambda_expressions
|
|
|
|
assert_difference -> { @object.num } => 1, -> { @object.num + 1 } => 1 do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_hash_of_expressions_identify_failure
|
|
|
|
assert_raises(Minitest::Assertion) do
|
|
|
|
assert_difference "@object.num" => 1, "1 + 1" => 1 do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-14 04:28:05 +08:00
|
|
|
def test_assert_changes_pass
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num" do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_pass_with_lambda
|
|
|
|
assert_changes -> { @object.num } do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_option
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", from: 0 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_option_with_wrong_value
|
|
|
|
assert_raises Minitest::Assertion do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", from: -1 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-29 08:05:32 +08:00
|
|
|
def test_assert_changes_with_from_option_with_nil
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_changes "@object.num", from: nil do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "\"@object.num\" isn't nil", error.message
|
|
|
|
end
|
|
|
|
|
2016-06-14 04:28:05 +08:00
|
|
|
def test_assert_changes_with_to_option
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", to: 1 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-31 02:21:28 +08:00
|
|
|
def test_assert_changes_with_to_option_but_no_change_has_special_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_changes "@object.num", to: 0 do
|
|
|
|
# no changes
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "\"@object.num\" didn't change. It was already 0", error.message
|
|
|
|
end
|
|
|
|
|
2016-06-14 04:28:05 +08:00
|
|
|
def test_assert_changes_with_wrong_to_option
|
|
|
|
assert_raises Minitest::Assertion do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", to: 2 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_option_and_to_option
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", from: 0, to: 1 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_and_to_options_and_wrong_to_value
|
|
|
|
assert_raises Minitest::Assertion do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_changes "@object.num", from: 0, to: 2 do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_works_with_any_object
|
2017-11-07 16:28:19 +08:00
|
|
|
# Silences: instance variable @new_object not initialized.
|
2016-06-14 04:28:05 +08:00
|
|
|
retval = silence_warnings do
|
|
|
|
assert_changes :@new_object, from: nil, to: 42 do
|
|
|
|
@new_object = 42
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 42, retval
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_works_with_nil
|
|
|
|
oldval = @object
|
|
|
|
|
|
|
|
retval = assert_changes :@object, from: oldval, to: nil do
|
|
|
|
@object = nil
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_nil retval
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_to_and_case_operator
|
|
|
|
token = nil
|
|
|
|
|
2017-11-07 16:28:19 +08:00
|
|
|
assert_changes -> { token }, to: /\w{32}/ do
|
2016-06-14 04:28:05 +08:00
|
|
|
token = SecureRandom.hex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_to_and_from_and_case_operator
|
|
|
|
token = SecureRandom.hex
|
|
|
|
|
2017-09-01 17:40:19 +08:00
|
|
|
assert_changes -> { token }, from: /\w{32}/, to: /\w{32}/ do
|
2016-06-14 04:28:05 +08:00
|
|
|
token = SecureRandom.hex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-31 07:47:48 +08:00
|
|
|
def test_assert_changes_with_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_changes "@object.num", "@object.num should 1", to: 1 do
|
2017-10-31 02:21:28 +08:00
|
|
|
@object.decrement
|
2016-08-31 07:47:48 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "@object.num should 1.\n\"@object.num\" didn't change to 1", error.message
|
|
|
|
end
|
|
|
|
|
2016-06-14 04:28:05 +08:00
|
|
|
def test_assert_no_changes_pass
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_no_changes "@object.num" do
|
2016-06-14 04:28:05 +08:00
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
2016-08-07 00:03:25 +08:00
|
|
|
assert_no_changes "@object.num", "@object.num should not change" do
|
2016-06-14 04:28:05 +08:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-11-07 16:28:19 +08:00
|
|
|
assert_equal "@object.num should not change.\n\"@object.num\" did change to 1", error.message
|
2016-06-14 04:28:05 +08:00
|
|
|
end
|
2007-05-02 05:02:37 +08:00
|
|
|
end
|
2007-10-27 07:24:10 +08:00
|
|
|
|
2009-10-15 07:12:19 +08:00
|
|
|
# Setup and teardown callbacks.
|
|
|
|
class SetupAndTeardownTest < ActiveSupport::TestCase
|
|
|
|
setup :reset_callback_record, :foo
|
2012-08-15 20:43:04 +08:00
|
|
|
teardown :foo, :sentinel
|
2009-10-15 07:12:19 +08:00
|
|
|
|
|
|
|
def test_inherited_setup_callbacks
|
2009-12-30 18:09:27 +08:00
|
|
|
assert_equal [:reset_callback_record, :foo], self.class._setup_callbacks.map(&:raw_filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
assert_equal [:foo], @called_back
|
2012-08-15 20:43:04 +08:00
|
|
|
assert_equal [:foo, :sentinel], self.class._teardown_callbacks.map(&:raw_filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
end
|
|
|
|
|
2016-12-23 19:31:57 +08:00
|
|
|
private
|
2009-12-30 18:09:27 +08:00
|
|
|
|
2009-10-15 07:12:19 +08:00
|
|
|
def reset_callback_record
|
|
|
|
@called_back = []
|
|
|
|
end
|
|
|
|
|
|
|
|
def foo
|
|
|
|
@called_back << :foo
|
|
|
|
end
|
|
|
|
|
|
|
|
def sentinel
|
2012-08-15 20:43:04 +08:00
|
|
|
assert_equal [:foo], @called_back
|
2009-10-15 07:12:19 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
class SubclassSetupAndTeardownTest < SetupAndTeardownTest
|
|
|
|
setup :bar
|
|
|
|
teardown :bar
|
|
|
|
|
|
|
|
def test_inherited_setup_callbacks
|
2009-12-30 18:09:27 +08:00
|
|
|
assert_equal [:reset_callback_record, :foo, :bar], self.class._setup_callbacks.map(&:raw_filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
assert_equal [:foo, :bar], @called_back
|
2012-08-15 20:43:04 +08:00
|
|
|
assert_equal [:foo, :sentinel, :bar], self.class._teardown_callbacks.map(&:raw_filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
end
|
|
|
|
|
2016-12-23 19:31:57 +08:00
|
|
|
private
|
2009-10-15 07:12:19 +08:00
|
|
|
def bar
|
|
|
|
@called_back << :bar
|
|
|
|
end
|
|
|
|
|
|
|
|
def sentinel
|
2012-08-15 20:43:04 +08:00
|
|
|
assert_equal [:foo, :bar, :bar], @called_back
|
2009-10-15 07:12:19 +08:00
|
|
|
end
|
|
|
|
end
|
2012-09-27 02:16:43 +08:00
|
|
|
|
|
|
|
class TestCaseTaggedLoggingTest < ActiveSupport::TestCase
|
|
|
|
def before_setup
|
2016-08-07 00:03:25 +08:00
|
|
|
require "stringio"
|
2012-09-27 02:16:43 +08:00
|
|
|
@out = StringIO.new
|
|
|
|
self.tagged_logger = ActiveSupport::TaggedLogging.new(Logger.new(@out))
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_logs_tagged_with_current_test_case
|
2013-05-07 08:38:45 +08:00
|
|
|
assert_match "#{self.class}: #{name}\n", @out.string
|
2012-09-27 02:16:43 +08:00
|
|
|
end
|
|
|
|
end
|
2014-09-08 20:32:16 +08:00
|
|
|
|
|
|
|
class TestOrderTest < ActiveSupport::TestCase
|
|
|
|
def setup
|
|
|
|
@original_test_order = ActiveSupport::TestCase.test_order
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
ActiveSupport::TestCase.test_order = @original_test_order
|
|
|
|
end
|
|
|
|
|
2015-01-03 09:43:06 +08:00
|
|
|
def test_defaults_to_random
|
2014-09-08 20:32:16 +08:00
|
|
|
ActiveSupport::TestCase.test_order = nil
|
|
|
|
|
2015-01-03 09:43:06 +08:00
|
|
|
assert_equal :random, ActiveSupport::TestCase.test_order
|
2014-09-08 20:32:16 +08:00
|
|
|
|
2015-01-03 09:43:06 +08:00
|
|
|
assert_equal :random, ActiveSupport.test_order
|
2014-09-08 20:32:16 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_test_order_is_global
|
2015-01-03 09:43:06 +08:00
|
|
|
ActiveSupport::TestCase.test_order = :sorted
|
2014-09-08 20:32:16 +08:00
|
|
|
|
|
|
|
assert_equal :sorted, ActiveSupport.test_order
|
|
|
|
assert_equal :sorted, ActiveSupport::TestCase.test_order
|
|
|
|
assert_equal :sorted, self.class.test_order
|
|
|
|
assert_equal :sorted, Class.new(ActiveSupport::TestCase).test_order
|
2015-01-03 09:43:06 +08:00
|
|
|
|
|
|
|
ActiveSupport.test_order = :random
|
|
|
|
|
|
|
|
assert_equal :random, ActiveSupport.test_order
|
|
|
|
assert_equal :random, ActiveSupport::TestCase.test_order
|
|
|
|
assert_equal :random, self.class.test_order
|
|
|
|
assert_equal :random, Class.new(ActiveSupport::TestCase).test_order
|
2014-09-08 20:32:16 +08:00
|
|
|
end
|
|
|
|
end
|