fixed some JUnits
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / dme / client / PreferredRouteReplyHandlerTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP Policy Engine
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.dmaap.mr.dme.client;
22
23 import java.util.HashMap;
24 import java.util.Map;
25
26 import org.junit.After;
27 import org.junit.Before;
28 import org.junit.Test;
29
30 import com.att.aft.dme2.api.util.DME2ExchangeResponseContext;
31 import static org.junit.Assert.assertNotNull;
32
33 public class PreferredRouteReplyHandlerTest {
34         private PreferredRouteReplyHandler handler = null;
35
36         @Before
37         public void setUp() throws Exception {
38                 handler = new PreferredRouteReplyHandler();
39
40         }
41
42         @After
43         public void tearDown() throws Exception {
44
45         }
46
47         @Test
48         public void testHandleReply() {
49                 
50                 Map <String, String> responseHeaders = new HashMap <String, String>();
51                 responseHeaders.put("transactionId", "1234");
52
53                 DME2ExchangeResponseContext responseData =  new DME2ExchangeResponseContext ("service", 
54                                 200, new HashMap<String, String>(), responseHeaders, "routeOffer", "1.0.0", "http://");
55
56                 handler.handleReply(responseData);
57                 assert(true);
58                 assertNotNull(responseHeaders);
59
60         }
61         
62         @Test
63         public void testHandleFault() {
64 /*
65                 handler.handleFault(null);
66                 assertTrue(true);
67 */
68         }
69         
70         @Test
71         public void testHandleEndpointFault() {
72
73 /*              handler.handleEndpointFault(null);
74                 assertTrue(true);*/
75
76         }
77         
78         @Test
79         public void testRouteWriter() {
80 /*
81                 handler.routeWriter("routeKey", "routeValue");
82                 assertTrue(true);
83 */
84         }
85         
86         
87         
88
89 }