router-core 1.3.0 changes
[aai/data-router.git] / src / test / java / org / onap / aai / datarouter / policy / SpikeEntitySearchProcessorTest.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.junit.runner.RunWith;
37 import org.onap.aai.datarouter.util.NodeUtils;
38 import org.onap.aai.setup.SchemaLocationsBean;
39 import org.onap.aai.setup.SchemaVersions;
40 import org.powermock.api.mockito.PowerMockito;
41 import org.springframework.beans.factory.annotation.Autowired;
42 import org.springframework.test.context.ContextConfiguration;
43 import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
44
45 @RunWith(SpringJUnit4ClassRunner.class)
46 @ContextConfiguration("file:src/test/resources/spring-beans/data-router-oxm.xml")
47 public class SpikeEntitySearchProcessorTest {
48   private SpikeEventPolicyConfig eventPolicyConfig;
49   private SpikeEntitySearchProcessor policy;
50   private String eventJson;
51   private InMemorySearchDatastore searchDb;
52
53   @Autowired
54   private SchemaVersions schemaVersions;
55   @Autowired
56   private SchemaLocationsBean schemaLocationsBean;
57   
58   @Before
59   public void init() throws Exception {
60     eventPolicyConfig = new SpikeEventPolicyConfig();
61     eventPolicyConfig.setSearchKeystorePwd("password");
62     eventPolicyConfig.setSourceDomain("JUNIT");
63     
64     eventPolicyConfig.setSchemaVersions(schemaVersions);
65     eventPolicyConfig.setSchemaLocationsBean(schemaLocationsBean);
66
67     searchDb = new InMemorySearchDatastore();
68     policy = new SpikeEntitySearchProcessorStubbed(eventPolicyConfig).withSearchDb(searchDb);
69
70   }
71
72   @Test
73   public void testProcess_success() throws Exception {
74
75     String genericVnfEventJsonTemplate = IOUtils.toString(
76         new FileInputStream(new File("src/test/resources/generic-vnf-spike-event.json")), "UTF-8");
77
78     policy.process(
79         getExchangeEvent(genericVnfEventJsonTemplate, "update-notification", "CREATE", "gvnf123"));
80
81     assertNotNull(searchDb.get(NodeUtils.generateUniqueShaDigest("generic-vnf/gvnf123")));
82
83     policy.process(
84         getExchangeEvent(genericVnfEventJsonTemplate, "update-notification", "DELETE", "gvnf123"));
85
86     assertNull(searchDb.get(NodeUtils.generateUniqueShaDigest("generic-vnf/gvnf123")));
87
88     
89   }
90   /*
91    * Failure test cases - no searchable attribute for type
92    */
93
94   @Test
95   public void testProcess_failure_unknownOxmEntityType() throws Exception {
96
97     String pserverEventJsonTemplate = IOUtils.toString(
98         new FileInputStream(new File("src/test/resources/optical-router-spike-event.json")),
99         "UTF-8");
100
101     policy.process(
102         getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "optronic123"));
103
104     assertNull(searchDb.get(NodeUtils.generateUniqueShaDigest("optical-router/optronic123")));
105   }
106
107   @Test
108   public void testProcess_failure_missingMandatoryFieldsFromBodyObject() throws Exception {
109
110     String pserverEventJsonTemplate = IOUtils.toString(
111         new FileInputStream(
112             new File("src/test/resources/pserver-missing-mandtory-field-spike-event.json")),
113         "UTF-8");
114
115     policy.process(
116         getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
117
118     assertNull(searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
119   }
120
121   @Test
122   public void testProcess_failure_missingMandatoryVertexProperties() throws Exception {
123
124     String pserverEventJsonTemplate =
125         IOUtils.toString(
126             new FileInputStream(
127                 new File("src/test/resources/pserver-missing-primary-key-spike-event.json")),
128             "UTF-8");
129
130     policy.process(
131         getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
132
133     assertNull(searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
134   }
135
136   @Test
137   public void testProcess_failure_noSuggestibleAttributesForEntityType() throws Exception {
138
139     String pserverEventJsonTemplate = IOUtils.toString(
140         new FileInputStream(new File("src/test/resources/vserver-spike-event.json")), "UTF-8");
141
142     policy.process(
143         getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "vserver123"));
144
145     assertNull(searchDb.get(NodeUtils.generateUniqueShaDigest("vserver/vserver123")));
146   }
147
148   private Exchange getExchangeEvent(String payloadTemplate, String eventType, String operationType,
149       String entityKey) {
150     Object obj = payloadTemplate.replace("$EVENT_TYPE", eventType)
151         .replace("$OPERATION_TYPE", operationType).replace("$ENTITY_KEY", entityKey);
152
153     Exchange exchange = PowerMockito.mock(Exchange.class);
154     Message inMessage = PowerMockito.mock(Message.class);
155     Message outMessage = PowerMockito.mock(Message.class);
156     PowerMockito.when(exchange.getIn()).thenReturn(inMessage);
157     PowerMockito.when(inMessage.getBody()).thenReturn(obj);
158
159     PowerMockito.when(exchange.getOut()).thenReturn(outMessage);
160     PowerMockito.doNothing().when(outMessage).setBody(anyObject());
161     PowerMockito.doNothing().when(outMessage).setHeader(anyString(), anyObject());
162
163     return exchange;
164
165   }
166
167
168
169 }