Configure Hazelcast to have 1 backup to reduce memory
[cps.git] / cps-service / src / test / groovy / org / onap / cps / cache / AnchorDataCacheConfigSpec.groovy
1 /*
2  *  ============LICENSE_START=======================================================
3  *  Copyright (C) 2022-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.cache
22
23 import com.hazelcast.config.Config
24 import com.hazelcast.core.Hazelcast
25 import com.hazelcast.map.IMap
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
31 @SpringBootTest
32 @ContextConfiguration(classes = [AnchorDataCacheConfig])
33 class AnchorDataCacheConfigSpec extends Specification {
34
35     @Autowired
36     private IMap<String, AnchorDataCacheEntry> anchorDataCache
37
38     def 'Embedded (hazelcast) cache for Anchor Data.'() {
39         expect: 'system is able to create an instance of the Anchor data cache'
40             assert null != anchorDataCache
41         and: 'there is at least 1 instance'
42             assert Hazelcast.allHazelcastInstances.size() > 0
43         and: 'anchorDataCache is present'
44             assert Hazelcast.allHazelcastInstances.name.contains('hazelCastInstanceCpsCore')
45     }
46
47     def 'Verify configs for Distributed Caches'(){
48         given: 'the Anchor Data Cache config'
49             def anchorDataCacheConfig =  Hazelcast.getHazelcastInstanceByName('hazelCastInstanceCpsCore').config
50             def anchorDataCacheMapConfig =  anchorDataCacheConfig.mapConfigs.get('anchorDataCacheMapConfig')
51         expect: 'system created instance with correct config'
52             assert anchorDataCacheConfig.clusterName == 'cps-and-ncmp-test-caches'
53             assert anchorDataCacheMapConfig.backupCount == 1
54             assert anchorDataCacheMapConfig.asyncBackupCount == 0
55     }
56
57     def 'Verify deployment network configs for Distributed Caches'() {
58         given: 'the Anchor Data Cache config'
59             def anchorDataCacheNetworkConfig = Hazelcast.getHazelcastInstanceByName('hazelCastInstanceCpsCore').config.networkConfig
60         expect: 'system created instance with correct config'
61             assert anchorDataCacheNetworkConfig.join.autoDetectionConfig.enabled
62             assert !anchorDataCacheNetworkConfig.join.kubernetesConfig.enabled
63     }
64
65     def 'Verify network config'() {
66         given: 'Synchronization config object and test configuration'
67             def objectUnderTest = new AnchorDataCacheConfig()
68             def testConfig = new Config()
69         when: 'kubernetes properties are enabled'
70             objectUnderTest.cacheKubernetesEnabled = true
71             objectUnderTest.cacheKubernetesServiceName = 'test-service-name'
72         and: 'method called to update the discovery mode'
73             objectUnderTest.updateDiscoveryMode(testConfig)
74         then: 'applied properties are reflected'
75             assert testConfig.networkConfig.join.kubernetesConfig.enabled
76             assert testConfig.networkConfig.join.kubernetesConfig.properties.get('service-name') == 'test-service-name'
77
78     }
79
80 }