aboutsummaryrefslogtreecommitdiffstats
path: root/integration-test
diff options
context:
space:
mode:
authordanielhanrahan <daniel.hanrahan@est.tech>2024-09-02 18:59:41 +0100
committerdanielhanrahan <daniel.hanrahan@est.tech>2025-03-27 10:04:42 +0000
commit66afb872fd75c36e05b4f94a76c00ca08f4511dd (patch)
treed7d425d7b7258fdfae88208ca856485e7674f210 /integration-test
parente23f16986d43d447d599e1c85922333af9df9a9d (diff)
Efficient implementation of Attribute Axis in SQL
Attribute Axis is the feature which allows fetching only a single attribute, e.g. //books[@title='Matilda']/@price -> [15] This implements the attribute axis feature directly in SQL, giving much higher performance e.g. for CM-handle ID searches in NCMP. The native SQL implementation directly returns data leaves from DB, not requiring conversions to FragmentEntity, DataNode, etc. Issue-ID: CPS-2623 Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech> Change-Id: I54f517e47ca6bcddfae356f98857b05fd2e1229e
Diffstat (limited to 'integration-test')
-rw-r--r--integration-test/src/test/groovy/org/onap/cps/integration/functional/cps/QueryServiceIntegrationSpec.groovy14
-rw-r--r--integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/QueryPerfTest.groovy8
2 files changed, 16 insertions, 6 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/functional/cps/QueryServiceIntegrationSpec.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/functional/cps/QueryServiceIntegrationSpec.groovy
index aa80e7f6e8..212686e917 100644
--- a/integration-test/src/test/groovy/org/onap/cps/integration/functional/cps/QueryServiceIntegrationSpec.groovy
+++ b/integration-test/src/test/groovy/org/onap/cps/integration/functional/cps/QueryServiceIntegrationSpec.groovy
@@ -1,6 +1,6 @@
/*
* ============LICENSE_START=======================================================
- * Copyright (C) 2023-2025 Nordix Foundation
+ * Copyright (C) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
* Modifications Copyright (C) 2023-2025 TechMahindra Ltd
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the 'License');
@@ -66,6 +66,7 @@ class QueryServiceIntegrationSpec extends FunctionalSpecBase {
'all books' | '//books/@title' || 19
'all books in a category' | '/bookstore/categories[@code=5]/books/@title' || 10
'non-existing path' | '/non-existing/@title' || 0
+ 'non-existing attribute' | '//books/@non-existing' || 0
}
def 'Query data leaf with type #leafType using CPS path.'() {
@@ -78,7 +79,7 @@ class QueryServiceIntegrationSpec extends FunctionalSpecBase {
where:
leafName | leafType || expectedResults
'lang' | String.class || ['English']
- 'price' | Number.class || [13, 20]
+ 'price' | Integer.class || [13, 20]
'editions' | List.class || [[1988, 2000], [2006]]
}
@@ -91,6 +92,15 @@ class QueryServiceIntegrationSpec extends FunctionalSpecBase {
assert result == ['Children', 'Comedy'] as Set
}
+ def 'Attempt to query data leaf without specifying leaf name gives an error.'() {
+ given: 'a cps path without an attribute axis'
+ def cpsPathWithoutAttributeAxis = '//books'
+ when: 'query data leaf is called without attribute axis in cps path'
+ objectUnderTest.queryDataLeaf(FUNCTIONAL_TEST_DATASPACE_1, BOOKSTORE_ANCHOR_1, cpsPathWithoutAttributeAxis, String.class)
+ then: 'illegal argument exception is thrown'
+ thrown(IllegalArgumentException)
+ }
+
def 'Cps Path query using comparative and boolean operators.'() {
given: 'a cps path query in the discount category'
def cpsPath = "/bookstore/categories[@code='5']/books" + leafCondition
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/QueryPerfTest.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/QueryPerfTest.groovy
index 70639c3c70..8c429b3a30 100644
--- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/QueryPerfTest.groovy
+++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/QueryPerfTest.groovy
@@ -1,6 +1,6 @@
/*
* ============LICENSE_START=======================================================
- * Copyright (C) 2023-2025 Nordix Foundation
+ * Copyright (C) 2023-2025 OpenInfra Foundation Europe. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the 'License');
* you may not use this file except in compliance with the License.
@@ -116,9 +116,9 @@ class QueryPerfTest extends CpsPerfTestBase {
recordAndAssertResourceUsage("Query data leaf ${scenario}", durationLimit, durationInSeconds, memoryLimit, resourceMeter.getTotalMemoryUsageInMB())
where: 'the following parameters are used'
scenario | cpsPath || durationLimit | memoryLimit | expectedNumberOfValues
- 'unique leaf value' | '/openroadm-devices/openroadm-device/@device-id' || 0.10 | 8 | OPENROADM_DEVICES_PER_ANCHOR
- 'common leaf value' | '/openroadm-devices/openroadm-device/@ne-state' || 0.05 | 1 | 1
- 'non-existing data leaf' | '/openroadm-devices/openroadm-device/@non-existing' || 0.05 | 1 | 0
+ 'unique leaf value' | '/openroadm-devices/openroadm-device/@device-id' || 0.05 | 0.1 | OPENROADM_DEVICES_PER_ANCHOR
+ 'common leaf value' | '/openroadm-devices/openroadm-device/@ne-state' || 0.02 | 0.1 | 1
+ 'non-existing data leaf' | '/openroadm-devices/openroadm-device/@non-existing' || 0.01 | 0.1 | 0
}
}