diff options
author | danielhanrahan <daniel.hanrahan@est.tech> | 2023-08-17 14:58:30 +0100 |
---|---|---|
committer | danielhanrahan <daniel.hanrahan@est.tech> | 2024-01-04 18:31:34 +0000 |
commit | 9e871800f7bb6de76a2baf10d0395933fd0bb5ab (patch) | |
tree | db9f366bb35e3ef362985113b28fae862bedca3a /integration-test/src/test | |
parent | 9c69e994ba90e0e6789cb28c3cdb274c55135de1 (diff) |
Normalize JSON attributes during update
This change fixes a few issues related to JSON encoding of
FragmentEntity attributes (data leaves). This significantly
improves update performance in cases of partial updates.
- Normalize JSON and order leaves by name when comparing
data leaves during update operations.
- Update performance test timings.
Issue-ID: CPS-2018
Signed-off-by: danielhanrahan <daniel.hanrahan@est.tech>
Change-Id: Ia764a353bf96c05758827845e1358745247ee237
Diffstat (limited to 'integration-test/src/test')
-rw-r--r-- | integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy index 35f65551f8..b3030b1c6b 100644 --- a/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy +++ b/integration-test/src/test/groovy/org/onap/cps/integration/performance/cps/UpdatePerfTest.groovy @@ -1,6 +1,6 @@ /* * ============LICENSE_START======================================================= - * Copyright (C) 2023 Nordix Foundation + * Copyright (C) 2023-2024 Nordix Foundation * ================================================================================ * Licensed under the Apache License, Version 2.0 (the 'License'); * you may not use this file except in compliance with the License. @@ -80,8 +80,8 @@ class UpdatePerfTest extends CpsPerfTestBase { where: scenario | totalNodes | startId | changeLeaves || timeLimit | memoryLimit 'Replace 0 nodes with 100' | 100 | 1 | false || 7 | 250 - 'Replace 100 using same data' | 100 | 1 | false || 5 | 250 - 'Replace 100 with new leaf values' | 100 | 1 | true || 5 | 250 + 'Replace 100 using same data' | 100 | 1 | false || 3 | 250 + 'Replace 100 with new leaf values' | 100 | 1 | true || 3 | 250 'Replace 100 with 100 new nodes' | 100 | 101 | false || 12 | 300 'Replace 50 existing and 50 new' | 100 | 151 | true || 8 | 250 'Replace 100 nodes with 0' | 0 | 1 | false || 5 | 250 @@ -106,8 +106,8 @@ class UpdatePerfTest extends CpsPerfTestBase { where: scenario | totalNodes | startId | changeLeaves || timeLimit | memoryLimit 'Replace list of 0 with 100' | 100 | 1 | false || 7 | 250 - 'Replace list of 100 using same data' | 100 | 1 | false || 5 | 250 - 'Replace list of 100 with new leaf values' | 100 | 1 | true || 5 | 250 + 'Replace list of 100 using same data' | 100 | 1 | false || 3 | 250 + 'Replace list of 100 with new leaf values' | 100 | 1 | true || 3 | 250 'Replace list with 100 new nodes' | 100 | 101 | false || 12 | 300 'Replace list with 50 existing and 50 new' | 100 | 151 | true || 8 | 250 'Replace list of 100 nodes with 1' | 1 | 1 | false || 5 | 250 |