Update Model to allow Persisting of alternateId
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / init / InventoryModelLoaderSpec.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.ncmp.init
22
23 import static org.onap.cps.ncmp.api.impl.ncmppersistence.NcmpPersistence.NCMP_DATASPACE_NAME
24 import static org.onap.cps.ncmp.api.impl.ncmppersistence.NcmpPersistence.NCMP_DMI_REGISTRY_ANCHOR
25
26 import ch.qos.logback.classic.Level
27 import ch.qos.logback.classic.Logger
28 import ch.qos.logback.core.read.ListAppender
29 import org.onap.cps.api.CpsAdminService
30 import org.onap.cps.api.CpsDataService
31 import org.onap.cps.api.CpsModuleService
32 import org.onap.cps.spi.model.Dataspace
33 import org.slf4j.LoggerFactory
34 import org.springframework.boot.context.event.ApplicationReadyEvent
35 import org.springframework.context.annotation.AnnotationConfigApplicationContext
36 import spock.lang.Specification
37
38 class InventoryModelLoaderSpec extends Specification {
39
40     def mockCpsAdminService = Mock(CpsAdminService)
41     def mockCpsModuleService = Mock(CpsModuleService)
42     def mockCpsDataService = Mock(CpsDataService)
43     def objectUnderTest = new InventoryModelLoader(mockCpsAdminService, mockCpsModuleService, mockCpsDataService)
44
45     def applicationContext = new AnnotationConfigApplicationContext()
46
47     def expectedYangResourceToContentMap
48     def logger = (Logger) LoggerFactory.getLogger(objectUnderTest.class)
49     def loggingListAppender
50
51     void setup() {
52         expectedYangResourceToContentMap = objectUnderTest.createYangResourcesToContentMap('dmi-registry@2023-11-27.yang')
53         logger.setLevel(Level.DEBUG)
54         loggingListAppender = new ListAppender()
55         logger.addAppender(loggingListAppender)
56         loggingListAppender.start()
57         applicationContext.refresh()
58     }
59
60     void cleanup() {
61         ((Logger) LoggerFactory.getLogger(CmDataSubscriptionModelLoader.class)).detachAndStopAllAppenders()
62         applicationContext.close()
63     }
64
65     def 'Onboard subscription model via application ready event.'() {
66         given: 'dataspace is ready for use'
67             mockCpsAdminService.getDataspace(NCMP_DATASPACE_NAME) >> new Dataspace('')
68         when: 'the application is ready'
69             objectUnderTest.onApplicationEvent(Mock(ApplicationReadyEvent))
70         then: 'the module service is used to create the new schema set from the correct resource'
71             1 * mockCpsModuleService.createSchemaSet(NCMP_DATASPACE_NAME, 'dmi-registry-2023-11-27', expectedYangResourceToContentMap)
72         and: 'the admin service is used to update the anchor'
73             1 * mockCpsAdminService.updateAnchorSchemaSet(NCMP_DATASPACE_NAME, NCMP_DMI_REGISTRY_ANCHOR, 'dmi-registry-2023-11-27')
74         and: 'No schema sets are being removed by the module service (yet)'
75             0 * mockCpsModuleService.deleteSchemaSet(NCMP_DATASPACE_NAME, _, _)
76     }
77
78 }