forked from elastic/rally
-
Notifications
You must be signed in to change notification settings - Fork 0
/
time_test.py
66 lines (54 loc) · 2.56 KB
/
time_test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
# Licensed to Elasticsearch B.V. under one or more contributor
# license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright
# ownership. Elasticsearch B.V. licenses this file to you under
# the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
import time
from unittest import TestCase
import esrally.time
class TimeTests(TestCase):
def test_split_time_increases(self):
wait_period_seconds = 0.05
stop_watch = esrally.time.Clock.stop_watch()
stop_watch.start()
prev_split_time = 0
for i in range(3):
time.sleep(wait_period_seconds)
split_time = stop_watch.split_time()
self.assertLess(prev_split_time, split_time)
prev_split_time = split_time
stop_watch.stop()
total_time = stop_watch.total_time()
self.assertLessEqual(prev_split_time, total_time)
def test_total_time_roughly_in_expected_range(self):
wait_period_seconds = 0.05
acceptable_delta_seconds = 0.01
stop_watch = esrally.time.Clock.stop_watch()
stop_watch.start()
time.sleep(wait_period_seconds)
stop_watch.stop()
interval = stop_watch.total_time()
# depending on scheduling accuracy we should end up somewhere in that range
self.assertGreaterEqual(interval, wait_period_seconds - acceptable_delta_seconds)
self.assertLessEqual(interval, wait_period_seconds + acceptable_delta_seconds)
def test_millis_conversion_roughly_in_expected_range(self):
wait_period_millis = 50
acceptable_delta_millis = 10
start = esrally.time.to_epoch_millis(esrally.time.Clock.now())
time.sleep(wait_period_millis / 1000.0)
end = esrally.time.to_epoch_millis(esrally.time.Clock.now())
interval_millis = end - start
# depending on scheduling accuracy we should end up somewhere in that range
self.assertGreaterEqual(interval_millis, wait_period_millis - acceptable_delta_millis)
self.assertLessEqual(interval_millis, wait_period_millis + acceptable_delta_millis)