Refactor Prov DB handling
[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 java.lang.reflect.Field;
30 import org.apache.commons.lang3.reflect.FieldUtils;
31 import org.junit.After;
32 import org.junit.Before;
33 import org.onap.dmaap.datarouter.provisioning.utils.SynchronizerTask;
34 import org.slf4j.LoggerFactory;
35
36 import java.util.Properties;
37
38 import static org.junit.Assert.assertEquals;
39 import static org.mockito.Mockito.mock;
40 import static org.mockito.Mockito.when;
41
42 public class DrServletTestBase {
43
44     @Before
45     public void setUp() throws Exception {
46         Properties props = new Properties();
47         props.setProperty("org.onap.dmaap.datarouter.provserver.isaddressauthenabled", "false");
48         props.setProperty("org.onap.dmaap.datarouter.provserver.accesslog.dir", "unit-test-logs");
49         props.setProperty("org.onap.dmaap.datarouter.provserver.spooldir", "unit-test-logs/spool");
50         props.setProperty("org.onap.dmaap.datarouter.provserver.https.relaxation", "false");
51         props.setProperty("org.onap.dmaap.datarouter.provserver.passwordencryption", "PasswordEncryptionKey#@$%^&1234#");
52         FieldUtils.writeDeclaredStaticField(ProvRunner.class, "provProperties", props, true);
53         FieldUtils.writeDeclaredStaticField(BaseServlet.class, "startmsgFlag", false, true);
54         SynchronizerTask synchronizerTask = mock(SynchronizerTask.class);
55         when(synchronizerTask.getPodState()).thenReturn(SynchronizerTask.UNKNOWN_POD);
56         FieldUtils.writeDeclaredStaticField(BaseServlet.class, "synctask", synchronizerTask, true);
57     }
58
59     ListAppender<ILoggingEvent> setTestLogger(Class c) {
60         Logger logger = (Logger) LoggerFactory.getLogger(c);
61         ListAppender<ILoggingEvent> listAppender = new ListAppender<>();
62         listAppender.start();
63         logger.addAppender(listAppender);
64         return listAppender;
65     }
66
67     void verifyEnteringExitCalled(ListAppender<ILoggingEvent> listAppender) {
68         assertEquals("EELF0004I  Entering data router provisioning component with RequestId and InvocationId", listAppender.list.get(0).getMessage());
69         assertEquals("EELF0005I  Exiting data router provisioning component with RequestId and InvocationId", listAppender.list.get(2).getMessage());
70         assertEquals(3, listAppender.list.size());
71     }
72
73     @After
74     public void tearDown() throws Exception {
75     }
76 }