Mercurial > hg > orthanc-tests
view PerfsDb/Tests/Statistics.py @ 282:a49055a3399b Orthanc-1.6.0
Added tag Orthanc-1.6.0 for changeset 99acf0c17348
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Wed, 18 Mar 2020 14:50:02 +0100 |
parents | 11b7e1fa7aff |
children |
line wrap: on
line source
import json from Test import Test class TestStatistics(Test): def __init__(self, name:str = "Statistics"): super().__init__(name) self._response = None def test(self): self._statistics = self._orthanc.getJson(relativeUrl="statistics") def beforeAll(self): # on large DB, statistics may be very slow so we don't want to repeat it 30 times ! self.repeatCount = int(max(int(self.repeatCount) / 10, 1)) def afterAll(self): print("Statistics:" + json.dumps(self._statistics))