aboutsummaryrefslogtreecommitdiffstats
path: root/generic-resource-api/provider/src/test/java/org/onap/sdnc/northbound/util/GenericResourceApiSvcLogicServiceClientMockUtil.java
blob: 51eaa1fd0bb5fe187f19982490b192ee89fb0a92 (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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
/*-
 * ============LICENSE_START=======================================================
 * openECOMP : SDN-C
 * ================================================================================
 * Copyright (C) 2017 AT&T Intellectual Property. All rights
 *                             reserved.
 * ================================================================================
 * 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.
 * ============LICENSE_END=========================================================
 */

package org.onap.sdnc.northbound.util;

import static org.mockito.Mockito.eq;
import static org.mockito.Mockito.isA;
import static org.mockito.Mockito.when;
import static org.onap.sdnc.northbound.util.PropBuilder.propBuilder;

import java.util.Properties;
import org.onap.sdnc.northbound.GenericResourceApiSvcLogicServiceClient;
import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.preload.data.PreloadDataBuilder;
import org.opendaylight.yang.gen.v1.org.onap.sdnc.northbound.generic.resource.rev170824.service.data.ServiceDataBuilder;


/**
 * GenericResourceApiSvcLogicServiceClientMockUtil provides a set of util methods for quickly configuring method
 * behaviour on the Mock GenericResourceApiSvcLogicServiceClient
 */
public class GenericResourceApiSvcLogicServiceClientMockUtil {


    private final String MODULE = "generic-resource-api";
    private final String MODE = "sync";
    private final String VERSION = null;
    private String scvOperation = null;

    public final String errorCode = "error-code";
    public final String errorMessage = "error-message";
    public final String ackFinal = "ack-final";
    public final String serviceObjectPath = "service-object-path";
    public final String networkObjectPath = "network-object-path";
    public final String pnfObjectPath = "pnf-object-path";
    public final String vnfObjectPath = "vnf-object-path";
    public final String vfModuleObjectPath = "vf-module-object-path";
    public final String networkId = "networkId";

    private final GenericResourceApiSvcLogicServiceClient mockGenericResourceApiSvcLogicServiceClient;

    public GenericResourceApiSvcLogicServiceClientMockUtil(
        GenericResourceApiSvcLogicServiceClient mockGenericResourceApiSvcLogicServiceClient) {
        this.mockGenericResourceApiSvcLogicServiceClient = mockGenericResourceApiSvcLogicServiceClient;
    }


    /**
     * @param scvOperation -  The scvOperation parameter to use on the {@link GenericResourceApiSvcLogicServiceClient}
     * methods
     */
    public void setScvOperation(String scvOperation) {
        this.scvOperation = scvOperation;
    }

    /**
     * Configure {@link GenericResourceApiSvcLogicServiceClient#hasGraph(String, String, String, String)} to return the
     * specified value when when invoked with the parameters {@link #MODULE}, {@link #MODE}, {@link #VERSION} and {@link
     * #scvOperation}
     */
    public void mockHasGraph(Boolean isHasGraph) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .hasGraph(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE))
        ).thenReturn(isHasGraph);
    }


    /**
     * @return PropBuilder - A PropBuilder populated with the expected properties returned from {@link
     * GenericResourceApiSvcLogicServiceClient#execute(String, String, String, String, ServiceDataBuilder, Properties)}
     */
    public PropBuilder createExecuteOKResult() {
        return propBuilder()
            .set(errorCode, "200")
            .set(errorMessage, "OK")
            .set(ackFinal, "Y")
            .set(serviceObjectPath, "serviceObjectPath: XYZ")
            .set(networkObjectPath, "networkObjectPath: XYZ")
            .set(pnfObjectPath,  "pnfObjectPath: XYZ")
            .set(vnfObjectPath,  "vnfObjectPath: XYZ")
            .set(vfModuleObjectPath,  "vfModuleObjectPath: XYZ")
            .set(networkId, "networkId: XYZ");
    }


    /**
     * Configure {@link GenericResourceApiSvcLogicServiceClient#execute(String, String, String, String,
     * ServiceDataBuilder, Properties)} to return the specified svcResultProp when when invoked with the parameters
     * {@link #MODULE}, {@link #MODE}, {@link #VERSION} and {@link #scvOperation}
     */
    public void mockExecute(PropBuilder svcResultProp) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .execute(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE),
                    isA(ServiceDataBuilder.class),
                    isA(Properties.class))
        ).thenReturn(svcResultProp.build());
    }

    public void mockExecute(RuntimeException exception) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .execute(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE),
                    isA(ServiceDataBuilder.class),
                    isA(Properties.class)
                )
        ).thenThrow(exception);
    }


    public void mockExecuteWoServiceData(PropBuilder svcResultProp) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .execute(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE),
                    isA(Properties.class))
        ).thenReturn(svcResultProp.build());
    }

    public void mockExecuteWoServiceData(RuntimeException exception) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .execute(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE),
                    isA(Properties.class)
                )
        ).thenThrow(exception);
    }

    public void mockExecuteWoServiceDataPreload(RuntimeException exception) throws Exception {
        when(
            mockGenericResourceApiSvcLogicServiceClient
                .execute(
                    eq(MODULE),
                    eq(scvOperation),
                    eq(VERSION),
                    eq(MODE),
                    isA(PreloadDataBuilder.class),
                    isA(Properties.class)
                )
        ).thenThrow(exception);
    }


}