CommonLibrary(util/rest-client) code upload.
[vfc/nfvo/wfengine.git] / rest-client / src / test / java / org / openo / baseservice / roa / util / restclient / TestRestfulFactory.java
1 /*
2  * Copyright (c) 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
17 package org.openo.baseservice.roa.util.restclient;
18
19 import static org.junit.Assert.assertNotNull;
20 import static org.junit.Assert.assertNull;
21
22 import org.openo.baseservice.remoteservice.exception.ServiceException;
23
24 import org.junit.After;
25 import org.junit.AfterClass;
26 import org.junit.Before;
27 import org.junit.BeforeClass;
28 import org.junit.Test;
29
30 import mockit.Mock;
31 import mockit.MockUp;
32
33 /**
34  * <br/>
35  * <p>
36  * </p>
37  * 
38  * @author
39  * @version SDNO 0.5 21-Jun-2016
40  */
41 public class TestRestfulFactory {
42
43     /**
44      * <br/>
45      * 
46      * @throws java.lang.Exception
47      * @since SDNO 0.5
48      */
49     @BeforeClass
50     public static void setUpBeforeClass() throws Exception {
51     }
52
53     /**
54      * <br/>
55      * 
56      * @throws java.lang.Exception
57      * @since SDNO 0.5
58      */
59     @AfterClass
60     public static void tearDownAfterClass() throws Exception {
61     }
62
63     /**
64      * <br/>
65      * 
66      * @throws java.lang.Exception
67      * @since SDNO 0.5
68      */
69     @Before
70     public void setUp() throws Exception {
71     }
72
73     /**
74      * <br/>
75      * 
76      * @throws java.lang.Exception
77      * @since SDNO 0.5
78      */
79     @After
80     public void tearDown() throws Exception {
81     }
82
83     /**
84      * <br/>
85      * 
86      * @since SDNO 0.5
87      */
88     @Test
89     public void testGetRestInstance() {
90         Restful instance = RestfulFactory.getRestInstance("https");
91         assertNull(instance);
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 }