0fed60d53caf20839ef74f4ae05acf739e855df0
[vfc/nfvo/driver/vnfm/gvnfm.git] / juju / juju-vnfmadapter / Juju-vnfmadapterService / service / src / test / java / org / openo / nfvo / jujuvnfmadapter / common / EntityUtilsTest.java
1 /*
2  * Copyright 2016 Huawei 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.openo.nfvo.jujuvnfmadapter.common;
17
18 import static org.junit.Assert.*;
19
20 import java.lang.reflect.Constructor;
21 import java.lang.reflect.Modifier;
22 import java.util.ArrayList;
23 import java.util.HashMap;
24 import java.util.List;
25 import org.junit.Test;
26 import org.openo.nfvo.jujuvnfmadapter.common.EntityUtils.ExeRes;
27
28 import net.sf.json.JSONObject;
29
30 public class EntityUtilsTest {
31
32     @Test
33     public void formatCommandTest(){
34         List<String> command = new ArrayList<>();
35         command.add("test");
36         String result =  EntityUtils.formatCommand(command);
37         assertTrue(result.contains("test"));
38     }
39     @Test
40     public void formatCommandTestNull(){
41         List<String> command = null;
42         String result =  EntityUtils.formatCommand(command);
43         assertTrue(result.equals(""));
44     }
45     @Test
46     public void executeTest(){
47         ExeRes res = EntityUtils.execute("test", "test","test2");
48         assertNotNull(res);
49     }
50     @Test(expected = Exception.class)
51     public void toEntity() throws Exception{
52         JSONObject jsonObject = new JSONObject();
53         HashMap map = EntityUtils.toEntity(jsonObject, HashMap.class);
54     }
55     @Test
56     public void testPrivateConstructor() throws Exception {
57         Constructor constructor = EntityUtils.class.getDeclaredConstructor();
58         assertTrue("Constructor private", Modifier.isPrivate(constructor.getModifiers()));
59
60         constructor.setAccessible(true);
61         constructor.newInstance();
62     }
63 }