Add 'direct' keyword to descendants option to query direct children (ep1)
[cps.git] / cps-service / src / test / groovy / org / onap / cps / api / impl / CpsQueryServiceImplSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2021-2023 Nordix Foundation
4  *  Modifications Copyright (C) 2023 TechMahindra Ltd.
5  *  ================================================================================
6  *  Licensed under the Apache License, Version 2.0 (the "License");
7  *  you may not use this file except in compliance with the License.
8  *  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *  Unless required by applicable law or agreed to in writing, software
13  *  distributed under the License is distributed on an "AS IS" BASIS,
14  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *  See the License for the specific language governing permissions and
16  *  limitations under the License.
17  *
18  *  SPDX-License-Identifier: Apache-2.0
19  *  ============LICENSE_END=========================================================
20  */
21
22 package org.onap.cps.api.impl
23
24 import org.onap.cps.spi.CpsDataPersistenceService
25 import org.onap.cps.spi.FetchDescendantsOption
26 import org.onap.cps.spi.utils.CpsValidator
27 import spock.lang.Specification
28
29 class CpsQueryServiceImplSpec extends Specification {
30     def mockCpsDataPersistenceService = Mock(CpsDataPersistenceService)
31     def mockCpsValidator = Mock(CpsValidator)
32
33     def objectUnderTest = new CpsQueryServiceImpl(mockCpsDataPersistenceService, mockCpsValidator)
34
35     def 'Query data nodes by cps path with #fetchDescendantsOption.'() {
36         given: 'a dataspace name, an anchor name and a cps path'
37             def dataspaceName = 'some-dataspace'
38             def anchorName = 'some-anchor'
39             def cpsPath = '/cps-path'
40         when: 'queryDataNodes is invoked'
41             objectUnderTest.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption)
42         then: 'the persistence service is called once with the correct parameters'
43             1 * mockCpsDataPersistenceService.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption)
44         and: 'the CpsValidator is called on the dataspaceName, schemaSetName and anchorName'
45             1 * mockCpsValidator.validateNameCharacters(dataspaceName, anchorName)
46         where: 'all fetch descendants options are supported'
47             fetchDescendantsOption << [FetchDescendantsOption.OMIT_DESCENDANTS, FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS,
48                                        FetchDescendantsOption.DIRECT_CHILDREN_ONLY, new FetchDescendantsOption(10)]
49     }
50
51     def 'Query data nodes across all anchors by cps path with #fetchDescendantsOption.'() {
52         given: 'a dataspace name, an anchor name and a cps path'
53             def dataspaceName = 'some-dataspace'
54             def cpsPath = '/cps-path'
55         when: 'queryDataNodes is invoked'
56             objectUnderTest.queryDataNodesAcrossAnchors(dataspaceName, cpsPath, fetchDescendantsOption)
57         then: 'the persistence service is called once with the correct parameters'
58             1 * mockCpsDataPersistenceService.queryDataNodesAcrossAnchors(dataspaceName, cpsPath, fetchDescendantsOption)
59         and: 'the CpsValidator is called on the dataspaceName, schemaSetName and anchorName'
60             1 * mockCpsValidator.validateNameCharacters(dataspaceName)
61         where: 'all fetch descendants options are supported'
62             fetchDescendantsOption << [FetchDescendantsOption.OMIT_DESCENDANTS, FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS]
63     }
64
65 }