Fix Spike Event Processing with Common Format
[aai/data-router.git] / src / test / java / org / onap / aai / datarouter / policy / SpikeAutosuggestProcessorTest.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 Amdocs
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.datarouter.policy;
22
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertNull;
25 import static org.mockito.Matchers.anyObject;
26 import static org.mockito.Matchers.anyString;
27
28 import java.io.File;
29 import java.io.FileInputStream;
30
31 import org.apache.camel.Exchange;
32 import org.apache.camel.Message;
33 import org.apache.commons.io.IOUtils;
34 import org.junit.Before;
35 import org.junit.Test;
36 import org.onap.aai.datarouter.util.NodeUtils;
37 import org.powermock.api.mockito.PowerMockito;
38
39 public class SpikeAutosuggestProcessorTest {
40   private SpikeEventPolicyConfig eventPolicyConfig;
41   private SpikeAutosuggestIndexProcessor policy;
42   private InMemorySearchDatastore searchDb;
43
44   @Before
45   public void init() throws Exception {
46     
47     eventPolicyConfig = new SpikeEventPolicyConfig();
48     eventPolicyConfig.setSearchKeystorePwd("password");
49     eventPolicyConfig.setSourceDomain("JUNIT");
50     
51     searchDb = new InMemorySearchDatastore();
52     policy = new SpikeAutosuggestProcessorStubbed(eventPolicyConfig).withSearchDb(searchDb); 
53
54   }
55
56   @Test
57   public void testProcess_success() throws Exception {
58     
59     String genericVnfEventJsonTemplate = IOUtils.toString(
60         new FileInputStream(new File("src/test/resources/generic-vnf-spike-event.json")), "UTF-8");
61   
62     policy.process(getExchangeEvent(genericVnfEventJsonTemplate, "update-notification", "CREATE", "vserver123"));
63     
64     assertNotNull(
65         searchDb.get(NodeUtils.generateUniqueShaDigest("junk and Running VNFs")));
66     assertNotNull(
67         searchDb.get(NodeUtils.generateUniqueShaDigest("junk VNFs")));
68     assertNotNull(
69         searchDb.get(NodeUtils.generateUniqueShaDigest("Running VNFs")));
70    
71   }
72   
73   /*
74    * Failure test cases
75    * - no searchable attribute for type
76    */
77   
78   @Test
79   public void testProcess_failure_unknownOxmEntityType() throws Exception {
80     
81     String pserverEventJsonTemplate = IOUtils.toString(
82         new FileInputStream(new File("src/test/resources/optical-router-spike-event.json")), "UTF-8");
83     
84     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "optronic123"));
85
86     assertNull(
87         searchDb.get(NodeUtils.generateUniqueShaDigest("optical-router/optronic123")));
88   }
89   
90   @Test
91   public void testProcess_failure_missingMandatoryFieldsFromBodyObject() throws Exception {
92     
93     String pserverEventJsonTemplate = IOUtils.toString(
94         new FileInputStream(new File("src/test/resources/pserver-missing-mandtory-field-spike-event.json")), "UTF-8");
95     
96     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
97
98     assertNull(
99         searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
100   }
101   
102   @Test
103   public void testProcess_failure_missingMandatoryVertexProperties() throws Exception {
104     
105     String pserverEventJsonTemplate = IOUtils.toString(
106         new FileInputStream(new File("src/test/resources/pserver-missing-primary-key-spike-event.json")), "UTF-8");
107     
108     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
109
110     assertNull(
111         searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
112   }
113   
114   @Test
115   public void testProcess_failure_noSuggestibleAttributesForEntityType() throws Exception {
116     
117     String pserverEventJsonTemplate = IOUtils.toString(
118         new FileInputStream(new File("src/test/resources/vserver-spike-event.json")), "UTF-8");
119     
120     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "vserver123"));
121
122     assertNull(
123         searchDb.get(NodeUtils.generateUniqueShaDigest("vserver/vserver123")));
124   }
125     
126   private Exchange getExchangeEvent(String payloadTemplate, String eventType, String operationType,
127       String entityKey) {
128     Object obj = payloadTemplate.replace("$EVENT_TYPE", eventType)
129         .replace("$OPERATION_TYPE", operationType).replace("$ENTITY_KEY", entityKey);
130
131     Exchange exchange = PowerMockito.mock(Exchange.class);
132     Message inMessage = PowerMockito.mock(Message.class);
133     Message outMessage = PowerMockito.mock(Message.class);
134     PowerMockito.when(exchange.getIn()).thenReturn(inMessage);
135     PowerMockito.when(inMessage.getBody()).thenReturn(obj);
136
137     PowerMockito.when(exchange.getOut()).thenReturn(outMessage);
138     PowerMockito.doNothing().when(outMessage).setBody(anyObject());
139     PowerMockito.doNothing().when(outMessage).setHeader(anyString(), anyObject());
140
141     return exchange;
142
143   }
144
145
146 }