summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dmaap/mr/test/dme2/DME2TopicTest.java
blob: ec03d26e5370cc53c02575ff347874845d205ea4 (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
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
/*******************************************************************************
 *  ============LICENSE_START=======================================================
 *  org.onap.dmaap
 *  ================================================================================
 *  Copyright © 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=========================================================
 *
 *  ECOMP is a trademark and service mark of AT&T Intellectual Property.
 *
 *******************************************************************************/
package org.onap.dmaap.mr.test.dme2;

import com.att.aft.dme2.api.DME2Client;
import com.att.aft.dme2.api.DME2Exception;
import com.att.aft.dme2.internal.jackson.map.ObjectMapper;
import java.net.URI;
import java.net.URISyntaxException;
import java.util.HashMap;
import java.util.Properties;
import junit.framework.TestCase;
import org.apache.logging.log4j.LogManager;
import org.apache.logging.log4j.Logger;

public class DME2TopicTest extends TestCase {

    private String latitude;
    private String longitude;
    private String version;
    private String serviceName;
    private String env;
    private String partner;
    private String protocol;
    private String methodTypeGet;
    private String methodTypePost;
    private String methodTypeDelete;
    private String methodTypePut;

    private String user;
    private String password;
    private String contenttype;
    private String subContextPathGetAllTopic;
    private String subContextPathGetOneTopic;
    private String SubContextPathCreateTopic;
    private String SubContextPathGetPublisherl;
    private String SubContextPathGetPublisher;
    private String SubContextPathGetPermitPublisher;
    private String SubContextPathGetConsumer;
    private String SubContextPathGetPermitConsumer;
    private static final Logger LOGGER = LogManager.getLogger(DME2TopicTest.class);

    public void createTopic(String url, Properties props, HashMap<String, String> mapData) {
        LOGGER.info("create topic method starts");
        if (!topicExist(url, props, mapData)) {
            LOGGER.info("creating a new topic");
            try {
                DME2Client sender = new DME2Client(new URI(url), 5000L);
                sender.setAllowAllHttpReturnCodes(true);
                sender.setMethod(props.getProperty("MethodTypePost"));
                sender.setSubContext(props.getProperty("SubContextPathCreateTopic"));
                TopicBeanDME2 topicBean = new TopicBeanDME2(props.getProperty("newTopic"),
                    props.getProperty("topicDescription"),
                    Integer.parseInt(props.getProperty("partition")),
                    Integer.parseInt(props.getProperty("replication")), Boolean.valueOf(props
                    .getProperty("txenabled")));
                String jsonStringApiBean = new ObjectMapper().writeValueAsString(topicBean);
                sender.setPayload(jsonStringApiBean);
                sender.addHeader("content-type", props.getProperty("contenttype"));
                sender.setCredentials(props.getProperty("user"), props.getProperty("password"));
                LOGGER.info("creating Topic");
                String reply = sender.sendAndWait(5000L);
                assertTrue(LoadPropertyFile.isValidJsonString(reply));
                LOGGER.info("response =" + reply);
            } catch (DME2Exception e) {
                e.printStackTrace();
            } catch (URISyntaxException e) {
                e.printStackTrace();
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }

    public boolean topicExist(String url, Properties props, HashMap<String, String> mapData) {
        boolean topicExist = false;
        try {
            LOGGER.info("Checking topic exists or not");
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(props.getProperty("MethodTypeGet"));
            String subcontextPath =
                props.getProperty("subContextPathGetOneTopic") + props.getProperty("newTopic");
            sender.setSubContext(subcontextPath);
            sender.setPayload("");
            sender.addHeader("content-type", props.getProperty("contenttype"));
            sender.setCredentials(props.getProperty("user"), props.getProperty("password"));
            String reply = sender.sendAndWait(5000L);
            topicExist = LoadPropertyFile.isValidJsonString(reply);
            LOGGER.info("Topic exist =" + topicExist);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return topicExist;
    }

    public void testAllTopics() {
        LOGGER.info("Test case get all topics initiated");
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        subContextPathGetAllTopic = props.getProperty("subContextPathGetAllTopic");
        protocol = props.getProperty("Protocol");
        methodTypeGet = props.getProperty("MethodTypeGet");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttype");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude); // } else {
        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        try {
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(methodTypeGet);
            sender.setSubContext(subContextPathGetAllTopic);
            sender.setPayload("");

            sender.addHeader("Content-Type", contenttype);
            sender.setCredentials(user, password);
            sender.setHeaders(hm);

            LOGGER.info("Retrieving all topics");
            String reply = sender.sendAndWait(5000L);
            assertTrue(LoadPropertyFile.isValidJsonString(reply));
            LOGGER.info("All Topics details = " + reply);

        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testOneTopic() {
        LOGGER.info("Test case get one topic initiated");
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        subContextPathGetOneTopic = props.getProperty("subContextPathGetOneTopic");
        protocol = props.getProperty("Protocol");
        methodTypeGet = props.getProperty("MethodTypeGet");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttype");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude);

        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        System.out.println("Retrieving topic detail");
        if (!topicExist(url, props, hm)) {
            createTopic(url, props, hm);
        } else {
            assertTrue(true);
        }
    }

    public void createTopicForDeletion(String url, Properties props,
        HashMap<String, String> mapData) {
        LOGGER.info("create topic method starts");
        LOGGER.info("creating a new topic for deletion");
        try {
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(props.getProperty("MethodTypePost"));
            sender.setSubContext(props.getProperty("SubContextPathCreateTopic"));
            TopicBeanDME2 topicBean = new TopicBeanDME2(props.getProperty("deleteTopic"),
                props.getProperty("topicDescription"),
                Integer.parseInt(props.getProperty("partition")),
                Integer.parseInt(props.getProperty("replication")),
                Boolean.valueOf(props.getProperty("txenabled")));
            String jsonStringApiBean = new ObjectMapper().writeValueAsString(topicBean);
            sender.setPayload(jsonStringApiBean);
            sender.addHeader("content-type", props.getProperty("contenttype"));
            sender.setCredentials(props.getProperty("user"), props.getProperty("password"));

            LOGGER.info("creating Topic");
            String reply = sender.sendAndWait(5000L);
            assertTrue(LoadPropertyFile.isValidJsonString(reply));
            LOGGER.info("response =" + reply);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public boolean topicExistForDeletion(String url, Properties props,
        HashMap<String, String> mapData) {
        boolean topicExist = false;
        try {
            LOGGER.info("Checking topic exists for deletion");
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(props.getProperty("MethodTypeGet"));
            String subcontextPath =
                props.getProperty("subContextPathGetOneTopic") + props.getProperty("deleteTopic");
            sender.setSubContext(subcontextPath);
            sender.setPayload("");
            sender.addHeader("content-type", props.getProperty("contenttype"));
            sender.setCredentials(props.getProperty("user"), props.getProperty("password"));
            String reply = sender.sendAndWait(5000L);
            topicExist = LoadPropertyFile.isValidJsonString(reply);
            LOGGER.info("Topic exist for deletion=" + topicExist);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
        return topicExist;
    }

    public void testDeleteTopic() {
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        SubContextPathCreateTopic = props.getProperty("SubContextPathCreateTopic");
        protocol = props.getProperty("Protocol");
        methodTypePost = props.getProperty("MethodTypeDelete");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttypejson");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude);
        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        System.out.println("deleteing topic");
        if (!topicExistForDeletion(url, props, hm)) {
            createTopicForDeletion(url, props, hm);
            deleteTopic(url, props, hm);
        } else {
            deleteTopic(url, props, hm);
        }
    }

    public void deleteTopic(String url, Properties props, HashMap<String, String> mapData) {
        try {
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(props.getProperty("MethodTypeDelete"));
            String subsontextPathDelete = props.getProperty("subContextPathGetOneTopic")
                + props.getProperty("deleteTopic");
            sender.setSubContext(subsontextPathDelete);
            sender.setPayload("");
            sender.addHeader("content-type", props.getProperty("contenttype"));
            sender.setCredentials(props.getProperty("user"), props.getProperty("password"));
            System.out.println("Deleting Topic " + props.getProperty("deleteTopic"));
            String reply = sender.sendAndWait(5000L);
            assertNotNull(reply);
            System.out.println("response =" + reply);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testGetProducersTopics() {
        LOGGER.info("Test case get list of producers on topic");
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        SubContextPathGetPublisher = props.getProperty("SubContextPathGetPublisher");
        protocol = props.getProperty("Protocol");
        methodTypeGet = props.getProperty("MethodTypeGet");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttype");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude);

        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        try {
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(methodTypeGet);
            sender.setSubContext(SubContextPathGetPublisher);
            sender.setPayload("");

            sender.addHeader("Content-Type", contenttype);
            sender.setCredentials(user, password);
            sender.setHeaders(hm);

            LOGGER.info("Retrieving List of publishers");
            String reply = sender.sendAndWait(5000L);
            assertTrue(LoadPropertyFile.isValidJsonString(reply));
            LOGGER.info("All Publishers details = " + reply);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testGetConsumersTopics() {
        LOGGER.info("Test case get list of consumers on topic ");
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        SubContextPathGetConsumer = props.getProperty("SubContextPathGetConsumer");
        protocol = props.getProperty("Protocol");
        methodTypeGet = props.getProperty("MethodTypeGet");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttype");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude);

        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        try {
            DME2Client sender = new DME2Client(new URI(url), 5000L);
            sender.setAllowAllHttpReturnCodes(true);
            sender.setMethod(methodTypeGet);
            sender.setSubContext(SubContextPathGetConsumer);
            sender.setPayload("");

            sender.addHeader("Content-Type", contenttype);
            sender.setCredentials(user, password);
            sender.setHeaders(hm);

            LOGGER.info("Retrieving consumer details on topics");
            String reply = sender.sendAndWait(5000L);
            assertTrue(LoadPropertyFile.isValidJsonString(reply));
            System.out.println("Reply from server = " + reply);
        } catch (DME2Exception e) {
            e.printStackTrace();
        } catch (URISyntaxException e) {
            e.printStackTrace();
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    public void testCreateTopic() {
        LOGGER.info("Test case create topic starts");
        Properties props = LoadPropertyFile.getPropertyFileDataProducer();
        latitude = props.getProperty("Latitude");
        longitude = props.getProperty("Longitude");
        version = props.getProperty("Version");
        serviceName = props.getProperty("ServiceName");
        env = props.getProperty("Environment");
        partner = props.getProperty("Partner");
        SubContextPathCreateTopic = props.getProperty("SubContextPathCreateTopic");
        protocol = props.getProperty("Protocol");
        methodTypePost = props.getProperty("MethodTypePost");
        user = props.getProperty("user");
        password = props.getProperty("password");
        contenttype = props.getProperty("contenttypejson");
        String url =
            protocol + "://DME2SEARCH/" + "service=" + serviceName + "/" + "version=" + version
                + "/"
                + "envContext=" + env + "/" + "partner=" + partner;
        LoadPropertyFile.loadAFTProperties(latitude, longitude);
        HashMap<String, String> hm = new HashMap<String, String>();
        hm.put("AFT_DME2_EP_READ_TIMEOUT_MS", "50000");
        hm.put("AFT_DME2_ROUNDTRIP_TIMEOUT_MS", "240000");
        hm.put("AFT_DME2_EP_CONN_TIMEOUT", "5000");
        createTopic(url, props, hm);
    }
}