aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/test
diff options
context:
space:
mode:
authorVishal Telangre <the@vishaltelangre.com>2019-04-16 05:20:35 +0530
committerVishal Telangre <the@vishaltelangre.com>2019-04-16 05:20:35 +0530
commit63790504699ff08088b0f7422eefa6514e3bfc30 (patch)
treee899f4cb9bbbacbd201402cc33c2a1d98a0b0338 /activesupport/test
parent547ebcb91e955a1d114c827737c9eb6845a8ca97 (diff)
downloadrails-63790504699ff08088b0f7422eefa6514e3bfc30.tar.gz
rails-63790504699ff08088b0f7422eefa6514e3bfc30.tar.bz2
rails-63790504699ff08088b0f7422eefa6514e3bfc30.zip
Add test coverage
Diffstat (limited to 'activesupport/test')
-rw-r--r--activesupport/test/notifications_test.rb17
1 files changed, 13 insertions, 4 deletions
diff --git a/activesupport/test/notifications_test.rb b/activesupport/test/notifications_test.rb
index bb20d26a25..0af59764b5 100644
--- a/activesupport/test/notifications_test.rb
+++ b/activesupport/test/notifications_test.rb
@@ -302,7 +302,7 @@ module Notifications
class EventTest < TestCase
def test_events_are_initialized_with_details
- time = Time.now
+ time = Concurrent.monotonic_time
event = event(:foo, time, time + 0.01, random_id, {})
assert_equal :foo, event.name
@@ -310,15 +310,24 @@ module Notifications
assert_in_delta 10.0, event.duration, 0.00001
end
+ def test_event_cpu_time_and_idle_time_when_start_and_finish_is_not_called
+ time = Concurrent.monotonic_time
+ event = event(:foo, time, time + 0.01, random_id, {})
+
+ assert_equal 0, event.cpu_time
+ assert_in_delta 10.0, event.idle_time, 0.00001
+ end
+
+
def test_events_consumes_information_given_as_payload
- event = event(:foo, Time.now, Time.now + 1, random_id, payload: :bar)
+ event = event(:foo, Concurrent.monotonic_time, Concurrent.monotonic_time + 1, random_id, payload: :bar)
assert_equal Hash[payload: :bar], event.payload
end
def test_event_is_parent_based_on_children
- time = Time.utc(2009, 01, 01, 0, 0, 1)
+ time = Concurrent.monotonic_time
- parent = event(:foo, Time.utc(2009), Time.utc(2009) + 100, random_id, {})
+ parent = event(:foo, Concurrent.monotonic_time, Concurrent.monotonic_time + 100, random_id, {})
child = event(:foo, time, time + 10, random_id, {})
not_child = event(:foo, time, time + 100, random_id, {})