2017-07-09 08:06:36 -04:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 09:39:13 -04:00
|
|
|
|
2018-09-29 20:50:43 -04:00
|
|
|
require_relative "abstract_unit"
|
2008-01-05 08:31:04 -05:00
|
|
|
|
2018-04-07 23:14:06 -04:00
|
|
|
class AssertionsTest < 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
|
|
|
|
2013-12-18 02:51:24 -05:00
|
|
|
e = assert_raises(Minitest::Assertion) { assert_not true }
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_equal "Expected true to be nil or false", e.message
|
2012-12-28 12:34:26 -05:00
|
|
|
|
2016-08-06 12:03:25 -04:00
|
|
|
e = assert_raises(Minitest::Assertion) { assert_not true, "custom" }
|
|
|
|
assert_equal "custom", e.message
|
2012-12-28 12:34:26 -05:00
|
|
|
end
|
|
|
|
|
2014-06-12 21:22:58 -04:00
|
|
|
def test_assert_no_difference_pass
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_no_difference "@object.num" do
|
2012-06-11 12:43:28 -04:00
|
|
|
# ...
|
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
|
|
|
|
2014-06-12 21:22:58 -04:00
|
|
|
def test_assert_no_difference_fail
|
|
|
|
error = assert_raises(Minitest::Assertion) do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_no_difference "@object.num" do
|
2014-06-12 21:22:58 -04: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-06 12:03:25 -04:00
|
|
|
assert_no_difference "@object.num", "Object Changed" do
|
2014-06-12 21:22:58 -04: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
|
2018-07-08 09:15:16 -04:00
|
|
|
|
|
|
|
def test_assert_no_difference_with_multiple_expressions_pass
|
|
|
|
another_object = @object.dup
|
|
|
|
assert_no_difference ["@object.num", -> { another_object.num }] do
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_difference_with_multiple_expressions_fail
|
|
|
|
another_object = @object.dup
|
|
|
|
assert_raises(Minitest::Assertion) do
|
|
|
|
assert_no_difference ["@object.num", -> { another_object.num }], "Another Object Changed" do
|
|
|
|
another_object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
2014-06-12 21:22:58 -04:00
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_assert_difference
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference "@object.num", +1 do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
|
|
|
2015-09-24 12:32:08 -04:00
|
|
|
def test_assert_difference_retval
|
2016-08-06 12:03:25 -04:00
|
|
|
incremented = assert_difference "@object.num", +1 do
|
2015-09-24 12:32:08 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal incremented, 1
|
|
|
|
end
|
|
|
|
|
2012-06-11 12:43:28 -04:00
|
|
|
def test_assert_difference_with_implicit_difference
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference "@object.num" do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference "@object.num + 1", +2 do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference "@object.num", -1 do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
2017-10-28 04:39:58 -04:00
|
|
|
local_scope = "foo"
|
2019-01-09 04:09:01 -05:00
|
|
|
_ = local_scope # to suppress unused variable warning
|
2016-08-06 12:03:25 -04:00
|
|
|
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
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference [ "@object.num", "@object.num + 1" ], +1 do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
2013-12-18 02:51:24 -05:00
|
|
|
assert_raises(Minitest::Assertion) do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference ["@object.num", "1 + 1"] do
|
2012-06-11 12:43:28 -04:00
|
|
|
@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
|
2013-12-18 02:51:24 -05:00
|
|
|
assert_raises(Minitest::Assertion) do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_difference ["@object.num", "1 + 1"], 1, "something went wrong" do
|
2012-06-11 12:43:28 -04:00
|
|
|
@object.increment
|
2008-10-02 21:58:28 -04:00
|
|
|
end
|
|
|
|
end
|
2007-06-01 16:20:19 -04:00
|
|
|
end
|
2016-06-13 16:28:05 -04:00
|
|
|
|
2018-01-18 15:20:34 -05: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-13 16:28:05 -04:00
|
|
|
def test_assert_changes_pass
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num" do
|
2016-06-13 16:28:05 -04: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-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", from: 0 do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_option_with_wrong_value
|
|
|
|
assert_raises Minitest::Assertion do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", from: -1 do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-28 20:05:32 -04: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
|
2019-11-01 15:25:33 -04:00
|
|
|
assert_equal "Expected change from nil", error.message
|
2016-08-28 20:05:32 -04:00
|
|
|
end
|
|
|
|
|
2016-06-13 16:28:05 -04:00
|
|
|
def test_assert_changes_with_to_option
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", to: 1 do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-10-30 14:21:28 -04: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
|
|
|
|
|
2019-11-01 15:25:33 -04:00
|
|
|
assert_equal "\"@object.num\" didn't change. It was already 0.\nExpected 0 to not be equal to 0.", error.message
|
2017-10-30 14:21:28 -04:00
|
|
|
end
|
|
|
|
|
2016-06-13 16:28:05 -04:00
|
|
|
def test_assert_changes_with_wrong_to_option
|
|
|
|
assert_raises Minitest::Assertion do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", to: 2 do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_from_option_and_to_option
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", from: 0, to: 1 do
|
2016-06-13 16:28:05 -04: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-06 12:03:25 -04:00
|
|
|
assert_changes "@object.num", from: 0, to: 2 do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_works_with_any_object
|
2017-11-07 03:28:19 -05:00
|
|
|
# Silences: instance variable @new_object not initialized.
|
2016-06-13 16:28:05 -04: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 03:28:19 -05:00
|
|
|
assert_changes -> { token }, to: /\w{32}/ do
|
2016-06-13 16:28:05 -04:00
|
|
|
token = SecureRandom.hex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_changes_with_to_and_from_and_case_operator
|
|
|
|
token = SecureRandom.hex
|
|
|
|
|
2017-09-01 05:40:19 -04:00
|
|
|
assert_changes -> { token }, from: /\w{32}/, to: /\w{32}/ do
|
2016-06-13 16:28:05 -04:00
|
|
|
token = SecureRandom.hex
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-08-30 19:47:48 -04:00
|
|
|
def test_assert_changes_with_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
2019-11-01 15:25:33 -04:00
|
|
|
assert_changes "@object.num", "@object.num should be 1", to: 1 do
|
2017-10-30 14:21:28 -04:00
|
|
|
@object.decrement
|
2016-08-30 19:47:48 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-01 15:25:33 -04:00
|
|
|
assert_equal "@object.num should be 1.\nExpected change to 1\n", error.message
|
2016-08-30 19:47:48 -04:00
|
|
|
end
|
|
|
|
|
2016-06-13 16:28:05 -04:00
|
|
|
def test_assert_no_changes_pass
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_no_changes "@object.num" do
|
2016-06-13 16:28:05 -04:00
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_message
|
|
|
|
error = assert_raises Minitest::Assertion do
|
2016-08-06 12:03:25 -04:00
|
|
|
assert_no_changes "@object.num", "@object.num should not change" do
|
2016-06-13 16:28:05 -04:00
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-11-01 15:25:33 -04:00
|
|
|
assert_equal "@object.num should not change.\n\"@object.num\" changed.\nExpected: 0\n Actual: 1", error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_long_string_wont_output_everything
|
|
|
|
lines = "HEY\n" * 12
|
|
|
|
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_no_changes "lines" do
|
|
|
|
lines += "HEY ALSO\n"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match <<~output, error.message
|
|
|
|
"lines" changed.
|
|
|
|
--- expected
|
|
|
|
+++ actual
|
|
|
|
@@ -10,4 +10,5 @@
|
|
|
|
HEY
|
|
|
|
HEY
|
|
|
|
HEY
|
|
|
|
+HEY ALSO
|
|
|
|
"
|
|
|
|
output
|
2016-06-13 16:28:05 -04:00
|
|
|
end
|
2007-05-01 17:02:37 -04:00
|
|
|
end
|
2007-10-26 19:24:10 -04:00
|
|
|
|
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
|
2021-03-02 20:20:35 -05:00
|
|
|
assert_equal [:reset_callback_record, :foo], self.class._setup_callbacks.map(&:filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
assert_equal [:foo], @called_back
|
2021-03-02 20:20:35 -05:00
|
|
|
assert_equal [:foo, :sentinel], self.class._teardown_callbacks.map(&:filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def setup
|
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
|
|
|
end
|
|
|
|
|
2016-12-23 06:31:57 -05:00
|
|
|
private
|
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
|
2021-03-02 20:20:35 -05:00
|
|
|
assert_equal [:reset_callback_record, :foo, :bar], self.class._setup_callbacks.map(&:filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
assert_equal [:foo, :bar], @called_back
|
2021-03-02 20:20:35 -05:00
|
|
|
assert_equal [:foo, :sentinel, :bar], self.class._teardown_callbacks.map(&:filter)
|
2009-10-14 19:12:19 -04:00
|
|
|
end
|
|
|
|
|
2016-12-23 06:31:57 -05:00
|
|
|
private
|
2009-10-14 19:12:19 -04:00
|
|
|
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
|
2016-08-06 12:03:25 -04:00
|
|
|
require "stringio"
|
2012-09-26 14:16:43 -04: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-06 20:38:45 -04:00
|
|
|
assert_match "#{self.class}: #{name}\n", @out.string
|
2012-09-26 14:16:43 -04:00
|
|
|
end
|
|
|
|
end
|
2014-09-08 08:32:16 -04: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-02 20:43:06 -05:00
|
|
|
def test_defaults_to_random
|
2014-09-08 08:32:16 -04:00
|
|
|
ActiveSupport::TestCase.test_order = nil
|
|
|
|
|
2015-01-02 20:43:06 -05:00
|
|
|
assert_equal :random, ActiveSupport::TestCase.test_order
|
2014-09-08 08:32:16 -04:00
|
|
|
|
2015-01-02 20:43:06 -05:00
|
|
|
assert_equal :random, ActiveSupport.test_order
|
2014-09-08 08:32:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_test_order_is_global
|
2015-01-02 20:43:06 -05:00
|
|
|
ActiveSupport::TestCase.test_order = :sorted
|
2014-09-08 08:32:16 -04: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-02 20:43:06 -05: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 08:32:16 -04:00
|
|
|
end
|
|
|
|
end
|