e2076b9da8ec7da7305fe4f03c22a5ae0e41d160
[dmaap/datarouter.git] / datarouter-prov / src / test / java / org / onap / dmaap / datarouter / provisioning / DrServletTestBase.java
1 /*******************************************************************************
2  * ============LICENSE_START==================================================
3  * * org.onap.dmaap
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  ******************************************************************************/
23
24 package org.onap.dmaap.datarouter.provisioning;
25
26 import ch.qos.logback.classic.Logger;
27 import ch.qos.logback.classic.spi.ILoggingEvent;
28 import ch.qos.logback.core.read.ListAppender;
29 import org.apache.commons.lang3.reflect.FieldUtils;
30 import org.junit.After;
31 import org.junit.Before;
32 import org.onap.dmaap.datarouter.provisioning.utils.DB;
33 import org.slf4j.LoggerFactory;
34
35 import java.util.Properties;
36
37 import static org.junit.Assert.assertEquals;
38 import static org.mockito.Mockito.mock;
39 import static org.mockito.Mockito.when;
40
41 public class DrServletTestBase {
42
43     @Before
44     public void setUp() throws Exception {
45         Properties props = new Properties();
46         props.setProperty("org.onap.dmaap.datarouter.provserver.isaddressauthenabled", "false");
47         props.setProperty("org.onap.dmaap.datarouter.provserver.accesslog.dir", "unit-test-logs");
48         props.setProperty("org.onap.dmaap.datarouter.provserver.spooldir", "unit-test-logs/spool");
49         props.setProperty("org.onap.dmaap.datarouter.provserver.https.relaxation", "false");
50         FieldUtils.writeDeclaredStaticField(DB.class, "props", props, true);
51         FieldUtils.writeDeclaredStaticField(BaseServlet.class, "startmsgFlag", false, true);
52         SynchronizerTask synchronizerTask = mock(SynchronizerTask.class);
53         when(synchronizerTask.getPodState()).thenReturn(SynchronizerTask.UNKNOWN_POD);
54         FieldUtils.writeDeclaredStaticField(BaseServlet.class, "synctask", synchronizerTask, true);
55     }
56
57     ListAppender<ILoggingEvent> setTestLogger(Class c) {
58         Logger logger = (Logger) LoggerFactory.getLogger(c);
59         ListAppender<ILoggingEvent> listAppender = new ListAppender<>();
60         listAppender.start();
61         logger.addAppender(listAppender);
62         return listAppender;
63     }
64
65     void verifyEnteringExitCalled(ListAppender<ILoggingEvent> listAppender) {
66         assertEquals("EELF0004I  Entering data router provisioning component with RequestId and InvocationId", listAppender.list.get(0).getMessage());
67         assertEquals("EELF0005I  Exiting data router provisioning component with RequestId and InvocationId", listAppender.list.get(2).getMessage());
68         assertEquals(3, listAppender.list.size());
69     }
70
71     @After
72     public void tearDown() throws Exception {
73     }
74 }