# HG changeset patch # User Pierre-Yves David # Date 1618852218 -7200 # Node ID 99c629101b738ae88dc5c7ac1b74c60dd75d9efd # Parent e38718838808f03dea5eb7aeb14070b1ae3cc10a testing: add a utility function to wait for file create This is similar to `tests/testlib/wait-on-file`, but for the python code Differential Revision: https://phab.mercurial-scm.org/D10476 diff -r e38718838808 -r 99c629101b73 mercurial/testing/__init__.py --- a/mercurial/testing/__init__.py Mon Apr 19 19:09:18 2021 +0200 +++ b/mercurial/testing/__init__.py Mon Apr 19 19:10:18 2021 +0200 @@ -0,0 +1,30 @@ +from __future__ import ( + absolute_import, + division, +) + +import os +import time + + +# work around check-code complains +# +# This is a simple log level module doing simple test related work, we can't +# import more things, and we do not need it. +environ = getattr(os, 'environ') + + +def _timeout_factor(): + """return the current modification to timeout""" + default = int(environ.get('HGTEST_TIMEOUT_DEFAULT', 1)) + current = int(environ.get('HGTEST_TIMEOUT', default)) + return current / float(default) + + +def wait_file(path, timeout=10): + timeout *= _timeout_factor() + start = time.time() + while not os.path.exists(path): + if time.time() - start > timeout: + raise RuntimeError(b"timed out waiting for file: %s" % path) + time.sleep(0.01)