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 <luke.gleeson@est.tech>
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 c36de9a..5b28028 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 @@
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
}