From 7efffcd1b70f3118e2b0b0143c3ce55cd5c9f8b5 Mon Sep 17 00:00:00 2001 From: GM001016278 Date: Wed, 4 Feb 2026 11:13:51 +0530 Subject: [PATCH] [PATCH-3] Reincluding the test case for Delta report performance tests. - Removed ignore annotation from "Get delta between an anchor and JSON payload with grouping enabled" test. - This change Reintroduced the delta report performance test case to ensure performance coverage and validate delta report behavior. Issue-ID:CPS-3131 Change-Id: Iffb68e0beb6f90df26a50c78f798368500fabbde Signed-off-by: GM001016278 --- .../org/onap/cps/integration/performance/cps/DeltaPerfTest.groovy | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/DeltaPerfTest.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/DeltaPerfTest.groovy index ddd4c8bdf9..ba05d40892 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/DeltaPerfTest.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/DeltaPerfTest.groovy @@ -109,7 +109,6 @@ class DeltaPerfTest extends CpsPerfTestBase{ 'all descendants' | INCLUDE_ALL_DESCENDANTS || 6.0 } - @Ignore def 'Get delta between an anchor and JSON payload with grouping disabled and #scenario'() { when: 'attempt to get delta between an anchor and JSON payload' resourceMeter.start() @@ -117,7 +116,7 @@ class DeltaPerfTest extends CpsPerfTestBase{ resourceMeter.stop() def durationInSeconds = resourceMeter.getTotalTimeInSeconds() then: 'the delta is returned and operation completes within expected time' - recordAndAssertResourceUsage('CPS:Delta between anchor and JSON, without grouping', expectedDuration, durationInSeconds, resourceMeter.getTotalMemoryUsageInMB()) + recordAndAssertResourceUsage('CPS:Delta of anchor-JSON no grouping ${scenario}', expectedDuration, durationInSeconds, resourceMeter.getTotalMemoryUsageInMB()) where: 'the following parameters are used' scenario | fetchDescendantsOption || expectedDuration 'no descendants' | OMIT_DESCENDANTS || 6.0 -- 2.16.6