[AAI] Fix doc config files
[aai/aai-common.git] / aai-els-onap-logging / 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 import org.junit.runner.RunWith;
27 import org.mockito.InjectMocks;
28 import org.mockito.Mock;
29 import org.mockito.Spy;
30 import org.mockito.junit.MockitoJUnitRunner;
31
32 import static org.junit.Assert.assertEquals;
33 import static org.mockito.Mockito.when;
34
35 @RunWith(MockitoJUnitRunner.class)
36 public class DME2RestFlagTest {
37
38     @Mock
39     IAccessEvent accessEvent;
40
41     @Spy
42     @InjectMocks
43     private DME2RestFlag dme2RestFlag;
44
45     @Before
46     public void setup() {
47         when(dme2RestFlag.isStarted()).thenReturn(true);
48     }
49     @Test
50     public void dme2Test(){
51         String[] contextArray = {"a", "b", "c"};
52         String[] routeOfferArray = {"d", "e", "f"};
53         String[] versionArray = {"1", "2", "3"};
54         when(accessEvent.getRequestParameter("envContext")).thenReturn(contextArray);
55         when(accessEvent.getRequestParameter("routeOffer")).thenReturn(routeOfferArray);
56         when(accessEvent.getRequestParameter("version")).thenReturn(versionArray);
57         assertEquals("DME2", dme2RestFlag.convert(accessEvent));
58     }
59     @Test
60     public void restTest(){
61         String[] contextArray = {""};
62         String[] routeOfferArray = {""};
63         String[] versionArray = {""};
64         when(accessEvent.getRequestParameter("envContext")).thenReturn(contextArray);
65         assertEquals("REST", dme2RestFlag.convert(accessEvent));
66     }
67 }