Modify emsdriver Code
[vfc/nfvo/driver/ems.git] / ems / boco / src / test / java / org / onap / vfc / nfvo / emsdriver / configmgr / ConfigurationManagerTest.java
1 /**
2  * Copyright 2017 BOCO Corporation.  CMCC Technologies Co., Ltd
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 package org.onap.vfc.nfvo.emsdriver.configmgr;
17
18 import static org.junit.Assert.assertNotNull;
19 import static org.junit.Assert.assertTrue;
20
21 import java.io.IOException;
22 import java.util.List;
23 import java.util.Map;
24 import java.util.Properties;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.vfc.nfvo.emsdriver.commons.model.CrontabVo;
29 import org.onap.vfc.nfvo.emsdriver.commons.model.EMSInfo;
30 import org.onap.vfc.nfvo.emsdriver.configmgr.ConfigurationManager;
31
32 public class ConfigurationManagerTest {
33
34         private ConfigurationManager configurationManager;
35         @Before
36     public void setUp() throws IOException {
37                 configurationManager = new ConfigurationManager();
38                 configurationManager.readcfg();
39     }
40         
41         @Test
42         public void getAllEMSInfos() {
43                 
44                 List<EMSInfo> list = ConfigurationManager.getAllEMSInfos();
45                 
46                 assertTrue(list.size() >0);
47         }
48         
49         @Test
50         public void getEMSInfoByName() {
51                 
52                 EMSInfo eMSInfo = ConfigurationManager.getEMSInfoByName("1234");
53                 
54                 assertNotNull(eMSInfo);
55         }
56         
57         @Test
58         public void getProperties() {
59                 
60                 Properties properties = ConfigurationManager.getProperties();
61                 
62                 assertNotNull(properties);
63         }
64         
65         @Test
66         public void readCorntab() {
67                 
68                 Map<String, CrontabVo> list = configurationManager.readCorntab();
69                 System.out.println(list);
70                 assertTrue(list.size() >0);
71         }
72         
73 }