59177efece7f546e32cb527b81c335b50d50add4
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.logging;
23 import static org.junit.Assert.*;
24 import static org.mockito.Mockito.*;
25 import ch.qos.logback.access.spi.IAccessEvent;
26 import org.junit.*;
27
28
29 public class DME2RestFlagTest {
30
31     IAccessEvent mockAccEvent;
32     DME2RestFlag _DME2RestFlag;
33
34     String[] temp = new String[4];
35
36
37     @Before
38     public void setUp() throws Exception {
39
40         mockAccEvent = mock(IAccessEvent.class);
41         _DME2RestFlag= spy(DME2RestFlag.class);
42
43     }
44     private DME2RestFlag getTestObj(final boolean instanceStarted){
45         return new DME2RestFlag(){
46             @Override
47             public
48             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
83 }