Remove 32K limit from queries with collection parameters
[cps.git] / cps-service / src / test / groovy / org / onap / cps / cache / AnchorDataCacheConfigSpec.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.cache
22 import com.hazelcast.core.Hazelcast
23 import com.hazelcast.map.IMap
24 import org.springframework.beans.factory.annotation.Autowired
25 import org.springframework.boot.test.context.SpringBootTest
26 import org.springframework.test.context.ContextConfiguration
27 import spock.lang.Specification
28
29 @SpringBootTest
30 @ContextConfiguration(classes = [AnchorDataCacheConfig])
31 class AnchorDataCacheConfigSpec extends Specification {
32
33     @Autowired
34     private IMap<String, AnchorDataCacheEntry> anchorDataCache
35
36     def 'Embedded (hazelcast) cache for Anchor Data.'() {
37         expect: 'system is able to create an instance of the Anchor data cache'
38             assert null != anchorDataCache
39         and: 'there is at least 1 instance'
40             assert Hazelcast.allHazelcastInstances.size() > 0
41         and: 'anchorDataCache is present'
42             assert Hazelcast.allHazelcastInstances.name.contains('hazelCastInstanceCpsCore')
43     }
44
45     def 'Verify configs for Distributed Caches'(){
46         given: 'the Anchor Data Cache config'
47             def anchorDataCacheConfig =  Hazelcast.getHazelcastInstanceByName('hazelCastInstanceCpsCore').config.mapConfigs.get('anchorDataCacheMapConfig')
48         expect: 'system created instance with correct config'
49             assert anchorDataCacheConfig.backupCount == 3
50             assert anchorDataCacheConfig.asyncBackupCount == 3
51     }
52 }