Enhancements for the aai-common library
[aai/aai-common.git] / aai-core / src / test / java / org / onap / aai / logging / DME2RestFlagTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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.aai.logging;
22
23 import ch.qos.logback.access.spi.IAccessEvent;
24 import org.junit.Before;
25 import org.junit.Test;
26
27 import static org.junit.Assert.assertEquals;
28 import static org.mockito.Mockito.*;
29
30 public class DME2RestFlagTest {
31
32     IAccessEvent mockAccEvent;
33     DME2RestFlag _DME2RestFlag;
34
35     String[] temp = new String[4];
36
37     @Before
38     public void setUp() throws Exception {
39
40         mockAccEvent = mock(IAccessEvent.class);
41         _DME2RestFlag = spy(DME2RestFlag.class);
42
43     }
44
45     private DME2RestFlag getTestObj(final boolean instanceStarted) {
46         return new DME2RestFlag() {
47             @Override
48             public boolean isStarted() {
49                 return instanceStarted;
50             }
51         };
52     }
53
54     @Test
55     public void convertTestAllValid() {
56         temp[0] = "temp1";
57         temp[1] = "-";
58         when(mockAccEvent.getRequestParameter("envContext")).thenReturn(temp);
59         when(mockAccEvent.getRequestParameter("routeOffer")).thenReturn(temp);
60         when(mockAccEvent.getRequestParameter("version")).thenReturn(temp);
61         _DME2RestFlag = getTestObj(true);
62         assertEquals(_DME2RestFlag.convert(mockAccEvent), "DME2");
63     }
64
65     @Test
66     public void convertMissingRouteTest() {
67         temp[0] = "";
68         temp[1] = "-";
69         when(mockAccEvent.getRequestParameter("envContext")).thenReturn(temp);
70         when(mockAccEvent.getRequestParameter("routeOffer")).thenReturn(temp);
71         when(mockAccEvent.getRequestParameter("version")).thenReturn(temp);
72         _DME2RestFlag = getTestObj(true);
73         assertEquals(_DME2RestFlag.convert(mockAccEvent), "REST");
74     }
75
76     @Test
77     public void convertIsStartedFalseTest() {
78         _DME2RestFlag = getTestObj(false);
79         assertEquals(_DME2RestFlag.convert(mockAccEvent), "INACTIVE_HEADER_CONV");
80     }
81
82 }