From bf9883c5347a94e61c79b5f9d9bc329a1b0e7c4e Mon Sep 17 00:00:00 2001 From: Guangrong Fu Date: Wed, 8 Dec 2021 16:15:24 +0800 Subject: bugfix - http/https protocol problem Issue-ID: HOLMES-488 Signed-off-by: Guangrong Fu Change-Id: I9d4a219b55b909217413dd615013b0d1026e257d --- .../onap/holmes/rulemgt/dcae/ConfigFileScanningTaskTest.java | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'rulemgt/src/test') diff --git a/rulemgt/src/test/java/org/onap/holmes/rulemgt/dcae/ConfigFileScanningTaskTest.java b/rulemgt/src/test/java/org/onap/holmes/rulemgt/dcae/ConfigFileScanningTaskTest.java index 053612b..d6d93a9 100644 --- a/rulemgt/src/test/java/org/onap/holmes/rulemgt/dcae/ConfigFileScanningTaskTest.java +++ b/rulemgt/src/test/java/org/onap/holmes/rulemgt/dcae/ConfigFileScanningTaskTest.java @@ -44,6 +44,8 @@ public class ConfigFileScanningTaskTest { @Test public void run_add_rules() throws Exception { + System.setProperty("ENABLE_ENCRYPT", "true"); + String clName = "ControlLoop-VOLTE-2179b738-fd36-4843-a71a-a8c24c70c55b"; String indexPath = getFilePath("index-add.json"); String contents = FileUtils.readTextFile(indexPath); @@ -68,10 +70,14 @@ public class ConfigFileScanningTaskTest { Map config = Whitebox.getInternalState(cfst, "configInEffect"); assertThat(config.size(), is(1)); + + System.clearProperty("ENABLE_ENCRYPT"); } @Test public void run_remove_rules_normal() throws Exception { + System.setProperty("ENABLE_ENCRYPT", "false"); + String clName = "ControlLoop-VOLTE-2179b738-fd36-4843-a71a-a8c24c70c55b"; String indexPath = getFilePath("index-add.json"); String contents = FileUtils.readTextFile(indexPath); @@ -98,6 +104,8 @@ public class ConfigFileScanningTaskTest { Map config = Whitebox.getInternalState(cfst, "configInEffect"); assertThat(config.size(), is(0)); + + System.clearProperty("ENABLE_ENCRYPT"); } @Test @@ -238,4 +246,6 @@ public class ConfigFileScanningTaskTest { ruleResult4API.setEnabled(1); return ruleResult4API; } + + } \ No newline at end of file -- cgit 1.2.3-korg