Robustness cleaning of in progress cache
[cps.git] / cps-ncmp-service / src / test / groovy / org / onap / cps / ncmp / api / impl / config / embeddedcache / SynchronizationCacheConfigSpec.groovy
1 /*
2  * ============LICENSE_START========================================================
3  *  Copyright (C) 2022 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.api.impl.config.embeddedcache
22
23 import com.hazelcast.core.Hazelcast
24 import com.hazelcast.map.IMap
25 import org.onap.cps.spi.model.DataNode
26 import org.springframework.beans.factory.annotation.Autowired
27 import org.springframework.boot.test.context.SpringBootTest
28 import org.springframework.test.context.ContextConfiguration
29 import spock.lang.Specification
30 import java.util.concurrent.BlockingQueue
31
32 @SpringBootTest
33 @ContextConfiguration(classes = [SynchronizationCacheConfig])
34 class SynchronizationCacheConfigSpec extends Specification {
35
36     @Autowired
37     private BlockingQueue<DataNode> moduleSyncWorkQueue
38
39     @Autowired
40     private IMap<String, Object> moduleSyncStartedOnCmHandles
41
42     @Autowired
43     private Map<String, Boolean> dataSyncSemaphores
44
45     def 'Embedded (hazelcast) Caches for Module and Data Sync.'() {
46         expect: 'system is able to create an instance of the Module Sync Work Queue'
47             assert null != moduleSyncWorkQueue
48         and: 'system is able to create an instance of a map to hold cm handles which have started (and maybe finished) module sync'
49             assert null != moduleSyncStartedOnCmHandles
50         and: 'system is able to create an instance of a map to hold data sync semaphores'
51             assert null != dataSyncSemaphores
52         and: 'there 3 instances'
53             assert Hazelcast.allHazelcastInstances.size() == 3
54         and: 'they have the correct names (in any order)'
55             assert Hazelcast.allHazelcastInstances.name.containsAll('moduleSyncWorkQueue', 'moduleSyncStartedOnCmHandles', 'dataSyncSemaphores' )
56     }
57 }