diff options
author | Shuting Qing <qingshuting1@huawei.com> | 2022-08-03 02:44:04 +0000 |
---|---|---|
committer | Shuting Qing <qingshuting1@huawei.com> | 2022-08-03 02:44:04 +0000 |
commit | 0fa823de11b9b2d0980275247dfd9e597f9dc915 (patch) | |
tree | efe7f820d141c98ed1635b8a092e5b48fc638522 /components | |
parent | f7371ed8b15bd23d5b63ca4808da7d1673bac46a (diff) |
Revert "Fix bug in handleNotification function and improve test code coverage"
This reverts commit f7371ed8b15bd23d5b63ca4808da7d1673bac46a.
Reason for revert: @Autowired instance does not need to be created manually.
Issue-ID: DCAEGEN2-3208
Change-Id: Iba33e54241925189c5abbb0590452c47d29b0e11
Signed-off-by: qingshuting <qingshuting1@huawei.com>
Diffstat (limited to 'components')
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 |