76b53455342a1e8fda9201fca580adca8e6539c0
[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.mapConfigs.get('anchorDataCacheMapConfig')
50         expect: 'system created instance with correct config'
51             assert anchorDataCacheConfig.backupCount == 3
52             assert anchorDataCacheConfig.asyncBackupCount == 3
53     }
54
55     def 'Verify deployment network configs for Distributed Caches'() {
56         given: 'the Anchor Data Cache config'
57             def anchorDataCacheNetworkConfig = Hazelcast.getHazelcastInstanceByName('hazelCastInstanceCpsCore').config.networkConfig
58         expect: 'system created instance with correct config'
59             assert anchorDataCacheNetworkConfig.join.autoDetectionConfig.enabled
60             assert !anchorDataCacheNetworkConfig.join.kubernetesConfig.enabled
61     }
62
63     def 'Verify network config'() {
64         given: 'Synchronization config object and test configuration'
65             def objectUnderTest = new AnchorDataCacheConfig()
66             def testConfig = new Config()
67         when: 'kubernetes properties are enabled'
68             objectUnderTest.cacheKubernetesEnabled = true
69             objectUnderTest.cacheKubernetesServiceName = 'test-service-name'
70         and: 'method called to update the discovery mode'
71             objectUnderTest.updateDiscoveryMode(testConfig)
72         then: 'applied properties are reflected'
73             assert testConfig.networkConfig.join.kubernetesConfig.enabled
74             assert testConfig.networkConfig.join.kubernetesConfig.properties.get('service-name') == 'test-service-name'
75
76     }
77
78 }