f0246d6f34956ddda2dc6187157396f6ce89e270
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / service / src / test / java / org / onap / vfc / nfvo / vnfm / svnfm / vnfmadapter / service / csm / connect / SslCertificateSocketTest.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.service.csm.connect;
18
19 import java.io.IOException;
20
21 import org.apache.commons.httpclient.params.HttpConnectionParams;
22 import org.junit.Test;
23 import org.onap.vfc.nfvo.vnfm.svnfm.vnfmadapter.common.VnfmException;
24
25 /**
26  * Created by QuanZhong on 2017/3/20.
27  */
28 public class SslCertificateSocketTest {
29
30     @Test
31     public void initTest() {
32         SslCertificateSocket socket = new SslCertificateSocket();
33         try {
34             socket.init();
35         } catch(VnfmException e) {
36             e.printStackTrace();
37         }
38     }
39
40     @Test
41     public void createSocketTest2() {
42         SslCertificateSocket socket = new SslCertificateSocket();
43         try {
44             socket.createSocket("http://127.0.0.1", 1234, null, 4321, null);
45         } catch(IOException e) {
46             e.printStackTrace();
47         }
48     }
49
50     @Test
51     public void createSocketTest4() {
52         SslCertificateSocket socket = new SslCertificateSocket();
53         try {
54             HttpConnectionParams params = new HttpConnectionParams();
55             params.setConnectionTimeout(3000);
56             socket.createSocket("http://127.0.0.1", 1234, null, 4321, params);
57         } catch(IOException e) {
58             e.printStackTrace();
59         }
60     }
61
62
63     @Test
64     public void createSocketTest6() {
65         SslCertificateSocket socket = new SslCertificateSocket();
66         try {
67             HttpConnectionParams params = new HttpConnectionParams();
68             params.setConnectionTimeout(3000);
69             socket.createSocket("http://127.0.0.1", 1234);
70         } catch(IOException e) {
71             e.printStackTrace();
72         }
73     }
74 }