TCA: Support for VES/A&AI enrichment
[dcaegen2/analytics/tca.git] / dcae-analytics-common / src / test / java / org / openecomp / dcae / apod / analytics / common / service / processor / AbstractMessageProcessorTest.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.service.processor;\r
22 \r
23 import org.junit.Test;\r
24 import org.openecomp.dcae.apod.analytics.common.BaseAnalyticsCommonUnitTest;\r
25 import org.openecomp.dcae.apod.analytics.common.exception.MessageProcessingException;\r
26 \r
27 import static org.hamcrest.CoreMatchers.is;\r
28 import static org.junit.Assert.assertThat;\r
29 import static org.junit.Assert.assertTrue;\r
30 \r
31 /**\r
32  * @author Rajiv Singla . Creation Date: 12/12/2016.\r
33  */\r
34 public class AbstractMessageProcessorTest extends BaseAnalyticsCommonUnitTest {\r
35 \r
36 \r
37     @Test\r
38     public void testPreProcessorWhenProcessingContextFlagIsTrue() throws Exception {\r
39         TestMessageProcessor1 messageProcessor1 = new TestMessageProcessor1();\r
40         final TestProcessorContext processorContext =\r
41                 new TestProcessorContext(TEST_MESSAGE_PROCESSOR_MESSAGE, true);\r
42         final TestProcessorContext testProcessorContext = messageProcessor1.preProcessor(processorContext);\r
43         assertThat("Processing flag must be true",\r
44                 testProcessorContext.canProcessingContinue(), is(true));\r
45     }\r
46 \r
47     @Test(expected = MessageProcessingException.class)\r
48     public void testPreProcessorWhenProcessingContextFlagIsFalse() throws Exception {\r
49         TestMessageProcessor1 messageProcessor1 = new TestMessageProcessor1();\r
50         final TestProcessorContext testProcessorContext =\r
51                 new TestProcessorContext(TEST_MESSAGE_PROCESSOR_MESSAGE, false);\r
52         messageProcessor1.preProcessor(testProcessorContext);\r
53     }\r
54 \r
55     @Test\r
56     public void testPostProcessorWhenProcessingStateIsNotFinishedSuccessfully() throws Exception {\r
57         TestMessageProcessor1 messageProcessor1 = new TestMessageProcessor1();\r
58         final ProcessingState processingState = messageProcessor1.getProcessingState();\r
59         assertTrue("Processing state is not processing finished successfully",\r
60                 processingState != ProcessingState.PROCESSING_FINISHED_SUCCESSFULLY);\r
61         final TestProcessorContext processorContext =\r
62                 new TestProcessorContext(TEST_MESSAGE_PROCESSOR_MESSAGE, true);\r
63         final TestProcessorContext testProcessorContext = messageProcessor1.postProcessor(processorContext);\r
64         assertThat("Processing flag must be false",\r
65                 testProcessorContext.canProcessingContinue(), is(false));\r
66     }\r
67 \r
68 }\r