Merge "Sonar fix too many method param"
[dmaap/messagerouter/dmaapclient.git] / src / test / java / org / onap / dmaap / mr / dme / client / HeaderReplyHandlerTest.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 static org.junit.Assert.assertTrue;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28 import org.junit.After;
29 import org.junit.Before;
30 import org.junit.Test;
31
32 import com.att.aft.dme2.api.util.DME2ExchangeResponseContext;
33
34 public class HeaderReplyHandlerTest {
35         private HeaderReplyHandler handler = null;
36
37         @Before
38         public void setUp() throws Exception {
39                 handler = new HeaderReplyHandler();
40
41         }
42
43         @After
44         public void tearDown() throws Exception {
45
46         }
47
48         @Test
49         public void testHandleFault() {
50
51                 handler.handleFault(null);
52                 assertTrue(true);
53
54         }
55         
56         @Test
57         public void testHandleEndpointFault() {
58
59                 handler.handleEndpointFault(null);
60                 assertTrue(true);
61
62         }
63         
64         @Test
65         public void testHandleReply() {
66                 
67                 Map <String, String>responseHeaders = new HashMap<String, String>();
68                 responseHeaders.put("transactionId", "1234");
69
70                 DME2ExchangeResponseContext responseData =  new DME2ExchangeResponseContext ("service", 
71                                 200, new HashMap <String, String>(), responseHeaders, "routeOffer", "1.0.0", "http://");
72                 handler.handleReply(responseData);
73                 assertTrue(true);
74
75         }
76         
77         
78
79 }