bump the version
[dmaap/messagerouter/msgrtr.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.HashMap;
27 import java.util.Map;
28
29 import org.apache.curator.framework.CuratorFramework;
30 import org.junit.After;
31 import org.junit.Before;
32 import org.junit.Test;
33
34 import com.att.ajsc.filemonitor.AJSCPropertiesMap;
35 import org.onap.dmaap.dmf.mr.constants.CambriaConstants;
36 import org.onap.dmaap.dmf.mr.utils.DMaaPCuratorFactory;
37 import org.onap.dmaap.dmf.mr.utils.PropertyReader;
38 import com.att.nsa.drumlin.till.nv.rrNvReadable.loadException;
39 import com.att.nsa.drumlin.till.nv.impl.nvPropertiesFile;
40 import com.att.nsa.drumlin.till.nv.impl.nvReadableTable;
41
42 public class DMaaPCuratorFactoryTest {
43
44         @Before
45         public void setUp() throws Exception {
46                 ClassLoader classLoader = getClass().getClassLoader();          
47                 AJSCPropertiesMap.refresh(new File(classLoader.getResource(CambriaConstants.msgRtr_prop).getFile()));
48                 
49         }
50
51         @After
52         public void tearDown() throws Exception {
53         }
54
55         @Test
56         public void testgetCurator() throws loadException {
57                 CuratorFramework curatorFramework = DMaaPCuratorFactory.getCurator(new PropertyReader());
58                 assertNotNull(curatorFramework);
59                 
60                 Map<String, String> map = com.att.ajsc.filemonitor.AJSCPropertiesMap.getProperties(CambriaConstants.msgRtr_prop);
61                 map.remove(CambriaConstants.kSetting_ZkConfigDbServers);
62                 map.remove(CambriaConstants.kSetting_ZkSessionTimeoutMs);
63                 
64                 
65                 
66                 curatorFramework = DMaaPCuratorFactory.getCurator(new PropertyReader());
67                 assertNotNull(curatorFramework);
68         }
69
70 }