9a42a97a13b09fbd218e173d21943a4fa361427e
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / test / java / org / openecomp / dcae / apod / analytics / common / BaseAnalyticsCommonUnitTest.java
1 /*
2  * ===============================LICENSE_START======================================
3  *  dcae-analytics
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
21 package org.openecomp.dcae.apod.analytics.common;
22
23 import org.openecomp.dcae.apod.analytics.common.service.processor.TestEarlyTerminatingProcessor;
24 import org.openecomp.dcae.apod.analytics.common.service.processor.TestMessageProcessor1;
25 import org.openecomp.dcae.apod.analytics.common.service.processor.TestMessageProcessor2;
26 import org.openecomp.dcae.apod.analytics.test.BaseDCAEAnalyticsUnitTest;
27
28 /**
29  * Base class from all DCEA Analytics Common Module Unit Tests
30  * <p>
31  * @author Rajiv Singla . Creation Date: 10/6/2016.
32  */
33 public abstract class BaseAnalyticsCommonUnitTest extends BaseDCAEAnalyticsUnitTest {
34
35
36     protected static final String TEST_MESSAGE_PROCESSOR_MESSAGE = "Test Processor Message";
37
38     protected static final String CEF_MESSAGE_FILE_PATH = "data/json/cef_message.json";
39
40     /*
41      * Test implementation for {@link CDAPAppSettings}
42      */
43     protected class CDAPTestAppSettings {
44
45         private String settingsField;
46
47         public String getSettingsField() {
48             return settingsField;
49         }
50
51         public void setSettingsField(String settingsField) {
52             this.settingsField = settingsField;
53         }
54     }
55
56     protected TestMessageProcessor1 getTestMessageProcessor1() {
57          return new TestMessageProcessor1();
58     }
59     protected TestMessageProcessor2 getTestMessageProcessor2() {
60         return new TestMessageProcessor2();
61     }
62     protected TestEarlyTerminatingProcessor getTestEarlyTerminationProcessor() {
63         return new TestEarlyTerminatingProcessor();
64     }
65 }