DMAAP-MR - Merge MR repos
[dmaap/messagerouter/messageservice.git] / src / test / java / org / onap / dmaap / mr / cambria / utils / DMaaPCuratorFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21  package org.onap.dmaap.mr.cambria.utils;
22
23 import static org.junit.Assert.*;
24
25 import java.io.File;
26 import java.util.Map;
27
28 import org.apache.curator.framework.CuratorFramework;
29 import org.junit.After;
30 import org.junit.Before;
31 import org.junit.Test;
32
33 import com.att.ajsc.filemonitor.AJSCPropertiesMap;
34 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
35 import org.onap.dmaap.dmf.mr.utils.DMaaPCuratorFactory;
36 import org.onap.dmaap.dmf.mr.utils.PropertyReader;
37 import com.att.nsa.drumlin.till.nv.rrNvReadable.loadException;
38
39 public class DMaaPCuratorFactoryTest {
40
41         @Before
42         public void setUp() throws Exception {
43                 ClassLoader classLoader = getClass().getClassLoader();          
44                 AJSCPropertiesMap.refresh(new File(classLoader.getResource(CambriaConstants.msgRtr_prop).getFile()));
45                 
46         }
47
48         @After
49         public void tearDown() throws Exception {
50         }
51
52         @Test
53         public void testgetCurator() throws loadException {
54                 CuratorFramework curatorFramework = DMaaPCuratorFactory.getCurator(new PropertyReader());
55                 assertNotNull(curatorFramework);
56                 
57                 Map<String, String> map = AJSCPropertiesMap.getProperties(CambriaConstants.msgRtr_prop);
58                 map.remove(CambriaConstants.kSetting_ZkConfigDbServers);
59                 map.remove(CambriaConstants.kSetting_ZkSessionTimeoutMs);
60                 
61                 
62                 
63                 curatorFramework = DMaaPCuratorFactory.getCurator(new PropertyReader());
64                 assertNotNull(curatorFramework);
65         }
66
67 }