Increase read time of get datanode test 37/131537/1
authorlukegleeson <luke.gleeson@est.tech>
Tue, 18 Oct 2022 16:06:54 +0000 (17:06 +0100)
committerlukegleeson <luke.gleeson@est.tech>
Tue, 18 Oct 2022 16:06:54 +0000 (17:06 +0100)
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

cps-ri/src/test/groovy/org/onap/cps/spi/impl/CpsToDataNodePerfSpec.groovy

index c36de9a..5b28028 100644 (file)
@@ -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
     }