From: lukegleeson Date: Tue, 18 Oct 2022 16:06:54 +0000 (+0100) Subject: Increase read time of get datanode test X-Git-Tag: 3.2.1~81^2 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=0ed3b414b7eba943114deb68b1c3f8e541ab1794;hp=a083f7c9128d19b211f6022d6723a8d4bc9d0f76;p=cps.git Increase read time of get datanode test Build was failing locally for me with development applications open (intellij, chrome, etc...) After discussion with Toine we are prioritising performance test pipeline with suggested increase from 3.5 seconds to 6 seconds. Issue-ID: CPS-1171 Signed-off-by: lukegleeson Change-Id: I335fda7ba19b1fb8f4aa543833df65de26d9ccc3 --- diff --git a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy index c36de9aaa..5b2802813 100644 --- a/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy +++ b/cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy @@ -54,8 +54,8 @@ class CpsToDataNodePerfSpec extends CpsPersistenceSpecBase { def readDurationInMillis = readStopWatch.getTime() then : 'setup duration is under 8 seconds' assert setupDurationInMillis < 8000 - and: 'read duration is under 3.5 seconds' - assert readDurationInMillis < 3500 + and: 'read duration is under 6 seconds' + assert readDurationInMillis < 6000 and: 'data node is returned with all the descendants populated' assert countDataNodes(result) == 1533 }