summaryrefslogtreecommitdiffstats
path: root/components
diff options
context:
space:
mode:
authorVijay Venkatesh Kumar <vv770d@att.com>2022-08-03 13:22:58 +0000
committerGerrit Code Review <gerrit@onap.org>2022-08-03 13:22:58 +0000
commit015b7529adc61181862c84a20ed7140a96e479dc (patch)
tree2e17dff026cef6a66f1e59a131f4b13b9113af5f /components
parentfcb17db482605d7d7b0c11505022d6bd3d899287 (diff)
parent0fa823de11b9b2d0980275247dfd9e597f9dc915 (diff)
Merge "Revert "Fix bug in handleNotification function and improve test code coverage""
Diffstat (limited to 'components')
-rw-r--r--components/slice-analysis-ms/ChangeLog.md3
-rw-r--r--components/slice-analysis-ms/pom.xml2
-rw-r--r--components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallback.java7
-rw-r--r--components/slice-analysis-ms/src/test/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallbackTest.java26
-rw-r--r--components/slice-analysis-ms/version.properties2
5 files changed, 14 insertions, 26 deletions
diff --git a/components/slice-analysis-ms/ChangeLog.md b/components/slice-analysis-ms/ChangeLog.md
index 2a72018b..13209eda 100644
--- a/components/slice-analysis-ms/ChangeLog.md
+++ b/components/slice-analysis-ms/ChangeLog.md
@@ -4,9 +4,6 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).
-## [1.1.4] - 2022/07/15
- - [DCAEGEN2-3208](https://jira.onap.org/browse/DCAEGEN2-3208) - Fix bug in Vesnotification Callback
-
## [1.1.3] - 2022/05/11
- [DCAEGEN2-3156](https://jira.onap.org/browse/DCAEGEN2-3156) - Fix bug in fetching PM data from DES
diff --git a/components/slice-analysis-ms/pom.xml b/components/slice-analysis-ms/pom.xml
index ca4b9848..21c62aab 100644
--- a/components/slice-analysis-ms/pom.xml
+++ b/components/slice-analysis-ms/pom.xml
@@ -34,7 +34,7 @@
</parent>
<groupId>org.onap.dcaegen2.services.components</groupId>
<artifactId>slice-analysis-ms</artifactId>
- <version>1.1.4-SNAPSHOT</version>
+ <version>1.1.3-SNAPSHOT</version>
<name>dcaegen2-services-slice-analysis-ms</name>
<description>Network slice PM analyser</description>
<packaging>jar</packaging>
diff --git a/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallback.java b/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallback.java
index 485c3d96..584da7b7 100644
--- a/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallback.java
+++ b/components/slice-analysis-ms/src/main/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallback.java
@@ -59,7 +59,6 @@ public class VesNotificationCallback implements NotificationCallback {
@PostConstruct
public void init(){
configuration = Configuration.getInstance();
- ccvpnPmDatastore = new CCVPNPmDatastore();
vesNotifChangeIdentifier = configuration.getVesNotifChangeIdentifier();
vesNotfiChangeType = configuration.getVesNotifChangeType();
}
@@ -74,7 +73,7 @@ public class VesNotificationCallback implements NotificationCallback {
}
/**
- * Parse Performance dmaap notification and save to DB
+ * Parse Performance dmaap notification and save to DB
* @param msg incoming message
*/
private void handleNotification(String msg) {
@@ -95,7 +94,7 @@ public class VesNotificationCallback implements NotificationCallback {
notifChangeIdentifier = output.getChangeIdentifier();
notifChangeType = output.getChangeType();
if (notifChangeType.equals(vesNotfiChangeType)
- && notifChangeIdentifier.equals(vesNotifChangeIdentifier)) {
+ && notifChangeIdentifier.equals(vesNotifChangeIdentifier)) {
cllId = output.getArrayOfNamedHashMap().get(0).getHashMap().getCllId();
uniId = output.getArrayOfNamedHashMap().get(0).getHashMap().getUniId();
bw = output.getArrayOfNamedHashMap().get(0).getHashMap().getBandwidthValue();
@@ -112,4 +111,4 @@ public class VesNotificationCallback implements NotificationCallback {
}
-} \ No newline at end of file
+}
diff --git a/components/slice-analysis-ms/src/test/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallbackTest.java b/components/slice-analysis-ms/src/test/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallbackTest.java
index beb11998..74f75a8c 100644
--- a/components/slice-analysis-ms/src/test/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallbackTest.java
+++ b/components/slice-analysis-ms/src/test/java/org/onap/slice/analysis/ms/dmaap/VesNotificationCallbackTest.java
@@ -22,17 +22,14 @@
package org.onap.slice.analysis.ms.dmaap;
import com.fasterxml.jackson.databind.ObjectMapper;
-import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.mockito.InjectMocks;
import org.mockito.Mockito;
import org.mockito.Spy;
-import org.onap.slice.analysis.ms.models.Configuration;
import org.springframework.boot.test.context.SpringBootTest;
import org.springframework.test.context.junit4.SpringRunner;
-import com.google.gson.Gson;
-import com.google.gson.JsonObject;
+
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
@@ -46,26 +43,21 @@ public class VesNotificationCallbackTest {
@InjectMocks
VesNotificationCallback vesNotificationCallback;
- @Before
- public void init() throws IOException {
- Configuration configuration = Configuration.getInstance();
- String configAllJson = new String(Files.readAllBytes(Paths.get("src/test/resources/config_all.json")));
- JsonObject configAll = new Gson().fromJson(configAllJson, JsonObject.class);
- JsonObject config = configAll.getAsJsonObject("config");
- configuration.updateConfigurationFromJsonObject(config);
- vesNotificationCallback.init();
- }
-
@Test
public void initTest() {
+ vesNotificationCallback.init();
Mockito.verify(vesNotificationCallback, Mockito.atLeastOnce()).init();
}
@Test
- public void activateCallBackTest() throws Exception{
- String input = new String(Files.readAllBytes(Paths.get("src/test/resources/vesCCVPNNotiModel.json")));
+ public void activateCallBackTest() {
+ String input = null;
+ try {
+ input = new String(Files.readAllBytes(Paths.get("src/test/resources/vesCCVPNNotiModel.json")));
+ } catch (IOException e) {
+ e.printStackTrace();
+ }
vesNotificationCallback.activateCallBack(input);
Mockito.verify(vesNotificationCallback, Mockito.atLeastOnce()).activateCallBack(Mockito.anyString());
}
-
}
diff --git a/components/slice-analysis-ms/version.properties b/components/slice-analysis-ms/version.properties
index c7388553..5844fb14 100644
--- a/components/slice-analysis-ms/version.properties
+++ b/components/slice-analysis-ms/version.properties
@@ -21,7 +21,7 @@
###############################################################################
major=1
minor=1
-patch=4
+patch=3
base_version=${major}.${minor}.${patch}
release_version=${base_version}
snapshot_version=${base_version}-SNAPSHOT