view PerfsDb/Tests/Statistics.py @ 166:7d39adee9f88

don't repeat statistics test that is lengthy
author am@osimis.io
date Fri, 31 Aug 2018 10:31:15 +0200
parents df1f9946571c
children 3b1bfbe960c9
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 = max(self.repeatCount / 10, 1)

    def afterAll(self):
        print("Statistics:" + json.dumps(self._statistics))