From 549f0873c2beed9517fb4006e1f0a63e0019abb3 Mon Sep 17 00:00:00 2001 From: Andrey Zelenkov Date: Tue, 9 Apr 2019 16:14:42 +0300 Subject: Tests: wait_for_record() introduced. --- test/unit/applications/proto.py | 11 +++++++++++ 1 file changed, 11 insertions(+) (limited to 'test/unit') diff --git a/test/unit/applications/proto.py b/test/unit/applications/proto.py index 16007757..2b865695 100644 --- a/test/unit/applications/proto.py +++ b/test/unit/applications/proto.py @@ -13,3 +13,14 @@ class TestApplicationProto(TestControl): def search_in_log(self, pattern, name='unit.log'): with open(self.testdir + '/' + name, 'r', errors='ignore') as f: return re.search(pattern, f.read()) + + def wait_for_record(self, pattern, name='unit.log'): + for i in range(50): + found = self.search_in_log(pattern, name) + + if found is not None: + break + + time.sleep(0.1) + + return found -- cgit