Mercurial > hg > orthanc-tests
view PerfsDb/Test.py @ 193:ef2c66f81249
Added tag Orthanc-1.5.1 for changeset 6ff9d035b26b
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 20 Dec 2018 12:23:58 +0100 |
parents | ff939d07989f |
children | f42c10dab862 |
line wrap: on
line source
import time import statistics from orthancRestApi import OrthancClient from TestResult import TestResult class Test: def __init__(self, name: str): self.name = name self._orthanc = None self.repeatCount = 20 def setOrthancClient(self, orthanc: OrthancClient): self._orthanc = orthanc def setRepeatCount(self, repeatCount: int): self.repeatCount = repeatCount def beforeAll(self): """ Code to execute before the execution of all repetitions of a test; i.e: upload a file. This code is not included in timings """ pass def beforeEach(self): """ Code to execute before the execution of each repetition of a test. This code is not included in timings """ pass def test(self): """ Code whose execution time will be measured """ pass def afterEach(self): """ Code to execute after the execution of each repetition of a test. This code is not included in timings """ pass def afterAll(self): """ Code to execute after the execution of all repetitions of a test. This code is not included in timings """ pass def run(self) -> TestResult: result = TestResult(self.name) self.beforeAll() for i in range(0, self.repeatCount): self.beforeEach() startTime = time.time() self.test() endTime = time.time() self.afterEach() result.add((endTime - startTime) * 1000) self.afterAll() result.compute() return result def __str__(self): return "{name:<40}: {avg:>8.2f} ms {min:>8.2f} ms {max:>8.2f} ms".format( name=self.name, avg = self.averageTimeInMs, min=self.minTimeInMs, max=self.maxTimeInMs )