summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/resources/DriverResourceTest.java
blob: 4033d46f36cba024be1ae96bdcd0410f48f52e8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
/**
 * Copyright 2018 ZTE Corporation.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package org.onap.sfc.resources;

import org.junit.Test;
import org.onap.sfc.entity.DelReqInfo;
import org.onap.sfc.entity.FlowClassfierReq4N;
import org.onap.sfc.entity.PortChainReq4N;
import org.onap.sfc.entity.PortPairGroupReq4N;
import org.onap.sfc.entity.portpair.PortPairReq4N;

import javax.ws.rs.ProcessingException;

public class DriverResourceTest {
    public static final String URL = "http://0.0.0.0:8080";
    private DriverResource driverResource = new DriverResource();

    @Test
    public void createPortPair() throws Exception {
        try {
            PortPairReq4N portPairReq4N = new PortPairReq4N();
            portPairReq4N.setUrl(URL);
            driverResource.createPortPair(portPairReq4N);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void createPortPairGroup() throws Exception {
        try {
            PortPairGroupReq4N portPairGroupReq4N = new PortPairGroupReq4N();
            portPairGroupReq4N.setUrl(URL);
            driverResource.createPortPairGroup(portPairGroupReq4N);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void createFlowClassfier() throws Exception {
        try {
            FlowClassfierReq4N flowClassfierReq4N = new FlowClassfierReq4N();
            flowClassfierReq4N.setUrl(URL);
            driverResource.createFlowClassfier(flowClassfierReq4N);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void creatPortChain() throws Exception {
        try {
            PortChainReq4N portChainReq4N = new PortChainReq4N();
            portChainReq4N.setUrl(URL);
            driverResource.creatPortChain(portChainReq4N);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void delPortPair() throws Exception {
        try {
            DelReqInfo delReqInfo = new DelReqInfo();
            delReqInfo.setUrl(URL);
            delReqInfo.setId("123-456-789");
            driverResource.delPortPair(delReqInfo);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void delPortPairGroup() throws Exception {
        try {
            DelReqInfo delReqInfo = new DelReqInfo();
            delReqInfo.setUrl(URL);
            delReqInfo.setId("123-456-789");
            driverResource.delPortPairGroup(delReqInfo);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void delFlowClassfier() throws Exception {
        try {
            DelReqInfo delReqInfo = new DelReqInfo();
            delReqInfo.setUrl(URL);
            delReqInfo.setId("123-456-789");
            driverResource.delFlowClassfier(delReqInfo);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

    @Test
    public void delPortChain() throws Exception {
        try {
            DelReqInfo delReqInfo = new DelReqInfo();
            delReqInfo.setUrl(URL);
            delReqInfo.setId("123-456-789");
            driverResource.delPortChain(delReqInfo);
        } catch (ProcessingException ex) {
            String message = ex.getMessage();
            assert message.contains(" Connection refused");
        }
    }

}