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