d8012ec6d41dda0a6cafdbbc4869e21bcc7f6117
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / performance / base / CpsPerfTestBase.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.ResourceMeter
24 import org.onap.cps.rest.utils.MultipartFileUtil
25 import org.onap.cps.spi.FetchDescendantsOption
26 import org.springframework.web.multipart.MultipartFile
27
28 class CpsPerfTestBase extends PerfTestBase {
29
30     static final def CPS_PERFORMANCE_TEST_DATASPACE = 'cpsPerformanceDataspace'
31     static final def OPENROADM_ANCHORS = 3
32     static final def OPENROADM_DEVICES_PER_ANCHOR = 1000
33     static final def OPENROADM_DATANODES_PER_DEVICE = 86
34
35     ResourceMeter resourceMeter = new ResourceMeter()
36
37     def printTitle() {
38         println('##                   C P S   P E R F O R M A N C E   T E S T   R E S U L T S                    ##')
39     }
40
41     def isInitialised() {
42         return dataspaceExists(CPS_PERFORMANCE_TEST_DATASPACE)
43     }
44
45     def setupPerformanceInfraStructure() {
46         cpsAdminService.createDataspace(CPS_PERFORMANCE_TEST_DATASPACE)
47         def modelAsString = readResourceDataFile('bookstore/bookstore.yang')
48         cpsModuleService.createSchemaSet(CPS_PERFORMANCE_TEST_DATASPACE, BOOKSTORE_SCHEMA_SET, [bookstore: modelAsString])
49     }
50
51     def createInitialData() {
52         addOpenRoadModel()
53         addOpenRoadData()
54     }
55
56     def addOpenRoadModel() {
57         def file = new File('src/test/resources/data/openroadm/correctedModel.zip')
58         def multipartFile = Mock(MultipartFile)
59         multipartFile.getOriginalFilename() >> file.getName()
60         multipartFile.getInputStream() >> new FileInputStream(file)
61         cpsModuleService.createSchemaSet(CPS_PERFORMANCE_TEST_DATASPACE, LARGE_SCHEMA_SET, MultipartFileUtil.extractYangResourcesMap(multipartFile))
62     }
63
64     def addOpenRoadData() {
65         def data = generateOpenRoadData(OPENROADM_DEVICES_PER_ANCHOR)
66         resourceMeter.start()
67         addAnchorsWithData(OPENROADM_ANCHORS, CPS_PERFORMANCE_TEST_DATASPACE, LARGE_SCHEMA_SET, 'openroadm', data)
68         resourceMeter.stop()
69         def durationInSeconds = resourceMeter.getTotalTimeInSeconds()
70         recordAndAssertResourceUsage('Creating openroadm anchors with large data tree', 200, durationInSeconds, 600, resourceMeter.getTotalMemoryUsageInMB())
71     }
72
73     def generateOpenRoadData(numberOfNodes) {
74         def innerNode = readResourceDataFile('openroadm/innerNode.json')
75         return '{ "openroadm-devices": { "openroadm-device": [' +
76             (1..numberOfNodes).collect { innerNode.replace('NODE_ID_HERE', it.toString()) }.join(',') +
77             ']}}'
78     }
79
80     def 'Warm the database'() {
81         when: 'dummy get data nodes runs so that populating the DB does not get included in other test timings'
82             resourceMeter.start()
83             def result = cpsDataService.getDataNodes(CPS_PERFORMANCE_TEST_DATASPACE, 'openroadm1', '/', FetchDescendantsOption.OMIT_DESCENDANTS)
84             assert countDataNodesInTree(result) == 1
85             resourceMeter.stop()
86             def durationInSeconds = resourceMeter.getTotalTimeInSeconds()
87         then: 'memory used is within #peakMemoryUsage'
88             assert resourceMeter.getTotalMemoryUsageInMB() <= 30
89         and: 'all data is read within expected time'
90             recordAndAssertResourceUsage("Warming database", 200, durationInSeconds, 600, resourceMeter.getTotalMemoryUsageInMB())
91     }
92
93 }