Change: add OPEN-O seed code for VF-C
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / openo / nfvo / vnfmadapter / service / process / RegisterMgrTest.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.openo.nfvo.vnfmadapter.service.process;
18
19 import org.junit.Test;
20 import org.openo.baseservice.roa.util.restclient.RestfulResponse;
21 import org.openo.nfvo.vnfmadapter.common.servicetoken.VnfmRestfulUtil;
22
23 import mockit.Mock;
24 import mockit.MockUp;
25
26 /**
27  * <br>
28  * <p>
29  * </p>
30  * 
31  * @author
32  * @version NFVO 0.5 Jan 13, 2017
33  */
34 public class RegisterMgrTest {
35
36     @Test
37     public void testRegister() {
38         new MockUp<VnfmRestfulUtil>() {
39
40             @Mock
41             public RestfulResponse getRemoteResponse(String url, String methodType, String params) {
42                 RestfulResponse rsp = new RestfulResponse();
43                 rsp.setStatus(200);
44                 return rsp;
45             }
46         };
47         RegisterMgr register = new RegisterMgr();
48         register.register();
49     }
50
51     @Test
52     public void testUnRegister() {
53         new MockUp<VnfmRestfulUtil>() {
54
55             @Mock
56             public RestfulResponse getRemoteResponse(String url, String methodType, String params) {
57                 RestfulResponse rsp = new RestfulResponse();
58                 rsp.setStatus(200);
59                 return rsp;
60             }
61         };
62         RegisterMgr register = new RegisterMgr();
63         register.unRegister();
64     }
65
66 }