1cd59e866cd79d6071e29cef2992e893e223fcf9
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / test / java / org / openecomp / dcae / apod / analytics / common / BaseAnalyticsCommonUnitTest.java
1 /*\r
2  * ===============================LICENSE_START======================================\r
3  *  dcae-analytics\r
4  * ================================================================================\r
5  *    Copyright © 2017 AT&T Intellectual Property. All rights reserved.\r
6  * ================================================================================\r
7  *  Licensed under the Apache License, Version 2.0 (the "License");\r
8  *  you may not use this file except in compliance with the License.\r
9  *   You may obtain a copy of the License at\r
10  *\r
11  *          http://www.apache.org/licenses/LICENSE-2.0\r
12  *\r
13  *  Unless required by applicable law or agreed to in writing, software\r
14  *  distributed under the License is distributed on an "AS IS" BASIS,\r
15  *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
16  *  See the License for the specific language governing permissions and\r
17  *  limitations under the License.\r
18  *  ============================LICENSE_END===========================================\r
19  */\r
20 \r
21 package org.openecomp.dcae.apod.analytics.common;\r
22 \r
23 import org.openecomp.dcae.apod.analytics.common.service.processor.TestEarlyTerminatingProcessor;\r
24 import org.openecomp.dcae.apod.analytics.common.service.processor.TestMessageProcessor1;\r
25 import org.openecomp.dcae.apod.analytics.common.service.processor.TestMessageProcessor2;\r
26 import org.openecomp.dcae.apod.analytics.test.BaseDCAEAnalyticsUnitTest;\r
27 \r
28 /**\r
29  * Base class from all DCEA Analytics Common Module Unit Tests\r
30  * <p>\r
31  * @author Rajiv Singla . Creation Date: 10/6/2016.\r
32  */\r
33 public abstract class BaseAnalyticsCommonUnitTest extends BaseDCAEAnalyticsUnitTest {\r
34 \r
35 \r
36     protected static final String TEST_MESSAGE_PROCESSOR_MESSAGE = "Test Processor Message";\r
37 \r
38     protected static final String CEF_MESSAGE_FILE_PATH = "data/json/cef/cef_message.json";\r
39 \r
40     /*\r
41      * Test implementation for {@link CDAPAppSettings}\r
42      */\r
43     protected class CDAPTestAppSettings {\r
44 \r
45         private String settingsField;\r
46 \r
47         public String getSettingsField() {\r
48             return settingsField;\r
49         }\r
50 \r
51         public void setSettingsField(String settingsField) {\r
52             this.settingsField = settingsField;\r
53         }\r
54     }\r
55 \r
56     protected TestMessageProcessor1 getTestMessageProcessor1() {\r
57          return new TestMessageProcessor1();\r
58     }\r
59     protected TestMessageProcessor2 getTestMessageProcessor2() {\r
60         return new TestMessageProcessor2();\r
61     }\r
62     protected TestEarlyTerminatingProcessor getTestEarlyTerminationProcessor() {\r
63         return new TestEarlyTerminatingProcessor();\r
64     }\r
65 }\r