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