Support pagination in query across all anchors(ep4)
[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.PaginationOption
27 import org.onap.cps.spi.utils.CpsValidator
28 import spock.lang.Specification
29
30 class CpsQueryServiceImplSpec extends Specification {
31     def mockCpsDataPersistenceService = Mock(CpsDataPersistenceService)
32     def mockCpsValidator = Mock(CpsValidator)
33
34     def objectUnderTest = new CpsQueryServiceImpl(mockCpsDataPersistenceService, mockCpsValidator)
35
36     def 'Query data nodes by cps path with #fetchDescendantsOption.'() {
37         given: 'a dataspace name, an anchor name and a cps path'
38             def dataspaceName = 'some-dataspace'
39             def anchorName = 'some-anchor'
40             def cpsPath = '/cps-path'
41         when: 'queryDataNodes is invoked'
42             objectUnderTest.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption)
43         then: 'the persistence service is called once with the correct parameters'
44             1 * mockCpsDataPersistenceService.queryDataNodes(dataspaceName, anchorName, cpsPath, fetchDescendantsOption)
45         and: 'the CpsValidator is called on the dataspaceName, schemaSetName and anchorName'
46             1 * mockCpsValidator.validateNameCharacters(dataspaceName, anchorName)
47         where: 'all fetch descendants options are supported'
48             fetchDescendantsOption << [FetchDescendantsOption.OMIT_DESCENDANTS, FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS,
49                                        FetchDescendantsOption.DIRECT_CHILDREN_ONLY, new FetchDescendantsOption(10)]
50     }
51
52     def 'Query data nodes across all anchors by cps path with #fetchDescendantsOption.'() {
53         given: 'a dataspace name, an anchor name and a cps path'
54             def dataspaceName = 'some-dataspace'
55             def cpsPath = '/cps-path'
56             def paginationOption = new PaginationOption(1, 2)
57         when: 'queryDataNodes is invoked'
58             objectUnderTest.queryDataNodesAcrossAnchors(dataspaceName, cpsPath, fetchDescendantsOption, paginationOption)
59         then: 'the persistence service is called once with the correct parameters'
60             1 * mockCpsDataPersistenceService.queryDataNodesAcrossAnchors(dataspaceName, cpsPath, fetchDescendantsOption, paginationOption)
61         and: 'the CpsValidator is called on the dataspaceName, schemaSetName and anchorName'
62             1 * mockCpsValidator.validateNameCharacters(dataspaceName)
63         where: 'all fetch descendants options are supported'
64         fetchDescendantsOption << [FetchDescendantsOption.OMIT_DESCENDANTS, FetchDescendantsOption.INCLUDE_ALL_DESCENDANTS,
65                                    FetchDescendantsOption.DIRECT_CHILDREN_ONLY, new FetchDescendantsOption(10)]
66     }
67
68     def 'Query total anchors for dataspace and cps path.'() {
69         when: 'query total anchors is invoked'
70             objectUnderTest.countAnchorsForDataspaceAndCpsPath("some-dataspace", "/cps-path")
71         then: 'the persistence service is called once with the correct parameters'
72             1 * mockCpsDataPersistenceService.countAnchorsForDataspaceAndCpsPath("some-dataspace", "/cps-path")
73     }
74 }