router-core 1.3.0 changes
[aai/data-router.git] / src / test / java / org / onap / aai / datarouter / policy / SpikeEntityEventPolicyTest.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 SpikeEntityEventPolicyTest {
48   private SpikeEntityEventPolicyConfig eventPolicyConfig;
49   private SpikeEntityEventPolicy policy;
50   private InMemorySearchDatastore searchDb;
51   
52   @Autowired
53   private SchemaVersions schemaVersions;
54   @Autowired
55   private SchemaLocationsBean schemaLocationsBean;
56   
57   @Before
58   public void init() throws Exception {
59     
60     eventPolicyConfig = new SpikeEntityEventPolicyConfig();
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 SpikeEntityEventPolicyStubbed(eventPolicyConfig).withSearchDb(searchDb);
69
70   }
71
72   @Test
73   public void testProcess_success() throws Exception {
74     
75     String pserverEventJsonTemplate = IOUtils.toString(
76         new FileInputStream(new File("src/test/resources/pserver-spike-event.json")), "UTF-8");
77     
78     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
79
80     assertNotNull(
81         searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
82   }
83   
84   @Test
85   public void testProcess_failure_unknownOxmEntityType() throws Exception {
86     
87     String pserverEventJsonTemplate = IOUtils.toString(
88         new FileInputStream(new File("src/test/resources/optical-router-spike-event.json")), "UTF-8");
89     
90     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "optronic123"));
91
92     assertNull(
93         searchDb.get(NodeUtils.generateUniqueShaDigest("optical-router/optronic123")));
94   }
95   
96   @Test
97   public void testProcess_failure_missingMandatoryFieldsFromBodyObject() throws Exception {
98     
99     String pserverEventJsonTemplate = IOUtils.toString(
100         new FileInputStream(new File("src/test/resources/pserver-missing-mandtory-field-spike-event.json")), "UTF-8");
101     
102     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
103
104     assertNull(
105         searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
106   }
107   
108   @Test
109   public void testProcess_failure_missingMandatoryVertexProperties() throws Exception {
110     
111     String pserverEventJsonTemplate = IOUtils.toString(
112         new FileInputStream(new File("src/test/resources/pserver-missing-primary-key-spike-event.json")), "UTF-8");
113     
114     policy.process(getExchangeEvent(pserverEventJsonTemplate, "update-notification", "CREATE", "pserver123"));
115
116     assertNull(
117         searchDb.get(NodeUtils.generateUniqueShaDigest("pserver/pserver123")));
118   }
119   
120   private Exchange getExchangeEvent(String payloadTemplate, String eventType, String operationType,
121       String entityKey) {
122     Object obj = payloadTemplate.replace("$EVENT_TYPE", eventType)
123         .replace("$OPERATION_TYPE", operationType).replace("$ENTITY_KEY", entityKey);
124
125     Exchange exchange = PowerMockito.mock(Exchange.class);
126     Message inMessage = PowerMockito.mock(Message.class);
127     Message outMessage = PowerMockito.mock(Message.class);
128     PowerMockito.when(exchange.getIn()).thenReturn(inMessage);
129     PowerMockito.when(inMessage.getBody()).thenReturn(obj);
130
131     PowerMockito.when(exchange.getOut()).thenReturn(outMessage);
132     PowerMockito.doNothing().when(outMessage).setBody(anyObject());
133     PowerMockito.doNothing().when(outMessage).setHeader(anyString(), anyObject());
134
135     return exchange;
136
137   }
138
139
140
141 }