omg-activesupport 8.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +86 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +40 -0
- data/lib/active_support/actionable_error.rb +50 -0
- data/lib/active_support/all.rb +5 -0
- data/lib/active_support/array_inquirer.rb +50 -0
- data/lib/active_support/backtrace_cleaner.rb +163 -0
- data/lib/active_support/benchmark.rb +21 -0
- data/lib/active_support/benchmarkable.rb +53 -0
- data/lib/active_support/broadcast_logger.rb +251 -0
- data/lib/active_support/builder.rb +8 -0
- data/lib/active_support/cache/coder.rb +153 -0
- data/lib/active_support/cache/entry.rb +134 -0
- data/lib/active_support/cache/file_store.rb +244 -0
- data/lib/active_support/cache/mem_cache_store.rb +290 -0
- data/lib/active_support/cache/memory_store.rb +262 -0
- data/lib/active_support/cache/null_store.rb +62 -0
- data/lib/active_support/cache/redis_cache_store.rb +492 -0
- data/lib/active_support/cache/serializer_with_fallback.rb +152 -0
- data/lib/active_support/cache/strategy/local_cache.rb +201 -0
- data/lib/active_support/cache/strategy/local_cache_middleware.rb +45 -0
- data/lib/active_support/cache.rb +1104 -0
- data/lib/active_support/callbacks.rb +944 -0
- data/lib/active_support/class_attribute.rb +26 -0
- data/lib/active_support/code_generator.rb +79 -0
- data/lib/active_support/concern.rb +217 -0
- data/lib/active_support/concurrency/load_interlock_aware_monitor.rb +72 -0
- data/lib/active_support/concurrency/null_lock.rb +13 -0
- data/lib/active_support/concurrency/share_lock.rb +225 -0
- data/lib/active_support/configurable.rb +159 -0
- data/lib/active_support/configuration_file.rb +60 -0
- data/lib/active_support/core_ext/array/access.rb +100 -0
- data/lib/active_support/core_ext/array/conversions.rb +213 -0
- data/lib/active_support/core_ext/array/extract.rb +21 -0
- data/lib/active_support/core_ext/array/extract_options.rb +31 -0
- data/lib/active_support/core_ext/array/grouping.rb +109 -0
- data/lib/active_support/core_ext/array/inquiry.rb +19 -0
- data/lib/active_support/core_ext/array/wrap.rb +48 -0
- data/lib/active_support/core_ext/array.rb +9 -0
- data/lib/active_support/core_ext/benchmark.rb +13 -0
- data/lib/active_support/core_ext/big_decimal/conversions.rb +14 -0
- data/lib/active_support/core_ext/big_decimal.rb +3 -0
- data/lib/active_support/core_ext/class/attribute.rb +122 -0
- data/lib/active_support/core_ext/class/attribute_accessors.rb +6 -0
- data/lib/active_support/core_ext/class/subclasses.rb +24 -0
- data/lib/active_support/core_ext/class.rb +4 -0
- data/lib/active_support/core_ext/date/acts_like.rb +10 -0
- data/lib/active_support/core_ext/date/blank.rb +18 -0
- data/lib/active_support/core_ext/date/calculations.rb +161 -0
- data/lib/active_support/core_ext/date/conversions.rb +98 -0
- data/lib/active_support/core_ext/date/zones.rb +8 -0
- data/lib/active_support/core_ext/date.rb +7 -0
- data/lib/active_support/core_ext/date_and_time/calculations.rb +374 -0
- data/lib/active_support/core_ext/date_and_time/compatibility.rb +58 -0
- data/lib/active_support/core_ext/date_and_time/zones.rb +40 -0
- data/lib/active_support/core_ext/date_time/acts_like.rb +16 -0
- data/lib/active_support/core_ext/date_time/blank.rb +18 -0
- data/lib/active_support/core_ext/date_time/calculations.rb +215 -0
- data/lib/active_support/core_ext/date_time/compatibility.rb +18 -0
- data/lib/active_support/core_ext/date_time/conversions.rb +106 -0
- data/lib/active_support/core_ext/date_time.rb +7 -0
- data/lib/active_support/core_ext/digest/uuid.rb +76 -0
- data/lib/active_support/core_ext/digest.rb +3 -0
- data/lib/active_support/core_ext/enumerable.rb +267 -0
- data/lib/active_support/core_ext/erb/util.rb +201 -0
- data/lib/active_support/core_ext/file/atomic.rb +72 -0
- data/lib/active_support/core_ext/file.rb +3 -0
- data/lib/active_support/core_ext/hash/conversions.rb +262 -0
- data/lib/active_support/core_ext/hash/deep_merge.rb +42 -0
- data/lib/active_support/core_ext/hash/deep_transform_values.rb +46 -0
- data/lib/active_support/core_ext/hash/except.rb +12 -0
- data/lib/active_support/core_ext/hash/indifferent_access.rb +24 -0
- data/lib/active_support/core_ext/hash/keys.rb +143 -0
- data/lib/active_support/core_ext/hash/reverse_merge.rb +25 -0
- data/lib/active_support/core_ext/hash/slice.rb +27 -0
- data/lib/active_support/core_ext/hash.rb +10 -0
- data/lib/active_support/core_ext/integer/inflections.rb +31 -0
- data/lib/active_support/core_ext/integer/multiple.rb +12 -0
- data/lib/active_support/core_ext/integer/time.rb +22 -0
- data/lib/active_support/core_ext/integer.rb +5 -0
- data/lib/active_support/core_ext/kernel/concern.rb +14 -0
- data/lib/active_support/core_ext/kernel/reporting.rb +45 -0
- data/lib/active_support/core_ext/kernel/singleton_class.rb +8 -0
- data/lib/active_support/core_ext/kernel.rb +5 -0
- data/lib/active_support/core_ext/load_error.rb +9 -0
- data/lib/active_support/core_ext/module/aliasing.rb +31 -0
- data/lib/active_support/core_ext/module/anonymous.rb +30 -0
- data/lib/active_support/core_ext/module/attr_internal.rb +49 -0
- data/lib/active_support/core_ext/module/attribute_accessors.rb +214 -0
- data/lib/active_support/core_ext/module/attribute_accessors_per_thread.rb +175 -0
- data/lib/active_support/core_ext/module/concerning.rb +140 -0
- data/lib/active_support/core_ext/module/delegation.rb +225 -0
- data/lib/active_support/core_ext/module/deprecation.rb +25 -0
- data/lib/active_support/core_ext/module/introspection.rb +62 -0
- data/lib/active_support/core_ext/module/redefine_method.rb +40 -0
- data/lib/active_support/core_ext/module/remove_method.rb +17 -0
- data/lib/active_support/core_ext/module.rb +13 -0
- data/lib/active_support/core_ext/name_error.rb +59 -0
- data/lib/active_support/core_ext/numeric/bytes.rb +75 -0
- data/lib/active_support/core_ext/numeric/conversions.rb +145 -0
- data/lib/active_support/core_ext/numeric/time.rb +66 -0
- data/lib/active_support/core_ext/numeric.rb +5 -0
- data/lib/active_support/core_ext/object/acts_like.rb +45 -0
- data/lib/active_support/core_ext/object/blank.rb +199 -0
- data/lib/active_support/core_ext/object/conversions.rb +6 -0
- data/lib/active_support/core_ext/object/deep_dup.rb +71 -0
- data/lib/active_support/core_ext/object/duplicable.rb +69 -0
- data/lib/active_support/core_ext/object/inclusion.rb +37 -0
- data/lib/active_support/core_ext/object/instance_variables.rb +32 -0
- data/lib/active_support/core_ext/object/json.rb +260 -0
- data/lib/active_support/core_ext/object/to_param.rb +3 -0
- data/lib/active_support/core_ext/object/to_query.rb +87 -0
- data/lib/active_support/core_ext/object/try.rb +158 -0
- data/lib/active_support/core_ext/object/with.rb +46 -0
- data/lib/active_support/core_ext/object/with_options.rb +101 -0
- data/lib/active_support/core_ext/object.rb +17 -0
- data/lib/active_support/core_ext/pathname/blank.rb +20 -0
- data/lib/active_support/core_ext/pathname/existence.rb +23 -0
- data/lib/active_support/core_ext/pathname.rb +4 -0
- data/lib/active_support/core_ext/range/compare_range.rb +57 -0
- data/lib/active_support/core_ext/range/conversions.rb +62 -0
- data/lib/active_support/core_ext/range/each.rb +24 -0
- data/lib/active_support/core_ext/range/overlap.rb +40 -0
- data/lib/active_support/core_ext/range.rb +6 -0
- data/lib/active_support/core_ext/regexp.rb +14 -0
- data/lib/active_support/core_ext/securerandom.rb +41 -0
- data/lib/active_support/core_ext/string/access.rb +95 -0
- data/lib/active_support/core_ext/string/behavior.rb +8 -0
- data/lib/active_support/core_ext/string/conversions.rb +60 -0
- data/lib/active_support/core_ext/string/exclude.rb +13 -0
- data/lib/active_support/core_ext/string/filters.rb +151 -0
- data/lib/active_support/core_ext/string/indent.rb +45 -0
- data/lib/active_support/core_ext/string/inflections.rb +300 -0
- data/lib/active_support/core_ext/string/inquiry.rb +16 -0
- data/lib/active_support/core_ext/string/multibyte.rb +58 -0
- data/lib/active_support/core_ext/string/output_safety.rb +228 -0
- data/lib/active_support/core_ext/string/starts_ends_with.rb +6 -0
- data/lib/active_support/core_ext/string/strip.rb +27 -0
- data/lib/active_support/core_ext/string/zones.rb +16 -0
- data/lib/active_support/core_ext/string.rb +15 -0
- data/lib/active_support/core_ext/symbol/starts_ends_with.rb +6 -0
- data/lib/active_support/core_ext/symbol.rb +3 -0
- data/lib/active_support/core_ext/thread/backtrace/location.rb +12 -0
- data/lib/active_support/core_ext/time/acts_like.rb +10 -0
- data/lib/active_support/core_ext/time/calculations.rb +386 -0
- data/lib/active_support/core_ext/time/compatibility.rb +32 -0
- data/lib/active_support/core_ext/time/conversions.rb +75 -0
- data/lib/active_support/core_ext/time/zones.rb +97 -0
- data/lib/active_support/core_ext/time.rb +7 -0
- data/lib/active_support/core_ext.rb +5 -0
- data/lib/active_support/current_attributes/test_helper.rb +13 -0
- data/lib/active_support/current_attributes.rb +233 -0
- data/lib/active_support/deep_mergeable.rb +53 -0
- data/lib/active_support/delegation.rb +202 -0
- data/lib/active_support/dependencies/autoload.rb +72 -0
- data/lib/active_support/dependencies/interlock.rb +49 -0
- data/lib/active_support/dependencies/require_dependency.rb +28 -0
- data/lib/active_support/dependencies.rb +98 -0
- data/lib/active_support/deprecation/behaviors.rb +148 -0
- data/lib/active_support/deprecation/constant_accessor.rb +74 -0
- data/lib/active_support/deprecation/deprecators.rb +104 -0
- data/lib/active_support/deprecation/disallowed.rb +54 -0
- data/lib/active_support/deprecation/method_wrappers.rb +68 -0
- data/lib/active_support/deprecation/proxy_wrappers.rb +189 -0
- data/lib/active_support/deprecation/reporting.rb +179 -0
- data/lib/active_support/deprecation.rb +81 -0
- data/lib/active_support/deprecator.rb +7 -0
- data/lib/active_support/descendants_tracker.rb +112 -0
- data/lib/active_support/digest.rb +22 -0
- data/lib/active_support/duration/iso8601_parser.rb +123 -0
- data/lib/active_support/duration/iso8601_serializer.rb +64 -0
- data/lib/active_support/duration.rb +520 -0
- data/lib/active_support/encrypted_configuration.rb +126 -0
- data/lib/active_support/encrypted_file.rb +133 -0
- data/lib/active_support/environment_inquirer.rb +40 -0
- data/lib/active_support/error_reporter/test_helper.rb +15 -0
- data/lib/active_support/error_reporter.rb +265 -0
- data/lib/active_support/evented_file_update_checker.rb +182 -0
- data/lib/active_support/execution_context/test_helper.rb +13 -0
- data/lib/active_support/execution_context.rb +53 -0
- data/lib/active_support/execution_wrapper.rb +150 -0
- data/lib/active_support/executor/test_helper.rb +7 -0
- data/lib/active_support/executor.rb +8 -0
- data/lib/active_support/file_update_checker.rb +164 -0
- data/lib/active_support/fork_tracker.rb +43 -0
- data/lib/active_support/gem_version.rb +17 -0
- data/lib/active_support/gzip.rb +40 -0
- data/lib/active_support/hash_with_indifferent_access.rb +445 -0
- data/lib/active_support/html_safe_translation.rb +56 -0
- data/lib/active_support/i18n.rb +17 -0
- data/lib/active_support/i18n_railtie.rb +138 -0
- data/lib/active_support/inflections.rb +72 -0
- data/lib/active_support/inflector/inflections.rb +273 -0
- data/lib/active_support/inflector/methods.rb +387 -0
- data/lib/active_support/inflector/transliterate.rb +149 -0
- data/lib/active_support/inflector.rb +9 -0
- data/lib/active_support/isolated_execution_state.rb +75 -0
- data/lib/active_support/json/decoding.rb +76 -0
- data/lib/active_support/json/encoding.rb +120 -0
- data/lib/active_support/json.rb +4 -0
- data/lib/active_support/key_generator.rb +66 -0
- data/lib/active_support/lazy_load_hooks.rb +107 -0
- data/lib/active_support/locale/en.rb +33 -0
- data/lib/active_support/locale/en.yml +141 -0
- data/lib/active_support/log_subscriber/test_helper.rb +106 -0
- data/lib/active_support/log_subscriber.rb +192 -0
- data/lib/active_support/logger.rb +55 -0
- data/lib/active_support/logger_silence.rb +21 -0
- data/lib/active_support/logger_thread_safe_level.rb +47 -0
- data/lib/active_support/message_encryptor.rb +374 -0
- data/lib/active_support/message_encryptors.rb +141 -0
- data/lib/active_support/message_pack/cache_serializer.rb +23 -0
- data/lib/active_support/message_pack/extensions.rb +305 -0
- data/lib/active_support/message_pack/serializer.rb +63 -0
- data/lib/active_support/message_pack.rb +50 -0
- data/lib/active_support/message_verifier.rb +368 -0
- data/lib/active_support/message_verifiers.rb +135 -0
- data/lib/active_support/messages/codec.rb +65 -0
- data/lib/active_support/messages/metadata.rb +146 -0
- data/lib/active_support/messages/rotation_configuration.rb +23 -0
- data/lib/active_support/messages/rotation_coordinator.rb +93 -0
- data/lib/active_support/messages/rotator.rb +59 -0
- data/lib/active_support/messages/serializer_with_fallback.rb +158 -0
- data/lib/active_support/multibyte/chars.rb +178 -0
- data/lib/active_support/multibyte/unicode.rb +42 -0
- data/lib/active_support/multibyte.rb +23 -0
- data/lib/active_support/notifications/fanout.rb +446 -0
- data/lib/active_support/notifications/instrumenter.rb +240 -0
- data/lib/active_support/notifications.rb +281 -0
- data/lib/active_support/number_helper/number_converter.rb +190 -0
- data/lib/active_support/number_helper/number_to_currency_converter.rb +46 -0
- data/lib/active_support/number_helper/number_to_delimited_converter.rb +30 -0
- data/lib/active_support/number_helper/number_to_human_converter.rb +69 -0
- data/lib/active_support/number_helper/number_to_human_size_converter.rb +60 -0
- data/lib/active_support/number_helper/number_to_percentage_converter.rb +16 -0
- data/lib/active_support/number_helper/number_to_phone_converter.rb +60 -0
- data/lib/active_support/number_helper/number_to_rounded_converter.rb +59 -0
- data/lib/active_support/number_helper/rounding_helper.rb +46 -0
- data/lib/active_support/number_helper.rb +479 -0
- data/lib/active_support/option_merger.rb +38 -0
- data/lib/active_support/ordered_hash.rb +50 -0
- data/lib/active_support/ordered_options.rb +147 -0
- data/lib/active_support/parameter_filter.rb +157 -0
- data/lib/active_support/proxy_object.rb +20 -0
- data/lib/active_support/rails.rb +26 -0
- data/lib/active_support/railtie.rb +161 -0
- data/lib/active_support/reloader.rb +138 -0
- data/lib/active_support/rescuable.rb +176 -0
- data/lib/active_support/secure_compare_rotator.rb +58 -0
- data/lib/active_support/security_utils.rb +38 -0
- data/lib/active_support/string_inquirer.rb +35 -0
- data/lib/active_support/subscriber.rb +146 -0
- data/lib/active_support/syntax_error_proxy.rb +60 -0
- data/lib/active_support/tagged_logging.rb +152 -0
- data/lib/active_support/test_case.rb +304 -0
- data/lib/active_support/testing/assertions.rb +332 -0
- data/lib/active_support/testing/autorun.rb +5 -0
- data/lib/active_support/testing/constant_lookup.rb +51 -0
- data/lib/active_support/testing/constant_stubbing.rb +54 -0
- data/lib/active_support/testing/declarative.rb +28 -0
- data/lib/active_support/testing/deprecation.rb +82 -0
- data/lib/active_support/testing/error_reporter_assertions.rb +107 -0
- data/lib/active_support/testing/file_fixtures.rb +38 -0
- data/lib/active_support/testing/isolation.rb +121 -0
- data/lib/active_support/testing/method_call_assertions.rb +69 -0
- data/lib/active_support/testing/parallelization/server.rb +85 -0
- data/lib/active_support/testing/parallelization/worker.rb +103 -0
- data/lib/active_support/testing/parallelization.rb +55 -0
- data/lib/active_support/testing/parallelize_executor.rb +81 -0
- data/lib/active_support/testing/setup_and_teardown.rb +57 -0
- data/lib/active_support/testing/stream.rb +41 -0
- data/lib/active_support/testing/strict_warnings.rb +43 -0
- data/lib/active_support/testing/tagged_logging.rb +27 -0
- data/lib/active_support/testing/tests_without_assertions.rb +19 -0
- data/lib/active_support/testing/time_helpers.rb +269 -0
- data/lib/active_support/time.rb +20 -0
- data/lib/active_support/time_with_zone.rb +609 -0
- data/lib/active_support/values/time_zone.rb +614 -0
- data/lib/active_support/version.rb +10 -0
- data/lib/active_support/xml_mini/jdom.rb +175 -0
- data/lib/active_support/xml_mini/libxml.rb +80 -0
- data/lib/active_support/xml_mini/libxmlsax.rb +83 -0
- data/lib/active_support/xml_mini/nokogiri.rb +83 -0
- data/lib/active_support/xml_mini/nokogirisax.rb +86 -0
- data/lib/active_support/xml_mini/rexml.rb +137 -0
- data/lib/active_support/xml_mini.rb +211 -0
- data/lib/active_support.rb +144 -0
- metadata +526 -0
@@ -0,0 +1,55 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "drb"
|
4
|
+
require "drb/unix" unless Gem.win_platform?
|
5
|
+
require "active_support/core_ext/module/attribute_accessors"
|
6
|
+
require "active_support/testing/parallelization/server"
|
7
|
+
require "active_support/testing/parallelization/worker"
|
8
|
+
|
9
|
+
module ActiveSupport
|
10
|
+
module Testing
|
11
|
+
class Parallelization # :nodoc:
|
12
|
+
@@after_fork_hooks = []
|
13
|
+
|
14
|
+
def self.after_fork_hook(&blk)
|
15
|
+
@@after_fork_hooks << blk
|
16
|
+
end
|
17
|
+
|
18
|
+
cattr_reader :after_fork_hooks
|
19
|
+
|
20
|
+
@@run_cleanup_hooks = []
|
21
|
+
|
22
|
+
def self.run_cleanup_hook(&blk)
|
23
|
+
@@run_cleanup_hooks << blk
|
24
|
+
end
|
25
|
+
|
26
|
+
cattr_reader :run_cleanup_hooks
|
27
|
+
|
28
|
+
def initialize(worker_count)
|
29
|
+
@worker_count = worker_count
|
30
|
+
@queue_server = Server.new
|
31
|
+
@worker_pool = []
|
32
|
+
@url = DRb.start_service("drbunix:", @queue_server).uri
|
33
|
+
end
|
34
|
+
|
35
|
+
def start
|
36
|
+
@worker_pool = @worker_count.times.map do |worker|
|
37
|
+
Worker.new(worker, @url).start
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
def <<(work)
|
42
|
+
@queue_server << work
|
43
|
+
end
|
44
|
+
|
45
|
+
def size
|
46
|
+
@worker_count
|
47
|
+
end
|
48
|
+
|
49
|
+
def shutdown
|
50
|
+
@queue_server.shutdown
|
51
|
+
@worker_pool.each { |pid| Process.waitpid pid }
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|
@@ -0,0 +1,81 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveSupport
|
4
|
+
module Testing
|
5
|
+
class ParallelizeExecutor # :nodoc:
|
6
|
+
attr_reader :size, :parallelize_with, :threshold
|
7
|
+
|
8
|
+
def initialize(size:, with:, threshold: ActiveSupport.test_parallelization_threshold)
|
9
|
+
@size = size
|
10
|
+
@parallelize_with = with
|
11
|
+
@threshold = threshold
|
12
|
+
@parallelized = false
|
13
|
+
end
|
14
|
+
|
15
|
+
def start
|
16
|
+
parallelize if should_parallelize?
|
17
|
+
show_execution_info
|
18
|
+
|
19
|
+
parallel_executor.start if parallelized?
|
20
|
+
end
|
21
|
+
|
22
|
+
def <<(work)
|
23
|
+
parallel_executor << work if parallelized?
|
24
|
+
end
|
25
|
+
|
26
|
+
def shutdown
|
27
|
+
parallel_executor.shutdown if parallelized?
|
28
|
+
end
|
29
|
+
|
30
|
+
private
|
31
|
+
def parallel_executor
|
32
|
+
@parallel_executor ||= build_parallel_executor
|
33
|
+
end
|
34
|
+
|
35
|
+
def build_parallel_executor
|
36
|
+
case parallelize_with
|
37
|
+
when :processes
|
38
|
+
Testing::Parallelization.new(size)
|
39
|
+
when :threads
|
40
|
+
ActiveSupport::TestCase.lock_threads = false if defined?(ActiveSupport::TestCase.lock_threads)
|
41
|
+
Minitest::Parallel::Executor.new(size)
|
42
|
+
else
|
43
|
+
raise ArgumentError, "#{parallelize_with} is not a supported parallelization executor."
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
def parallelize
|
48
|
+
@parallelized = true
|
49
|
+
Minitest::Test.parallelize_me!
|
50
|
+
end
|
51
|
+
|
52
|
+
def parallelized?
|
53
|
+
@parallelized
|
54
|
+
end
|
55
|
+
|
56
|
+
def should_parallelize?
|
57
|
+
(ENV["PARALLEL_WORKERS"] || tests_count > threshold) && many_workers?
|
58
|
+
end
|
59
|
+
|
60
|
+
def many_workers?
|
61
|
+
size > 1
|
62
|
+
end
|
63
|
+
|
64
|
+
def tests_count
|
65
|
+
@tests_count ||= Minitest::Runnable.runnables.sum { |runnable| runnable.runnable_methods.size }
|
66
|
+
end
|
67
|
+
|
68
|
+
def show_execution_info
|
69
|
+
puts execution_info
|
70
|
+
end
|
71
|
+
|
72
|
+
def execution_info
|
73
|
+
if parallelized?
|
74
|
+
"Running #{tests_count} tests in parallel using #{parallel_executor.size} #{parallelize_with}"
|
75
|
+
elsif many_workers?
|
76
|
+
"Running #{tests_count} tests in a single process (parallelization threshold is #{threshold})"
|
77
|
+
end
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
81
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_support/callbacks"
|
4
|
+
|
5
|
+
module ActiveSupport
|
6
|
+
module Testing
|
7
|
+
# Adds support for +setup+ and +teardown+ callbacks.
|
8
|
+
# These callbacks serve as a replacement to overwriting the
|
9
|
+
# <tt>#setup</tt> and <tt>#teardown</tt> methods of your TestCase.
|
10
|
+
#
|
11
|
+
# class ExampleTest < ActiveSupport::TestCase
|
12
|
+
# setup do
|
13
|
+
# # ...
|
14
|
+
# end
|
15
|
+
#
|
16
|
+
# teardown do
|
17
|
+
# # ...
|
18
|
+
# end
|
19
|
+
# end
|
20
|
+
module SetupAndTeardown
|
21
|
+
def self.prepended(klass)
|
22
|
+
klass.include ActiveSupport::Callbacks
|
23
|
+
klass.define_callbacks :setup, :teardown
|
24
|
+
klass.extend ClassMethods
|
25
|
+
end
|
26
|
+
|
27
|
+
module ClassMethods
|
28
|
+
# Add a callback, which runs before <tt>TestCase#setup</tt>.
|
29
|
+
def setup(*args, &block)
|
30
|
+
set_callback(:setup, :before, *args, &block)
|
31
|
+
end
|
32
|
+
|
33
|
+
# Add a callback, which runs after <tt>TestCase#teardown</tt>.
|
34
|
+
def teardown(*args, &block)
|
35
|
+
set_callback(:teardown, :after, *args, &block)
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def before_setup # :nodoc:
|
40
|
+
super
|
41
|
+
run_callbacks :setup
|
42
|
+
end
|
43
|
+
|
44
|
+
def after_teardown # :nodoc:
|
45
|
+
begin
|
46
|
+
run_callbacks :teardown
|
47
|
+
rescue => e
|
48
|
+
self.failures << Minitest::UnexpectedError.new(e)
|
49
|
+
rescue Minitest::Assertion => e
|
50
|
+
self.failures << e
|
51
|
+
end
|
52
|
+
|
53
|
+
super
|
54
|
+
end
|
55
|
+
end
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveSupport
|
4
|
+
module Testing
|
5
|
+
module Stream # :nodoc:
|
6
|
+
private
|
7
|
+
def silence_stream(stream)
|
8
|
+
old_stream = stream.dup
|
9
|
+
stream.reopen(IO::NULL)
|
10
|
+
stream.sync = true
|
11
|
+
yield
|
12
|
+
ensure
|
13
|
+
stream.reopen(old_stream)
|
14
|
+
old_stream.close
|
15
|
+
end
|
16
|
+
|
17
|
+
def quietly(&block)
|
18
|
+
silence_stream(STDOUT) do
|
19
|
+
silence_stream(STDERR, &block)
|
20
|
+
end
|
21
|
+
end
|
22
|
+
|
23
|
+
def capture(stream)
|
24
|
+
stream = stream.to_s
|
25
|
+
captured_stream = Tempfile.new(stream)
|
26
|
+
stream_io = eval("$#{stream}", binding, __FILE__, __LINE__)
|
27
|
+
origin_stream = stream_io.dup
|
28
|
+
stream_io.reopen(captured_stream)
|
29
|
+
|
30
|
+
yield
|
31
|
+
|
32
|
+
stream_io.rewind
|
33
|
+
captured_stream.read
|
34
|
+
ensure
|
35
|
+
captured_stream.close
|
36
|
+
captured_stream.unlink
|
37
|
+
stream_io.reopen(origin_stream)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
@@ -0,0 +1,43 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
$VERBOSE = true
|
4
|
+
Warning[:deprecated] = true
|
5
|
+
|
6
|
+
module ActiveSupport
|
7
|
+
module RaiseWarnings # :nodoc:
|
8
|
+
class WarningError < StandardError; end
|
9
|
+
|
10
|
+
PROJECT_ROOT = File.expand_path("../../../../", __dir__)
|
11
|
+
ALLOWED_WARNINGS = Regexp.union(
|
12
|
+
/circular require considered harmful.*delayed_job/, # Bug in delayed job.
|
13
|
+
|
14
|
+
# Expected non-verbose warning emitted by Rails.
|
15
|
+
/Ignoring .*\.yml because it has expired/,
|
16
|
+
/Failed to validate the schema cache because/,
|
17
|
+
|
18
|
+
# TODO: We need to decide what to do with this.
|
19
|
+
/Status code :unprocessable_entity is deprecated/
|
20
|
+
)
|
21
|
+
|
22
|
+
SUPPRESSED_WARNINGS = Regexp.union(
|
23
|
+
# TODO: remove if https://github.com/mikel/mail/pull/1557 or similar fix
|
24
|
+
%r{/lib/mail/parsers/.*statement not reached},
|
25
|
+
%r{/lib/mail/parsers/.*assigned but unused variable - disp_type_s},
|
26
|
+
%r{/lib/mail/parsers/.*assigned but unused variable - testEof}
|
27
|
+
)
|
28
|
+
|
29
|
+
def warn(message, ...)
|
30
|
+
return if SUPPRESSED_WARNINGS.match?(message)
|
31
|
+
|
32
|
+
super
|
33
|
+
|
34
|
+
return unless message.include?(PROJECT_ROOT)
|
35
|
+
return if ALLOWED_WARNINGS.match?(message)
|
36
|
+
return unless ENV["RAILS_STRICT_WARNINGS"] || ENV["BUILDKITE"]
|
37
|
+
|
38
|
+
raise WarningError.new(message)
|
39
|
+
end
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
Warning.singleton_class.prepend(ActiveSupport::RaiseWarnings)
|
@@ -0,0 +1,27 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveSupport
|
4
|
+
module Testing
|
5
|
+
# Logs a "PostsControllerTest: test name" heading before each test to
|
6
|
+
# make test.log easier to search and follow along with.
|
7
|
+
module TaggedLogging # :nodoc:
|
8
|
+
attr_writer :tagged_logger
|
9
|
+
|
10
|
+
def before_setup
|
11
|
+
if tagged_logger && tagged_logger.info?
|
12
|
+
heading = "#{self.class}: #{name}"
|
13
|
+
divider = "-" * heading.size
|
14
|
+
tagged_logger.info divider
|
15
|
+
tagged_logger.info heading
|
16
|
+
tagged_logger.info divider
|
17
|
+
end
|
18
|
+
super
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
def tagged_logger
|
23
|
+
@tagged_logger ||= (defined?(Rails.logger) && Rails.logger)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|
27
|
+
end
|
@@ -0,0 +1,19 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveSupport
|
4
|
+
module Testing
|
5
|
+
# Warns when a test case does not perform any assertions.
|
6
|
+
#
|
7
|
+
# This is helpful in detecting broken tests that do not perform intended assertions.
|
8
|
+
module TestsWithoutAssertions # :nodoc:
|
9
|
+
def after_teardown
|
10
|
+
super
|
11
|
+
|
12
|
+
if assertions.zero? && !skipped? && !error?
|
13
|
+
file, line = method(name).source_location
|
14
|
+
warn "Test is missing assertions: `#{name}` #{file}:#{line}"
|
15
|
+
end
|
16
|
+
end
|
17
|
+
end
|
18
|
+
end
|
19
|
+
end
|
@@ -0,0 +1,269 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require "active_support/core_ext/module/redefine_method"
|
4
|
+
require "active_support/core_ext/time/calculations"
|
5
|
+
|
6
|
+
module ActiveSupport
|
7
|
+
module Testing
|
8
|
+
# Manages stubs for TimeHelpers
|
9
|
+
class SimpleStubs # :nodoc:
|
10
|
+
Stub = Struct.new(:object, :method_name, :original_method)
|
11
|
+
|
12
|
+
def initialize
|
13
|
+
@stubs = Hash.new { |h, k| h[k] = {} }
|
14
|
+
end
|
15
|
+
|
16
|
+
# Stubs object.method_name with the given block
|
17
|
+
# If the method is already stubbed, remove that stub
|
18
|
+
# so that removing this stub will restore the original implementation.
|
19
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
20
|
+
# target = Time.zone.local(2004, 11, 24, 1, 4, 44)
|
21
|
+
# simple_stubs.stub_object(Time, :now) { at(target.to_i) }
|
22
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
23
|
+
def stub_object(object, method_name, &block)
|
24
|
+
if stub = stubbing(object, method_name)
|
25
|
+
unstub_object(stub)
|
26
|
+
end
|
27
|
+
|
28
|
+
new_name = "__simple_stub__#{method_name}__#{object_id}"
|
29
|
+
|
30
|
+
@stubs[object.object_id][method_name] = Stub.new(object, method_name, new_name)
|
31
|
+
|
32
|
+
object.singleton_class.alias_method new_name, method_name
|
33
|
+
object.define_singleton_method(method_name, &block)
|
34
|
+
end
|
35
|
+
|
36
|
+
# Remove all object-method stubs held by this instance
|
37
|
+
def unstub_all!
|
38
|
+
@stubs.each_value do |object_stubs|
|
39
|
+
object_stubs.each_value do |stub|
|
40
|
+
unstub_object(stub)
|
41
|
+
end
|
42
|
+
end
|
43
|
+
@stubs.clear
|
44
|
+
end
|
45
|
+
|
46
|
+
# Returns the Stub for object#method_name
|
47
|
+
# (nil if it is not stubbed)
|
48
|
+
def stubbing(object, method_name)
|
49
|
+
@stubs[object.object_id][method_name]
|
50
|
+
end
|
51
|
+
|
52
|
+
# Returns true if any stubs are set, false if there are none
|
53
|
+
def stubbed?
|
54
|
+
!@stubs.empty?
|
55
|
+
end
|
56
|
+
|
57
|
+
private
|
58
|
+
# Restores the original object.method described by the Stub
|
59
|
+
def unstub_object(stub)
|
60
|
+
singleton_class = stub.object.singleton_class
|
61
|
+
singleton_class.silence_redefinition_of_method stub.method_name
|
62
|
+
singleton_class.alias_method stub.method_name, stub.original_method
|
63
|
+
singleton_class.undef_method stub.original_method
|
64
|
+
end
|
65
|
+
end
|
66
|
+
|
67
|
+
# Contains helpers that help you test passage of time.
|
68
|
+
module TimeHelpers
|
69
|
+
def after_teardown
|
70
|
+
travel_back
|
71
|
+
super
|
72
|
+
end
|
73
|
+
|
74
|
+
# Changes current time to the time in the future or in the past by a given time difference by
|
75
|
+
# stubbing +Time.now+, +Date.today+, and +DateTime.now+. The stubs are automatically removed
|
76
|
+
# at the end of the test.
|
77
|
+
#
|
78
|
+
# Note that the usec for the resulting time will be set to 0 to prevent rounding
|
79
|
+
# errors with external services, like MySQL (which will round instead of floor,
|
80
|
+
# leading to off-by-one-second errors), unless the <tt>with_usec</tt> argument
|
81
|
+
# is set to <tt>true</tt>.
|
82
|
+
#
|
83
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
84
|
+
# travel 1.day
|
85
|
+
# Time.current # => Sun, 10 Nov 2013 15:34:49 EST -05:00
|
86
|
+
# Date.current # => Sun, 10 Nov 2013
|
87
|
+
# DateTime.current # => Sun, 10 Nov 2013 15:34:49 -0500
|
88
|
+
#
|
89
|
+
# This method also accepts a block, which will return the current time back to its original
|
90
|
+
# state at the end of the block:
|
91
|
+
#
|
92
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
93
|
+
# travel 1.day do
|
94
|
+
# User.create.created_at # => Sun, 10 Nov 2013 15:34:49 EST -05:00
|
95
|
+
# end
|
96
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
97
|
+
def travel(duration, with_usec: false, &block)
|
98
|
+
travel_to Time.now + duration, with_usec: with_usec, &block
|
99
|
+
end
|
100
|
+
|
101
|
+
# Changes current time to the given time by stubbing +Time.now+, +Time.new+,
|
102
|
+
# +Date.today+, and +DateTime.now+ to return the time or date passed into this method.
|
103
|
+
# The stubs are automatically removed at the end of the test.
|
104
|
+
#
|
105
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
106
|
+
# travel_to Time.zone.local(2004, 11, 24, 1, 4, 44)
|
107
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
108
|
+
# Date.current # => Wed, 24 Nov 2004
|
109
|
+
# DateTime.current # => Wed, 24 Nov 2004 01:04:44 -0500
|
110
|
+
#
|
111
|
+
# Dates are taken as their timestamp at the beginning of the day in the
|
112
|
+
# application time zone. <tt>Time.current</tt> returns said timestamp,
|
113
|
+
# and <tt>Time.now</tt> its equivalent in the system time zone. Similarly,
|
114
|
+
# <tt>Date.current</tt> returns a date equal to the argument, and
|
115
|
+
# <tt>Date.today</tt> the date according to <tt>Time.now</tt>, which may
|
116
|
+
# be different. (Note that you rarely want to deal with <tt>Time.now</tt>,
|
117
|
+
# or <tt>Date.today</tt>, in order to honor the application time zone
|
118
|
+
# please always use <tt>Time.current</tt> and <tt>Date.current</tt>.)
|
119
|
+
#
|
120
|
+
# Note that the usec for the time passed will be set to 0 to prevent rounding
|
121
|
+
# errors with external services, like MySQL (which will round instead of floor,
|
122
|
+
# leading to off-by-one-second errors), unless the <tt>with_usec</tt> argument
|
123
|
+
# is set to <tt>true</tt>.
|
124
|
+
#
|
125
|
+
# This method also accepts a block, which will return the current time back to its original
|
126
|
+
# state at the end of the block:
|
127
|
+
#
|
128
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
129
|
+
# travel_to Time.zone.local(2004, 11, 24, 1, 4, 44) do
|
130
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
131
|
+
# end
|
132
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
133
|
+
def travel_to(date_or_time, with_usec: false)
|
134
|
+
if block_given? && in_block
|
135
|
+
travel_to_nested_block_call = <<~MSG
|
136
|
+
|
137
|
+
Calling `travel_to` with a block, when we have previously already made a call to `travel_to`, can lead to confusing time stubbing.
|
138
|
+
|
139
|
+
Instead of:
|
140
|
+
|
141
|
+
travel_to 2.days.from_now do
|
142
|
+
# 2 days from today
|
143
|
+
travel_to 3.days.from_now do
|
144
|
+
# 5 days from today
|
145
|
+
end
|
146
|
+
end
|
147
|
+
|
148
|
+
preferred way to achieve above is:
|
149
|
+
|
150
|
+
travel 2.days do
|
151
|
+
# 2 days from today
|
152
|
+
end
|
153
|
+
|
154
|
+
travel 5.days do
|
155
|
+
# 5 days from today
|
156
|
+
end
|
157
|
+
|
158
|
+
MSG
|
159
|
+
raise travel_to_nested_block_call
|
160
|
+
end
|
161
|
+
|
162
|
+
if date_or_time.is_a?(Date) && !date_or_time.is_a?(DateTime)
|
163
|
+
now = date_or_time.midnight.to_time
|
164
|
+
elsif date_or_time.is_a?(String)
|
165
|
+
now = Time.zone.parse(date_or_time)
|
166
|
+
else
|
167
|
+
now = date_or_time
|
168
|
+
now = now.to_time unless now.is_a?(Time)
|
169
|
+
end
|
170
|
+
|
171
|
+
now = now.change(usec: 0) unless with_usec
|
172
|
+
|
173
|
+
# +now+ must be in local system timezone, because +Time.at(now)+
|
174
|
+
# and +now.to_date+ (see stubs below) will use +now+'s timezone too!
|
175
|
+
now = now.getlocal
|
176
|
+
|
177
|
+
stubs = simple_stubs
|
178
|
+
stubbed_time = Time.now if stubs.stubbing(Time, :now)
|
179
|
+
stubs.stub_object(Time, :now) { at(now) }
|
180
|
+
|
181
|
+
stubs.stub_object(Time, :new) do |*args, **options|
|
182
|
+
if args.empty? && options.empty?
|
183
|
+
at(now)
|
184
|
+
else
|
185
|
+
stub = stubs.stubbing(Time, :new)
|
186
|
+
Time.send(stub.original_method, *args, **options)
|
187
|
+
end
|
188
|
+
end
|
189
|
+
|
190
|
+
stubs.stub_object(Date, :today) { jd(now.to_date.jd) }
|
191
|
+
stubs.stub_object(DateTime, :now) { jd(now.to_date.jd, now.hour, now.min, now.sec, Rational(now.utc_offset, 86400)) }
|
192
|
+
|
193
|
+
if block_given?
|
194
|
+
begin
|
195
|
+
self.in_block = true
|
196
|
+
yield
|
197
|
+
ensure
|
198
|
+
if stubbed_time
|
199
|
+
travel_to stubbed_time
|
200
|
+
else
|
201
|
+
travel_back
|
202
|
+
end
|
203
|
+
self.in_block = false
|
204
|
+
end
|
205
|
+
end
|
206
|
+
end
|
207
|
+
|
208
|
+
# Returns the current time back to its original state, by removing the stubs added by
|
209
|
+
# +travel+, +travel_to+, and +freeze_time+.
|
210
|
+
#
|
211
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
212
|
+
#
|
213
|
+
# travel_to Time.zone.local(2004, 11, 24, 1, 4, 44)
|
214
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
215
|
+
#
|
216
|
+
# travel_back
|
217
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
218
|
+
#
|
219
|
+
# This method also accepts a block, which brings the stubs back at the end of the block:
|
220
|
+
#
|
221
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
222
|
+
#
|
223
|
+
# travel_to Time.zone.local(2004, 11, 24, 1, 4, 44)
|
224
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
225
|
+
#
|
226
|
+
# travel_back do
|
227
|
+
# Time.current # => Sat, 09 Nov 2013 15:34:49 EST -05:00
|
228
|
+
# end
|
229
|
+
#
|
230
|
+
# Time.current # => Wed, 24 Nov 2004 01:04:44 EST -05:00
|
231
|
+
def travel_back
|
232
|
+
stubbed_time = Time.current if block_given? && simple_stubs.stubbed?
|
233
|
+
|
234
|
+
simple_stubs.unstub_all!
|
235
|
+
yield if block_given?
|
236
|
+
ensure
|
237
|
+
travel_to stubbed_time if stubbed_time
|
238
|
+
end
|
239
|
+
alias_method :unfreeze_time, :travel_back
|
240
|
+
|
241
|
+
# Calls +travel_to+ with +Time.now+. Forwards optional <tt>with_usec</tt> argument.
|
242
|
+
#
|
243
|
+
# Time.current # => Sun, 09 Jul 2017 15:34:49 EST -05:00
|
244
|
+
# freeze_time
|
245
|
+
# sleep(1)
|
246
|
+
# Time.current # => Sun, 09 Jul 2017 15:34:49 EST -05:00
|
247
|
+
#
|
248
|
+
# This method also accepts a block, which will return the current time back to its original
|
249
|
+
# state at the end of the block:
|
250
|
+
#
|
251
|
+
# Time.current # => Sun, 09 Jul 2017 15:34:49 EST -05:00
|
252
|
+
# freeze_time do
|
253
|
+
# sleep(1)
|
254
|
+
# User.create.created_at # => Sun, 09 Jul 2017 15:34:49 EST -05:00
|
255
|
+
# end
|
256
|
+
# Time.current # => Sun, 09 Jul 2017 15:34:50 EST -05:00
|
257
|
+
def freeze_time(with_usec: false, &block)
|
258
|
+
travel_to Time.now, with_usec: with_usec, &block
|
259
|
+
end
|
260
|
+
|
261
|
+
private
|
262
|
+
def simple_stubs
|
263
|
+
@simple_stubs ||= SimpleStubs.new
|
264
|
+
end
|
265
|
+
|
266
|
+
attr_accessor :in_block
|
267
|
+
end
|
268
|
+
end
|
269
|
+
end
|
@@ -0,0 +1,20 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
3
|
+
module ActiveSupport
|
4
|
+
autoload :Duration, "active_support/duration"
|
5
|
+
autoload :TimeWithZone, "active_support/time_with_zone"
|
6
|
+
autoload :TimeZone, "active_support/values/time_zone"
|
7
|
+
end
|
8
|
+
|
9
|
+
require "date"
|
10
|
+
require "time"
|
11
|
+
|
12
|
+
require "active_support/core_ext/time"
|
13
|
+
require "active_support/core_ext/date"
|
14
|
+
require "active_support/core_ext/date_time"
|
15
|
+
|
16
|
+
require "active_support/core_ext/integer/time"
|
17
|
+
require "active_support/core_ext/numeric/time"
|
18
|
+
|
19
|
+
require "active_support/core_ext/string/conversions"
|
20
|
+
require "active_support/core_ext/string/zones"
|