2017-07-09 20:06:36 +08:00
|
|
|
# frozen_string_literal: true
|
2017-07-10 21:39:13 +08:00
|
|
|
|
2018-09-30 08:50:43 +08:00
|
|
|
require_relative "abstract_unit"
|
2008-01-05 21:31:04 +08:00
|
|
|
|
2018-04-08 11:14:06 +08:00
|
|
|
class AssertionsTest < 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
|
|
|
|
|
2022-11-29 23:41:23 +08:00
|
|
|
def test_assert_raises_with_match_pass
|
|
|
|
assert_raises(ArgumentError, match: /incorrect/i) do
|
|
|
|
raise ArgumentError, "Incorrect argument"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_raises_with_match_fail
|
|
|
|
assert_raises(Minitest::Assertion, match: "Expected /incorrect/i to match \"Wrong argument\".") do
|
|
|
|
assert_raises(ArgumentError, match: /incorrect/i) do
|
|
|
|
raise ArgumentError, "Wrong argument"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
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
|
2022-12-31 06:50:31 +08:00
|
|
|
assert_equal "\"@object.num\" didn't change by 0, but by 1.\nExpected: 0\n Actual: 1", error.message
|
2014-06-13 09:22:58 +08:00
|
|
|
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
|
2022-12-31 06:50:31 +08:00
|
|
|
assert_equal "Object Changed.\n\"@object.num\" didn't change by 0, but by 1.\nExpected: 0\n Actual: 1", error.message
|
2014-06-13 09:22:58 +08:00
|
|
|
end
|
2018-07-08 21:15:16 +08: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-13 09:22:58 +08:00
|
|
|
|
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"
|
2019-01-09 17:09:01 +08:00
|
|
|
_ = 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
|
2022-12-31 06:50:31 +08:00
|
|
|
assert_equal "Object Changed.\n\"@object.num\" didn't change by 0, but by 1.\nExpected: 0\n Actual: 1", error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_difference_message_includes_change
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_difference "@object.num", +5 do
|
|
|
|
@object.increment
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "\"@object.num\" didn't change by 5, but by 2.\nExpected: 5\n Actual: 2", error.message
|
2018-01-19 04:20:34 +08:00
|
|
|
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
|
2022-04-01 03:58:38 +08:00
|
|
|
|
|
|
|
assert_equal "Expected change from nil, got 0", error.message
|
2016-08-29 08:05:32 +08:00
|
|
|
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
|
|
|
|
|
2019-11-02 03:25:33 +08:00
|
|
|
assert_equal "\"@object.num\" didn't change. It was already 0.\nExpected 0 to not be equal to 0.", error.message
|
2017-10-31 02:21:28 +08:00
|
|
|
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
|
2019-11-02 03:25:33 +08:00
|
|
|
assert_changes "@object.num", "@object.num should be 1", to: 1 do
|
2017-10-31 02:21:28 +08:00
|
|
|
@object.decrement
|
2016-08-31 07:47:48 +08:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2022-04-01 03:58:38 +08:00
|
|
|
assert_equal "@object.num should be 1.\nExpected change to 1, got -1\n", error.message
|
2016-08-31 07:47:48 +08:00
|
|
|
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
|
|
|
|
|
2021-05-24 04:22:43 +08:00
|
|
|
def test_assert_no_changes_with_from_option
|
|
|
|
assert_no_changes "@object.num", from: 0 do
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_from_option_with_wrong_value
|
|
|
|
assert_raises Minitest::Assertion do
|
|
|
|
assert_no_changes "@object.num", from: -1 do
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_from_option_with_nil
|
|
|
|
error = assert_raises Minitest::Assertion do
|
|
|
|
assert_no_changes "@object.num", from: nil do
|
|
|
|
@object.increment
|
|
|
|
end
|
|
|
|
end
|
|
|
|
assert_equal "Expected initial value of nil", error.message
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_assert_no_changes_with_from_and_case_operator
|
|
|
|
token = SecureRandom.hex
|
|
|
|
|
|
|
|
assert_no_changes -> { token }, from: /\w{32}/ do
|
|
|
|
# ...
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-06-14 04:28:05 +08:00
|
|
|
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
|
|
|
|
|
2019-11-02 03:25:33 +08: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-14 04:28:05 +08:00
|
|
|
end
|
2007-05-02 05:02:37 +08:00
|
|
|
end
|
2007-10-27 07:24:10 +08:00
|
|
|
|
2021-06-12 03:37:33 +08:00
|
|
|
class ExceptionsInsideAssertionsTest < ActiveSupport::TestCase
|
|
|
|
def before_setup
|
|
|
|
require "stringio"
|
|
|
|
@out = StringIO.new
|
|
|
|
self.tagged_logger = ActiveSupport::TaggedLogging.new(Logger.new(@out))
|
|
|
|
super
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_warning_is_logged_if_caught_internally
|
|
|
|
run_test_that_should_pass_and_log_a_warning
|
|
|
|
expected = <<~MSG
|
|
|
|
ExceptionsInsideAssertionsTest - test_warning_is_logged_if_caught_internally: ArgumentError raised.
|
|
|
|
If you expected this exception, use `assert_raises` as near to the code that raises as possible.
|
2021-07-21 08:15:10 +08:00
|
|
|
Other block based assertions (e.g. `assert_no_changes`) can be used, as long as `assert_raises` is inside their block.
|
2021-06-12 03:37:33 +08:00
|
|
|
MSG
|
2022-02-25 10:53:41 +08:00
|
|
|
assert_includes @out.string, expected
|
2021-06-12 03:37:33 +08:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_warning_is_not_logged_if_caught_correctly_by_user
|
|
|
|
run_test_that_should_pass_and_not_log_a_warning
|
|
|
|
assert_not @out.string.include?("assert_nothing_raised")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_warning_is_not_logged_if_assertions_are_nested_correctly
|
|
|
|
error = assert_raises(Minitest::Assertion) do
|
|
|
|
run_test_that_should_fail_but_not_log_a_warning
|
|
|
|
end
|
|
|
|
assert_not @out.string.include?("assert_nothing_raised")
|
|
|
|
assert error.message.include?("(lambda)> changed")
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_fails_and_warning_is_logged_if_wrong_error_caught
|
|
|
|
error = assert_raises(Minitest::Assertion) do
|
|
|
|
run_test_that_should_fail_confusingly
|
|
|
|
end
|
|
|
|
expected = <<~MSG
|
|
|
|
ExceptionsInsideAssertionsTest - test_fails_and_warning_is_logged_if_wrong_error_caught: ArgumentError raised.
|
|
|
|
If you expected this exception, use `assert_raises` as near to the code that raises as possible.
|
2021-07-21 08:15:10 +08:00
|
|
|
Other block based assertions (e.g. `assert_no_changes`) can be used, as long as `assert_raises` is inside their block.
|
2021-06-12 03:37:33 +08:00
|
|
|
MSG
|
2022-02-25 10:53:41 +08:00
|
|
|
assert_includes @out.string, expected
|
2021-06-12 03:37:33 +08:00
|
|
|
assert error.message.include?("ArgumentError: ArgumentError")
|
|
|
|
assert error.message.include?("in `block (2 levels) in run_test_that_should_fail_confusingly'")
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
def run_test_that_should_pass_and_log_a_warning
|
|
|
|
assert_raises(Minitest::UnexpectedError) do # this assertion passes, but it's unlikely to be how anyone writes a test
|
|
|
|
assert_no_changes -> { 1 } do # this assertion doesn't run. the error below is caught and the warning logged.
|
|
|
|
raise ArgumentError.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_test_that_should_fail_confusingly
|
|
|
|
assert_raises(ArgumentError) do # this assertion fails (confusingly) because it catches a Minitest::UnexpectedError.
|
|
|
|
assert_no_changes -> { 1 } do # this assertion doesn't run. the error below is caught and the warning logged.
|
|
|
|
raise ArgumentError.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_test_that_should_pass_and_not_log_a_warning
|
|
|
|
assert_no_changes -> { 1 } do # this assertion passes
|
|
|
|
assert_raises(ArgumentError) do # this assertion passes
|
|
|
|
raise ArgumentError.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def run_test_that_should_fail_but_not_log_a_warning
|
|
|
|
assert_no_changes -> { rand } do # this assertion fails
|
|
|
|
assert_raises(ArgumentError) do # this assertion passes
|
|
|
|
raise ArgumentError.new
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
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
|
2021-03-03 09:20:35 +08:00
|
|
|
assert_equal [:reset_callback_record, :foo], self.class._setup_callbacks.map(&:filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
assert_equal [:foo], @called_back
|
2021-03-03 09:20:35 +08:00
|
|
|
assert_equal [:foo, :sentinel], self.class._teardown_callbacks.map(&: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-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
|
2021-03-03 09:20:35 +08:00
|
|
|
assert_equal [:reset_callback_record, :foo, :bar], self.class._setup_callbacks.map(&:filter)
|
2009-10-15 07:12:19 +08:00
|
|
|
assert_equal [:foo, :bar], @called_back
|
2021-03-03 09:20:35 +08:00
|
|
|
assert_equal [:foo, :sentinel, :bar], self.class._teardown_callbacks.map(&: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
|
2022-02-01 19:20:06 +08:00
|
|
|
|
|
|
|
|
|
|
|
class ConstStubbable
|
|
|
|
CONSTANT = 1
|
|
|
|
end
|
|
|
|
|
|
|
|
class TestConstStubbing < ActiveSupport::TestCase
|
|
|
|
test "stubbing a constant temporarily replaces it with a new value" do
|
|
|
|
stub_const(ConstStubbable, :CONSTANT, 2) do
|
|
|
|
assert_equal 2, ConstStubbable::CONSTANT
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 1, ConstStubbable::CONSTANT
|
|
|
|
end
|
|
|
|
|
|
|
|
test "stubbed constant still reset even if exception is raised" do
|
|
|
|
assert_raises(RuntimeError) do
|
|
|
|
stub_const(ConstStubbable, :CONSTANT, 2) do
|
|
|
|
assert_equal 2, ConstStubbable::CONSTANT
|
|
|
|
raise "Exception"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 1, ConstStubbable::CONSTANT
|
|
|
|
end
|
|
|
|
end
|