summaryrefslogtreecommitdiffstats
path: root/appc-outbound/appc-network-inventory-client/provider/src/test/java/org/onap/appc/instar/interfaceImpl/TestInstarResponseHandlerImpl.java
blob: 693ff7755ebe4b70d00944d380a3fb79f346f520 (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
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
/*-
 * ============LICENSE_START=======================================================
 * ONAP : APPC
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
 * ================================================================================
 * Copyright (C) 2017 Amdocs
 * =============================================================================
 * 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.
 *
 * ECOMP is a trademark and service mark of AT&T Intellectual Property.
 * ============LICENSE_END=========================================================
 */

package org.onap.appc.instar.interfaceImpl;

import static org.junit.Assert.assertTrue;

import org.junit.Test;
import org.onap.appc.instar.utils.InstarClientConstant;
import org.onap.sdnc.config.params.data.ResponseKey;
import org.onap.ccsdk.sli.core.sli.SvcLogicContext;

public class TestInstarResponseHandlerImpl {

    @Test
    public void testProcessResponseForIpv4() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        SvcLogicContext svc = new SvcLogicContext();
        svc.setAttribute("vnf-name", "fqdn");
        resKey.setFieldKeyName("ipaddress-v4");
        String instarKey = "key";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v4IPAddress\":\"value2\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,svc);
        impl.processResponse(instarRes, instarKey);
    }

    @Test
    public void testProcessResponseForIpv6() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        SvcLogicContext svc = new SvcLogicContext();
        svc.setAttribute("vnf-name", "fqdn");
        resKey.setFieldKeyName("ipaddress-v6");
        String instarKey = "key";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v6IPAddress\":\"value2\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,svc);
        impl.processResponse(instarRes, instarKey);
    }

    @Test
    public void testProcessResponseInstarKeyValues() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        String json ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v4IPAddress\":\"value2\"}]}";
        SvcLogicContext svc = new SvcLogicContext();
        svc.setAttribute("vnf-name", "fqdn");
        svc.setAttribute("INSTAR-KEY-VALUES", json);
        resKey.setFieldKeyName("ipaddress-v6");
        String instarKey = "key";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v6IPAddress\":\"value2\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,svc);
        impl.processResponse(instarRes, instarKey);
    }

    @Test
    public void testV4SubNet() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        resKey.setFieldKeyName(InstarClientConstant.INSTAR_V4_SUBNET);
        String json ="{\"v4IpAddress\":\"ipAddressV4\"}]}";
        SvcLogicContext ctx = new SvcLogicContext();
        ctx.setAttribute("vnf-name", "fqdn");
        ctx.setAttribute("INSTAR-KEY-VALUES", json);
        String instarKey = "V4SubnetParameter";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v4Subnet\":\"subnetv4\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,ctx);
        impl.processResponse(instarRes, instarKey);
        String values = ctx.getAttribute("INSTAR-KEY-VALUES");
        assertTrue(values.contains("subnetv4"));
    }

    @Test
    public void testV6SubNet() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        resKey.setFieldKeyName(InstarClientConstant.INSTAR_V6_SUBNET);
        String json ="{\"v6IpAddress\":\"ipAddressV6\"}]}";
        SvcLogicContext ctx = new SvcLogicContext();
        ctx.setAttribute("vnf-name", "fqdn");
        ctx.setAttribute("INSTAR-KEY-VALUES", json);
        String instarKey = "V6SubnetParameter";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v6Subnet\":\"subnetv6\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,ctx);
        impl.processResponse(instarRes, instarKey);
        String values = ctx.getAttribute("INSTAR-KEY-VALUES");
        assertTrue(values.contains("subnetv6"));
    }

    @Test
    public void testV6DefaultGateway() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        resKey.setFieldKeyName(InstarClientConstant.INSTAR_V6_DEFAULT_GATEWAY);
        String json ="{\"v6IpAddress\":\"ipAddressV6\"}]}";
        SvcLogicContext ctx = new SvcLogicContext();
        ctx.setAttribute("vnf-name", "fqdn");
        ctx.setAttribute("INSTAR-KEY-VALUES", json);
        String instarKey = "V6DefaultGatewayParameter";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v6DefaultGateway\":\"defaultGatewayV6\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,ctx);
        impl.processResponse(instarRes, instarKey);
        String values = ctx.getAttribute("INSTAR-KEY-VALUES");
        assertTrue(values.contains("defaultGatewayV6"));
    }

    @Test
    public void testV4DefaultGateway() {
        ResponseKey resKey = new ResponseKey();
        resKey.setUniqueKeyValue("x");
        resKey.setFieldKeyName(InstarClientConstant.INSTAR_V4_DEFAULT_GATEWAY);
        String json ="{\"v4IpAddress\":\"ipAddressV4\"}]}";
        SvcLogicContext ctx = new SvcLogicContext();
        ctx.setAttribute("vnf-name", "fqdn");
        ctx.setAttribute("INSTAR-KEY-VALUES", json);
        String instarKey = "V4DefaultGatewayParameter";
        String instarRes ="{\"vnfConfigurationParameterDetails\":"
                + "[{\"fqdn\":\"fqdnx\",\"v4DefaultGateway\":\"defaultGatewayV4\"}]}";
        InstarResponseHandlerImpl impl = new InstarResponseHandlerImpl(resKey,ctx);
        impl.processResponse(instarRes, instarKey);
        String values = ctx.getAttribute("INSTAR-KEY-VALUES");
        assertTrue(values.contains("defaultGatewayV4"));
    }
}