ce0aab45b0c80b221a8c7d8de4d710d907292105
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / performance / base / PerfTestBase.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2023-2024 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
25 abstract class PerfTestBase extends CpsIntegrationSpecBase {
26
27     static def LARGE_SCHEMA_SET = 'largeSchemaSet'
28     static def PERFORMANCE_RECORD = []
29
30     def cleanupSpec() {
31         println('##################################################################################################')
32         printTitle()
33         println('##################################################################################################')
34         PERFORMANCE_RECORD.sort().each {
35             println(it)
36         }
37         println('##################################################################################################')
38         PERFORMANCE_RECORD.clear()
39     }
40
41     def setup() {
42         if (!isInitialised()) {
43             setupPerformanceInfraStructure()
44             createInitialData()
45         }
46     }
47
48     abstract def printTitle()
49
50     abstract def isInitialised()
51
52     abstract def setupPerformanceInfraStructure()
53
54     abstract def createInitialData()
55
56     def recordAndAssertResourceUsage(String shortTitle, double thresholdInSec, double recordedTimeInSec, memoryLimit, memoryUsageInMB) {
57         def pass = recordedTimeInSec <= thresholdInSec && memoryUsageInMB <= memoryLimit
58         if (shortTitle.length() > 40) {
59             shortTitle = shortTitle.substring(0, 40)
60         }
61         def record = String.format('%2d.%-40s limit %8.2f took %8.2f sec %,8.2f MB used ', PERFORMANCE_RECORD.size() + 1, shortTitle, thresholdInSec, recordedTimeInSec, memoryUsageInMB)
62         record += pass ? 'PASS' : 'FAIL'
63         PERFORMANCE_RECORD.add(record)
64         assert recordedTimeInSec <= thresholdInSec
65         assert memoryUsageInMB <= memoryLimit
66         return true
67     }
68 }