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