4dbdc8ccefecf37f7ba2530f9139cf20e026c97c
[policy/apex-pdp.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2018 Ericsson. All rights reserved.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  * 
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  * 
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  * 
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.apex.service.engine.event;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.fail;
25
26 import org.junit.Test;
27 import org.onap.policy.apex.service.engine.event.impl.jsonprotocolplugin.Apex2JsonEventConverter;
28 import org.onap.policy.apex.service.engine.event.impl.jsonprotocolplugin.JsonEventProtocolParameters;
29 import org.onap.policy.apex.service.parameters.eventprotocol.EventProtocolParameters;
30
31 /**
32  * Test the JSON event converter corner cases.
33  *
34  */
35 public class TestJsonEventConverter {
36     @Test
37     public void testJsonEventConverter() {
38         Apex2JsonEventConverter converter = new Apex2JsonEventConverter();
39
40         try {
41             converter.init(null);
42             fail("test should throw an exception");
43         } catch (Exception ie) {
44             assertEquals("specified consumer properties are not applicable to the JSON event protocol",
45                             ie.getMessage());
46         }
47
48         try {
49             converter.init(new EventProtocolParameters() {
50             });
51             fail("test should throw an exception");
52         } catch (Exception ie) {
53             assertEquals("specified consumer properties are not applicable to the JSON event protocol",
54                             ie.getMessage());
55         }
56
57         JsonEventProtocolParameters pars = new JsonEventProtocolParameters();
58         converter.init(pars);
59
60         try {
61             converter.toApexEvent(null, null);
62             fail("test should throw an exception");
63         } catch (Exception tae) {
64             assertEquals("event processing failed, event is null", tae.getMessage());
65         }
66
67         try {
68             converter.toApexEvent(null, 1);
69             fail("test should throw an exception");
70         } catch (Exception tae) {
71             assertEquals("error converting event \"1\" to a string", tae.getMessage());
72         }
73
74         try {
75             converter.toApexEvent(null, "[{\"aKey\": 1},{\"aKey\": 2}]");
76             fail("test should throw an exception");
77         } catch (Exception tae) {
78             assertEquals("Failed to unmarshal JSON event: incoming event ([{\"aKey\": 1},{\"aKey\": 2}]) "
79                             + "is a JSON object array containing an invalid object "
80                             + "{aKey=1.0}, event=[{\"aKey\": 1},{\"aKey\": 2}]", tae.getMessage());
81         }
82
83         try {
84             converter.toApexEvent(null, "[1,2,3]");
85             fail("test should throw an exception");
86         } catch (Exception tae) {
87             assertEquals("Failed to unmarshal JSON event: incoming event ([1,2,3]) is a JSON object array "
88                             + "containing an invalid object 1.0, event=[1,2,3]", tae.getMessage());
89         }
90
91         try {
92             converter.fromApexEvent(null);
93             fail("test should throw an exception");
94         } catch (Exception tae) {
95             assertEquals("event processing failed, Apex event is null", tae.getMessage());
96         }
97
98         try {
99             converter.fromApexEvent(new ApexEvent("Event", "0.0.1", "a.name.space", "here", "there"));
100             fail("test should throw an exception");
101         } catch (Exception tae) {
102             assertEquals("Model for org.onap.policy.apex.model.eventmodel.concepts.AxEvents not found in model service",
103                             tae.getMessage());
104         }
105     }
106 }