aboutsummaryrefslogtreecommitdiffstats
path: root/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service
diff options
context:
space:
mode:
Diffstat (limited to 'UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service')
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/AdapterServiceTest.java91
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/ConfigFileServiceTest.java34
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DMaapServiceTest.java143
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DiskRepoConfigFileServiceTest.java67
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/MongoDbConfigFileServiceTest.java59
-rw-r--r--UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/VesServiceTest.java143
6 files changed, 537 insertions, 0 deletions
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/AdapterServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/AdapterServiceTest.java
new file mode 100644
index 0000000..4bdc7b5
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/AdapterServiceTest.java
@@ -0,0 +1,91 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.*;
+
+import java.io.FileReader;
+import java.io.IOException;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.onap.universalvesadapter.Application;
+import org.onap.universalvesadapter.exception.MapperConfigException;
+import org.onap.universalvesadapter.service.AdapterService;
+import org.onap.universalvesadapter.utils.MapperConfigUtils;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.beans.factory.annotation.Value;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+import org.springframework.util.FileCopyUtils;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes=Application.class)
+public class AdapterServiceTest {
+
+ private final Logger eLOGGER = LoggerFactory.getLogger(this.getClass());
+
+ @Autowired
+ private AdapterService adapterService;
+
+ @Value("${mapperConfig.file}")
+ private String mapperConfigFile;
+
+ @Test
+ public void identifyEventTypeFromIncomingJson() {
+
+ String inputJsonString = "{ "
+ + "\"protocol version\":\"v2c\", "
+ + "\"notify OID\":\".1.3.6.1.4.1.74.2.46.12.1.1AAA\", "
+ + "\"cambria.partition\":\"dcae-snmp.client.research.att.com\", "
+ + "\"trap category\":\"UCSNMP-HEARTBEAT\", "
+ + "\"epoch_serno\": 15161177410000, "
+ + "\"community\":\"public\", "
+ + "\"time received\": 1516117741, "
+ + "\"agent name\":\"localhost\", "
+ + "\"agent address\":\"127.0.0.1\", "
+ + "\"community len\": 6, "
+ + "\"notify OID len\": 12, "
+ + "\"varbinds\": [{ "
+ + " \"varbind_type\":\"octet\", "
+ + " \"varbind_oid\":\".1.3.6.1.4.1.74.2.46.12.1.1.1\", "
+ + " \"varbind_value\":\"ucsnmp heartbeat - ignore\" "
+ + " }, { "
+ + " \"varbind_type\":\"octet\", "
+ + " \"varbind_oid\":\".1.3.6.1.4.1.74.2.46.12.1.1.2\", "
+ + " \"varbind_value\":\"Tue Jan 16 10:49:01 EST 2018\" "
+ + " }] "
+ + "}";
+
+ String domain = "";
+ try {
+ String mappingConfigFileData = FileCopyUtils.copyToString(new FileReader(mapperConfigFile));
+ MapperConfigUtils.readMapperConfigFile(mappingConfigFileData);
+ domain = adapterService.identifyEventTypeFromIncomingJson(inputJsonString);
+ } catch (MapperConfigException | IOException exception) {
+ eLOGGER.error("Error occurred : ", exception );
+ }
+
+ assertEquals("snmp", domain);
+ }
+
+}*/
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/ConfigFileServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/ConfigFileServiceTest.java
new file mode 100644
index 0000000..0c7ff37
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/ConfigFileServiceTest.java
@@ -0,0 +1,34 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+
+public class ConfigFileServiceTest {
+
+ @Test
+ public void test() {
+ fail("Not yet implemented");
+ }
+
+}
+*/ \ No newline at end of file
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DMaapServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DMaapServiceTest.java
new file mode 100644
index 0000000..7490dda
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DMaapServiceTest.java
@@ -0,0 +1,143 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.*;
+import static org.mockito.Mockito.doNothing;
+import static org.mockito.Mockito.doReturn;
+import static org.mockito.Mockito.when;
+
+import java.io.IOException;
+import java.util.Arrays;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.ArgumentCaptor;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.MockitoAnnotations;
+import org.mockito.invocation.InvocationOnMock;
+import org.mockito.stubbing.Answer;
+import org.mockito.stubbing.OngoingStubbing;
+import org.onap.universalvesadapter.Application;
+import org.onap.universalvesadapter.exception.DMaapException;
+import org.onap.universalvesadapter.service.DMaapService;
+import org.onap.universalvesadapter.service.DiskRepoConfigFileService;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+import com.att.nsa.mr.client.MRBatchingPublisher;
+import com.att.nsa.mr.client.MRConsumer;
+
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = Application.class)
+public class DMaapServiceTest {
+
+ @Autowired
+ @InjectMocks
+ DMaapService dmaapService;
+
+ @Mock
+ private MRConsumer consumer;
+
+ @Mock
+ private MRBatchingPublisher publisher;
+
+ private final Logger eLOGGER = LoggerFactory.getLogger(this.getClass());
+
+ @Before
+ public void init() {
+ MockitoAnnotations.initMocks(this);
+ }
+
+
+
+ @Test
+ public void testConsumeFromDMaap() {
+ String[] iter = {"this ", "is ", "just ", "a ", "test"};
+ try {
+ Mockito.when(consumer.fetch()).thenReturn(Arrays.asList(iter));
+ } catch (IOException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ } catch (Exception e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+
+ StringBuffer sb = new StringBuffer("");
+ try {
+ for (String string : dmaapService.consumeFromDMaap()) {
+ sb.append(string);
+ }
+ } catch (DMaapException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+
+ assertEquals("this is just a test", sb.toString());
+
+ }
+
+ @Test
+ public void testPublishToDMaap() {
+
+ dmaapService.addMessageInOutgoingQueue("test");
+
+ ArgumentCaptor<?> valueCapture = ArgumentCaptor.forClass(String.class);
+ try {
+ int toBeReturned = 1;
+ doReturn(toBeReturned).when(publisher).send((String) valueCapture.capture());
+ } catch (IOException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+ try {
+ dmaapService.publishToDMaap();
+ } catch (DMaapException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+ assertEquals("test", valueCapture.getValue());
+
+ }
+
+ @Test
+ public void testPublishToDMaapString() {
+ ArgumentCaptor<?> valueCapture = ArgumentCaptor.forClass(String.class);
+ try {
+ int toBeReturned = 1;
+ doReturn(toBeReturned).when(publisher).send((String) valueCapture.capture());
+ } catch (IOException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+ try {
+ dmaapService.publishToDMaap("test");
+ } catch (DMaapException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+ assertEquals("test", valueCapture.getValue());
+
+ }
+
+}
+
+*/ \ No newline at end of file
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DiskRepoConfigFileServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DiskRepoConfigFileServiceTest.java
new file mode 100644
index 0000000..93c9e2f
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/DiskRepoConfigFileServiceTest.java
@@ -0,0 +1,67 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.assertEquals;
+import static org.mockito.Mockito.when;
+
+import java.net.URI;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.Matchers;
+import org.onap.universalvesadapter.Application;
+import org.onap.universalvesadapter.exception.ConfigFileReadException;
+import org.onap.universalvesadapter.service.DiskRepoConfigFileService;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.boot.test.mock.mockito.MockBean;
+import org.springframework.http.HttpStatus;
+import org.springframework.http.ResponseEntity;
+import org.springframework.test.context.junit4.SpringRunner;
+import org.springframework.web.client.RestTemplate;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = Application.class)
+public class DiskRepoConfigFileServiceTest {
+
+ @Autowired
+ DiskRepoConfigFileService diskRepoConfigFileService;
+
+ private final Logger eLOGGER = LoggerFactory.getLogger(this.getClass());
+
+ @Test
+ public void testReadConfigFile() {
+
+ String result = "test file";
+
+
+ try {
+ String readConfigFile = diskRepoConfigFileService.readConfigFile("testCase.xml");
+ assertEquals(result, readConfigFile);
+ } catch (ConfigFileReadException exception) {
+ eLOGGER.error("Error occurred : ", exception );
+ }
+
+ }
+
+}*/
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/MongoDbConfigFileServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/MongoDbConfigFileServiceTest.java
new file mode 100644
index 0000000..ba70f05
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/MongoDbConfigFileServiceTest.java
@@ -0,0 +1,59 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.*;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.onap.universalvesadapter.Application;
+import org.onap.universalvesadapter.service.MongoDbConfigFileService;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes=Application.class)
+public class MongoDbConfigFileServiceTest {
+
+
+ private final Logger eLOGGER = LoggerFactory.getLogger(this.getClass());
+
+
+ @Autowired
+ private MongoDbConfigFileService mongoDbConfigFileService;
+
+ @Test
+ public void testReadConfigFile() {
+ String configContent = "<?xml version=\"1.0\" encoding=\"UTF-8\"?> "
+ + "<smooks-resource-list xmlns=\"http://www.milyn.org/xsd/smooks-1.1.xsd\" "
+ + "xmlns:json=\"http://www.milyn.org/xsd/smooks/json-1.1.xsd\" "
+ + " xmlns:jb=\"http://www.milyn.org/xsd/smooks/javabean-1.2.xsd\"> "
+ + " <json:reader rootName=\"simple\" keyWhitspaceReplacement=\"-\"> "
+ + " </json:reader> "
+ + "</smooks-resource-list>";
+
+ assertEquals(configContent, mongoDbConfigFileService.readConfigFile("sample.xml"));
+ }
+
+}
+*/ \ No newline at end of file
diff --git a/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/VesServiceTest.java b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/VesServiceTest.java
new file mode 100644
index 0000000..bc71834
--- /dev/null
+++ b/UniversalVesAdapter/src/test/java/org/onap/universalvesadapter/service/VesServiceTest.java
@@ -0,0 +1,143 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : DCAE
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.universalvesadapter.service;
+
+import static org.junit.Assert.*;
+import static org.mockito.Mockito.doNothing;
+import static org.mockito.Mockito.doReturn;
+
+import java.io.IOException;
+import java.util.Arrays;
+import java.util.Collections;
+
+import org.junit.Before;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.mockito.ArgumentCaptor;
+import org.mockito.InjectMocks;
+import org.mockito.Mock;
+import org.mockito.Mockito;
+import org.mockito.MockitoAnnotations;
+import org.onap.universalvesadapter.Application;
+import org.onap.universalvesadapter.exception.DMaapException;
+import org.onap.universalvesadapter.service.DMaapService;
+import org.onap.universalvesadapter.service.VesService;
+import org.onap.universalvesadapter.utils.ParallelTasks;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+import org.springframework.beans.factory.annotation.Autowired;
+import org.springframework.boot.test.context.SpringBootTest;
+import org.springframework.test.context.junit4.SpringRunner;
+
+import com.att.nsa.mr.client.MRConsumer;
+
+@RunWith(SpringRunner.class)
+@SpringBootTest(classes = Application.class)
+public class VesServiceTest {
+
+ @InjectMocks
+ @Autowired
+ private VesService vesService;
+
+ @Mock
+ private DMaapService dmaapService;
+
+ private final Logger eLOGGER = LoggerFactory.getLogger(this.getClass());
+
+ @Before
+ public void init() {
+ MockitoAnnotations.initMocks(this);
+ }
+
+
+ @Test
+ public void testStart() {
+
+ String[] incomingMessages = {"{ "
+ + " \"protocol version \": \"v2c \", "
+ + " \"notify OID \": \".1.3.6.1.4.1.74.2.46.12.1.1AAA \", "
+ + " \"cambria.partition \": \"dcae-snmp.client.research.att.com \", "
+ + " \"trap category \": \"UCSNMP-HEARTBEAT \", "
+ + " \"epoch_serno \": 15161177410000, "
+ + " \"community \": \"public \", "
+ + " \"time received \": 1516117741, "
+ + " \"agent name \": \"localhost \", "
+ + " \"agent address \": \"127.0.0.1 \", "
+ + " \"community len \": 6, "
+ + " \"notify OID len \": 12, "
+ + " \"varbinds \": [{ "
+ + " \"varbind_type \": \"octet \", "
+ + " \"varbind_oid \": \".1.3.6.1.4.1.74.2.46.12.1.1.1 \", "
+ + " \"varbind_value \": \"ucsnmp heartbeat - ignore \" "
+ + " }, { "
+ + " \"varbind_type \": \"octet \", "
+ + " \"varbind_oid \": \".1.3.6.1.4.1.74.2.46.12.1.1.2 \", "
+ + " \"varbind_value \": \"Tue Jan 16 10:49:01 EST 2018 \" "
+ + " }] "
+ + "}"};
+ try {
+ Mockito.when(dmaapService.consumeFromDMaap()).thenReturn(Arrays.asList(incomingMessages)).thenReturn(() -> Collections.emptyIterator());
+ } catch (Exception e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+
+ ArgumentCaptor<?> valueCapture = ArgumentCaptor.forClass(String.class);
+ try {
+ doNothing().when(dmaapService).publishToDMaap((String) valueCapture.capture());
+ } catch (DMaapException e) {
+ eLOGGER.error("Error occurred : " + e.getMessage());
+ }
+
+
+ new Thread(new Runnable() {
+
+ @Override
+ public void run() {
+ // TODO Auto-generated method stub
+ vesService.start();
+
+ }
+ }).start();
+ try {
+ Thread.sleep(5000);
+ } catch (InterruptedException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
+ new Thread(new Runnable() {
+
+ @Override
+ public void run() {
+ // TODO Auto-generated method stub
+ vesService.stop();
+
+ }
+ }).start();
+ String result = "{\"event\":{\"commonEventHeader\":{},\"faultFields\":{},\"measurementsForVfScalingFields\":{\"additionalMeasurements\":[]}}}";
+ assertEquals(result, valueCapture.getValue());
+ }
+
+ @Test
+ public void testStop() {
+ fail("Not yet implemented");
+ }
+
+}
+*/ \ No newline at end of file