eccbb8d74e19696d27e4c738f650c41eaf98e5b8
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / common / restclient / TestRestfulFactory.java
1 /*
2  * Copyright 2017 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
17 package org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.restclient;
18
19 import static org.junit.Assert.assertNotNull;
20
21 import org.junit.After;
22 import org.junit.AfterClass;
23 import org.junit.Before;
24 import org.junit.BeforeClass;
25 import org.junit.Test;
26 import org.junit.runner.RunWith;
27
28 import mockit.Mock;
29 import mockit.MockUp;
30 import mockit.integration.junit4.JMockit;
31
32 /**
33  * <br/>
34  * <p>
35  * </p>
36  * 
37  * @author
38  * @version
39  */
40 @RunWith(JMockit.class)
41 public class TestRestfulFactory {
42
43     /**
44      * <br/>
45      * 
46      * @throws java.lang.Exception
47      * @since
48      */
49     @BeforeClass
50     public static void setUpBeforeClass() throws Exception {
51     }
52
53     /**
54      * <br/>
55      * 
56      * @throws java.lang.Exception
57      * @since
58      */
59     @AfterClass
60     public static void tearDownAfterClass() throws Exception {
61     }
62
63     /**
64      * <br/>
65      * 
66      * @throws java.lang.Exception
67      * @since
68      */
69     @Before
70     public void setUp() throws Exception {
71     }
72
73     /**
74      * <br/>
75      * 
76      * @throws java.lang.Exception
77      * @since
78      */
79     @After
80     public void tearDown() throws Exception {
81     }
82
83     /**
84      * <br/>
85      * 
86      * @since
87      */
88     @Test
89     public void testGetRestInstance() {
90         Restful instance = RestfulFactory.getRestInstance("https");
91
92         new MockUp<HttpRest>() {
93
94             @Mock
95             public void initHttpRest(final RestfulOptions option) throws ServiceException {
96                 throw new ServiceException();
97             }
98
99         };
100         instance = RestfulFactory.getRestInstance("http");
101         assertNotNull(instance);
102
103         instance = RestfulFactory.getRestInstance("http");
104         assertNotNull(instance);
105     }
106 }