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