Merge "Fix test-deregistration script"
[cps.git] / integration-test / src / test / groovy / org / onap / cps / integration / performance / cps / QueryPerfTest.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.cps
22
23 import org.onap.cps.api.CpsQueryService
24 import org.onap.cps.integration.performance.base.CpsPerfTestBase
25
26 import static org.onap.cps.spi.FetchDescendantsOption.DIRECT_CHILDREN_ONLY
27 import static org.onap.cps.spi.FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS
28 import static org.onap.cps.spi.FetchDescendantsOption.OMIT_DESCENDANTS
29
30 class QueryPerfTest extends CpsPerfTestBase {
31
32     CpsQueryService objectUnderTest
33
34     def setup() { objectUnderTest = cpsQueryService }
35
36     def 'Query complete data trees with #scenario.'() {
37         when: 'query data nodes (using a fresh anchor with identical data for each test)'
38             stopWatch.start()
39             def result = objectUnderTest.queryDataNodes(CPS_PERFORMANCE_TEST_DATASPACE, anchor, cpsPath, INCLUDE_ALL_DESCENDANTS)
40             stopWatch.stop()
41             def durationInMillis = stopWatch.getTotalTimeMillis()
42         then: 'the expected number of nodes is returned'
43             assert countDataNodesInTree(result) == expectedNumberOfDataNodes
44         and: 'all data is read within #durationLimit ms'
45             recordAndAssertPerformance("Query 1 anchor ${scenario}", durationLimit, durationInMillis)
46         where: 'the following parameters are used'
47             scenario                     | anchor       | cpsPath                                                             || durationLimit | expectedNumberOfDataNodes
48             'top element'                | 'openroadm1' | '/openroadm-devices'                                                || 200           | 50 * 86 + 1
49             'leaf condition'             | 'openroadm2' | '//openroadm-device[@ne-state="inservice"]'                         || 250           | 50 * 86
50             'ancestors'                  | 'openroadm3' | '//openroadm-device/ancestor::openroadm-devices'                    || 200           | 50 * 86 + 1
51             'leaf condition + ancestors' | 'openroadm4' | '//openroadm-device[@status="success"]/ancestor::openroadm-devices' || 200           | 50 * 86 + 1
52     }
53
54     def 'Query complete data trees across all anchors with #scenario.'() {
55         when: 'query data nodes across all anchors'
56             stopWatch.start()
57             def result = objectUnderTest.queryDataNodesAcrossAnchors('cpsPerformanceDataspace', cpspath, INCLUDE_ALL_DESCENDANTS)
58             stopWatch.stop()
59             def durationInMillis = stopWatch.getTotalTimeMillis()
60         then: 'the expected number of nodes is returned'
61             assert countDataNodesInTree(result) == expectedNumberOfDataNodes
62         and: 'all data is read within #durationLimit ms'
63             recordAndAssertPerformance("Query across anchors ${scenario}", durationLimit, durationInMillis)
64         where: 'the following parameters are used'
65             scenario                     | cpspath                                                             || durationLimit | expectedNumberOfDataNodes
66             'top element'                | '/openroadm-devices'                                                || 600           | 5 * (50 * 86 + 1)
67             'leaf condition'             | '//openroadm-device[@ne-state="inservice"]'                         || 1000          | 5 * (50 * 86)
68             'ancestors'                  | '//openroadm-device/ancestor::openroadm-devices'                    || 600           | 5 * (50 * 86 + 1)
69             'leaf condition + ancestors' | '//openroadm-device[@status="success"]/ancestor::openroadm-devices' || 600           | 5 * (50 * 86 + 1)
70     }
71
72     def 'Query with leaf condition and #scenario.'() {
73         when: 'query data nodes (using a fresh anchor with identical data for each test)'
74             stopWatch.start()
75             def result = objectUnderTest.queryDataNodes(CPS_PERFORMANCE_TEST_DATASPACE, anchor, '//openroadm-device[@status="success"]', fetchDescendantsOption)
76             stopWatch.stop()
77             def durationInMillis = stopWatch.getTotalTimeMillis()
78         then: 'the expected number of nodes is returned'
79             assert countDataNodesInTree(result) == expectedNumberOfDataNodes
80         and: 'all data is read within #durationLimit ms'
81             recordAndAssertPerformance("Query with ${scenario}", durationLimit, durationInMillis)
82         where: 'the following parameters are used'
83             scenario             | fetchDescendantsOption  | anchor       || durationLimit | expectedNumberOfDataNodes
84             'no descendants'     | OMIT_DESCENDANTS        | 'openroadm1' || 60            | 50
85             'direct descendants' | DIRECT_CHILDREN_ONLY    | 'openroadm2' || 120           | 50 * 2
86             'all descendants'    | INCLUDE_ALL_DESCENDANTS | 'openroadm3' || 200           | 50 * 86
87     }
88
89     def 'Query ancestors with #scenario.'() {
90         when: 'query data nodes (using a fresh anchor with identical data for each test)'
91             stopWatch.start()
92             def result = objectUnderTest.queryDataNodes(CPS_PERFORMANCE_TEST_DATASPACE, anchor, '//openroadm-device[@ne-state="inservice"]/ancestor::openroadm-devices', fetchDescendantsOption)
93             stopWatch.stop()
94             def durationInMillis = stopWatch.getTotalTimeMillis()
95         then: 'the expected number of nodes is returned'
96             assert countDataNodesInTree(result) == expectedNumberOfDataNodes
97         and: 'all data is read within #durationLimit ms'
98             recordAndAssertPerformance("Query ancestors with ${scenario}", durationLimit, durationInMillis)
99         where: 'the following parameters are used'
100             scenario             | fetchDescendantsOption  | anchor       || durationLimit | expectedNumberOfDataNodes
101             'no descendants'     | OMIT_DESCENDANTS        | 'openroadm1' || 60            | 1
102             'direct descendants' | DIRECT_CHILDREN_ONLY    | 'openroadm2' || 120           | 1 + 50
103             'all descendants'    | INCLUDE_ALL_DESCENDANTS | 'openroadm3' || 200           | 1 + 50 * 86
104     }
105
106 }