From f1a506a235abe624704cfdd17aadbfe1760c4c04 Mon Sep 17 00:00:00 2001 From: danielhanrahan Date: Wed, 26 Jul 2023 15:50:06 +0100 Subject: [PATCH] Some performance tests are skipped due to filename CPS POM is setup so that only files ending in 'Spec' or 'Test' are run as tests, and files ending in 'PerfTest' will only run in the 'include-performance' profile. The 32K limit tests are currently being skipped always, as they do not end in 'Spec', 'Test', or 'PerfTest'. This commit renames them to PerfTest. Issue-ID: CPS-1811 Signed-off-by: danielhanrahan Change-Id: I75a4ae92edf324213f734503c23dedb2b31fd007 --- ...psAdminServiceLimits.groovy => CpsAdminServiceLimitsPerfTest.groovy} | 2 +- ...{CpsDataServiceLimits.groovy => CpsDataServiceLimitsPerfTest.groovy} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/{CpsAdminServiceLimits.groovy => CpsAdminServiceLimitsPerfTest.groovy} (97%) rename integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/{CpsDataServiceLimits.groovy => CpsDataServiceLimitsPerfTest.groovy} (98%) diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimits.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimitsPerfTest.groovy similarity index 97% rename from integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimits.groovy rename to integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimitsPerfTest.groovy index 0034af453..9ea7a7b53 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimits.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsAdminServiceLimitsPerfTest.groovy @@ -23,7 +23,7 @@ package org.onap.cps.integration.performance.cps import org.onap.cps.api.CpsAdminService import org.onap.cps.integration.performance.base.CpsPerfTestBase -class CpsAdminServiceLimits extends CpsPerfTestBase { +class CpsAdminServiceLimitsPerfTest extends CpsPerfTestBase { CpsAdminService objectUnderTest diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimits.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimitsPerfTest.groovy similarity index 98% rename from integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimits.groovy rename to integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimitsPerfTest.groovy index 1579470ea..e0df2fee7 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimits.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/CpsDataServiceLimitsPerfTest.groovy @@ -27,7 +27,7 @@ import org.onap.cps.spi.exceptions.DataNodeNotFoundException import static org.onap.cps.spi.FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS -class CpsDataServiceLimits extends CpsPerfTestBase { +class CpsDataServiceLimitsPerfTest extends CpsPerfTestBase { CpsDataService objectUnderTest -- 2.16.6