Adjust sparky parent pom
[aai/sparky-be.git] / sparkybe-onap-service / src / test / java / org / onap / aai / sparky / sync / AbstractEntitySynchronizerTest.java
index 3bd4928..0298ae2 100644 (file)
@@ -1,3 +1,24 @@
+/**
+ * ============LICENSE_START=======================================================
+ * org.onap.aai
+ * ================================================================================
+ * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
+ * Copyright © 2017-2018 Amdocs
+ * ================================================================================
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ * ============LICENSE_END=========================================================
+ */
+
 package org.onap.aai.sparky.sync;
 
 import static org.junit.Assert.assertEquals;
@@ -20,7 +41,7 @@ import org.onap.aai.restclient.client.OperationResult;
 import org.onap.aai.sparky.config.oxm.SearchableEntityLookup;
 import org.onap.aai.sparky.config.oxm.SearchableOxmEntityDescriptor;
 import org.onap.aai.sparky.dal.ActiveInventoryAdapter;
-import org.onap.aai.sparky.dal.ElasticSearchAdapter;
+import org.onap.aai.sparky.search.SearchServiceAdapter;
 import org.onap.aai.sparky.dal.NetworkTransaction;
 import org.onap.aai.sparky.dal.rest.HttpMethod;
 import org.onap.aai.sparky.sync.config.NetworkStatisticsConfig;
@@ -75,7 +96,7 @@ public class AbstractEntitySynchronizerTest {
        private QuantumSynchronizer quantumSync;
        private NetworkStatisticsConfig aaiStatConfig;
        private NetworkStatisticsConfig esStatConfig;
-       private ElasticSearchAdapter esAdapter;
+       private SearchServiceAdapter searchServiceAdapter;
        private ActiveInventoryAdapter aaiAdapter;
        private SearchableEntityLookup searchableEntityLookup;
        
@@ -141,7 +162,7 @@ public class AbstractEntitySynchronizerTest {
                esStatConfig.setTpsHistogramNumBins(20);
                esStatConfig.setTpsHistogramNumDecimalPoints(2);
                
-               esAdapter = Mockito.mock(ElasticSearchAdapter.class);
+               searchServiceAdapter = Mockito.mock(SearchServiceAdapter.class);
                aaiAdapter = Mockito.mock(ActiveInventoryAdapter.class);
        
        }
@@ -216,12 +237,12 @@ public class AbstractEntitySynchronizerTest {
                                esStatConfig);
                
                quantumSync.setAaiAdapter(aaiAdapter);
-               quantumSync.setElasticSearchAdapter(esAdapter);
+               quantumSync.setSearchServiceAdapter(searchServiceAdapter);
                
                quantumSync.clearCache();
                
                assertNotNull(quantumSync.getAaiAdapter());
-               assertNotNull(quantumSync.getElasticSearchAdapter());
+               assertNotNull(quantumSync.getSearchServiceAdapter());
                assertEquals("quantum-search-index", quantumSync.getIndexName());
                
                quantumSync.setIndexName("new-search-index-name");
@@ -285,7 +306,7 @@ public class AbstractEntitySynchronizerTest {
                                esStatConfig);
                
                quantumSync.setAaiAdapter(aaiAdapter);
-               quantumSync.setElasticSearchAdapter(esAdapter);
+               quantumSync.setSearchServiceAdapter(searchServiceAdapter);
                
                searchableEntityLookup = new SearchableEntityLookup();