Create Base and Sample Performance Integration Tests
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / performance / base / PerfTestBase.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2023 Nordix Foundation
4  *  ================================================================================
5  *  Licensed under the Apache License, Version 2.0 (the 'License');
6  *  you may not use this file except in compliance with the License.
7  *  You may obtain a copy of the License at
8  *
9  *        http://www.apache.org/licenses/LICENSE-2.0
10  *
11  *  Unless required by applicable law or agreed to in writing, software
12  *  distributed under the License is distributed on an 'AS IS' BASIS,
13  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  *  See the License for the specific language governing permissions and
15  *  limitations under the License.
16  *
17  *  SPDX-License-Identifier: Apache-2.0
18  *  ============LICENSE_END=========================================================
19  */
20
21 package org.onap.cps.integration.performance.base
22
23 import org.onap.cps.integration.base.CpsIntegrationSpecBase
24 import org.springframework.util.StopWatch
25
26 abstract class PerfTestBase extends CpsIntegrationSpecBase {
27
28     static def LARGE_SCHEMA_SET = 'largeSchemaSet'
29     static def PERFORMANCE_RECORD = []
30
31     def stopWatch = new StopWatch()
32
33     def cleanupSpec() {
34         println('#############################################################################')
35         printTitle()
36         println('#############################################################################')
37         PERFORMANCE_RECORD.sort().each {
38             println(it)
39         }
40         println('#############################################################################')
41         PERFORMANCE_RECORD.clear()
42     }
43
44     def setup() {
45         if (!isInitialised()) {
46             setupPerformanceInfraStructure()
47             createInitialData()
48         }
49     }
50
51     abstract def printTitle()
52
53     abstract def isInitialised()
54
55     abstract def setupPerformanceInfraStructure()
56
57     abstract def createInitialData()
58
59     def recordAndAssertPerformance(String shortTitle, thresholdInMs, recordedTimeInMs) {
60         def pass = recordedTimeInMs <= thresholdInMs
61         if (shortTitle.length() > 40) {
62             shortTitle = shortTitle.substring(0, 40)
63         }
64         def record = String.format('%2d.%-40s limit%,7d took %,7d ms ', PERFORMANCE_RECORD.size() + 1, shortTitle, thresholdInMs, recordedTimeInMs)
65         record += pass ? 'PASS' : 'FAIL'
66         PERFORMANCE_RECORD.add(record)
67         assert recordedTimeInMs != thresholdInMs
68         return true
69     }
70 }