Adding license header to newly added files
[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.onap.aai.datarouter.util.SearchServiceAgent;
38 import org.powermock.api.mockito.PowerMockito;
39
40
41
42 public class SpikeAutosuggestProcessorTest {
43   SpikeAutosuggestIndexProcessor policy;
44   String eventJson;
45
46   @SuppressWarnings("unchecked")
47   @Before
48   public void init() throws Exception {
49     SpikeEventPolicyConfig config = PowerMockito.mock(SpikeEventPolicyConfig.class);
50     PowerMockito.when(config.getSearchKeystorePwd()).thenReturn("password");
51     PowerMockito.when(config.getSourceDomain()).thenReturn("JUNIT");
52
53
54     SearchServiceAgent searchServiceAgent = PowerMockito.mock(SearchServiceAgent.class);
55     PowerMockito.whenNew(SearchServiceAgent.class).withAnyArguments()
56         .thenReturn(searchServiceAgent);
57
58
59     policy = new SpikeAutosuggestProcessorStubbed(config);
60     FileInputStream event = new FileInputStream(new File("src/test/resources/spike_event.json"));
61     eventJson = IOUtils.toString(event, "UTF-8");  
62
63   }
64
65   @Test
66   public void testProcess_success() throws Exception {
67     policy.process(getExchangeEvent("77777", "create", "generic-vnf"));
68     
69     assertNotNull(
70         InMemorySearchDatastore.get(NodeUtils.generateUniqueShaDigest("junk and Running VNFs")));
71     assertNotNull(
72         InMemorySearchDatastore.get(NodeUtils.generateUniqueShaDigest("junk VNFs")));
73     assertNotNull(
74         InMemorySearchDatastore.get(NodeUtils.generateUniqueShaDigest("Running VNFs")));
75    
76    
77   }
78   @Test
79   public void testProcess_fail() throws Exception {
80     policy.process(getExchangeEvent("666666", "create", "NotValid"));
81     assertNull(
82         InMemorySearchDatastore.get(NodeUtils.generateUniqueShaDigest("NotValid/666666")));
83     
84     policy.process(getExchangeEvent("", "create", "generic-vnf"));
85     assertNull(
86         InMemorySearchDatastore.get(NodeUtils.generateUniqueShaDigest("generic-vnf/")));
87
88   }
89
90   
91   private Exchange getExchangeEvent(String key, String action, String type) {
92     Object obj = eventJson.replace("$KEY", key).replace("$ACTION", action).replace("$TYPE", type);
93     Exchange exchange = PowerMockito.mock(Exchange.class);
94     Message inMessage = PowerMockito.mock(Message.class);
95     Message outMessage = PowerMockito.mock(Message.class);
96     PowerMockito.when(exchange.getIn()).thenReturn(inMessage); 
97     PowerMockito.when(inMessage.getBody()).thenReturn(obj);
98
99     PowerMockito.when(exchange.getOut()).thenReturn(outMessage);
100     PowerMockito.doNothing().when(outMessage).setBody(anyObject());
101     PowerMockito.doNothing().when(outMessage).setHeader(anyString(), anyObject());
102
103     return exchange;
104
105   }
106
107
108
109 }