From 0ed3b414b7eba943114deb68b1c3f8e541ab1794 Mon Sep 17 00:00:00 2001 From: lukegleeson Date: Tue, 18 Oct 2022 17:06:54 +0100 Subject: [PATCH 1/1] 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 --- .../test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 } -- 2.16.6