Minor clean-up of drools-apps 18/120318/1
authorJim Hahn <jrh3@att.com>
Thu, 8 Apr 2021 13:39:36 +0000 (09:39 -0400)
committerJim Hahn <jrh3@att.com>
Thu, 8 Apr 2021 13:41:51 +0000 (09:41 -0400)
Made the following minor changes:
- removed SupportUtil, as it is no longer needed.
- modified junit for exception class to use ExceptionsTester
- added junit for another exception class

Issue-ID: POLICY-3175
Change-Id: I7375e5bdb47a12f48a53e7df50f0924781c1c4b6
Signed-off-by: Jim Hahn <jrh3@att.com>
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/ControlLoopExceptionTest.java
controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/SupportUtil.java [deleted file]
controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/SimulatorExceptionTest.java [new file with mode: 0644]

index aca8d96..198af71 100644 (file)
@@ -3,7 +3,7 @@
  * eventmanager
  * ================================================================================
  * Copyright (C) 2018 Ericsson. All rights reserved.
- * Modifications Copyright (C) 2019-2020 AT&T Intellectual Property. All rights reserved.
+ * Modifications Copyright (C) 2019-20201 AT&T Intellectual Property. All rights reserved.
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
 
 package org.onap.policy.controlloop;
 
-import static org.junit.Assert.assertNotNull;
-
-import java.io.IOException;
 import org.junit.Test;
+import org.onap.policy.common.utils.test.ExceptionsTester;
 
 public class ControlLoopExceptionTest {
 
-    private static final String IN_OZ = "In Oz";
-
     @Test
     public void testControlLoopException() {
-        assertNotNull(new ControlLoopException());
-        assertNotNull(new ControlLoopException(IN_OZ));
-        assertNotNull(new ControlLoopException(new IOException()));
-        assertNotNull(new ControlLoopException(IN_OZ, new IOException()));
-        assertNotNull(new ControlLoopException(IN_OZ, new IOException(), false, false));
+        new ExceptionsTester().test(ControlLoopException.class);
     }
 }
diff --git a/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/SupportUtil.java b/controlloop/common/eventmanager/src/test/java/org/onap/policy/controlloop/SupportUtil.java
deleted file mode 100644 (file)
index 05eba64..0000000
+++ /dev/null
@@ -1,68 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * util
- * ================================================================================
- * Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
- * ================================================================================
- * 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.policy.controlloop;
-
-import java.io.File;
-import java.io.FileInputStream;
-import java.io.IOException;
-import java.io.InputStream;
-import java.nio.charset.StandardCharsets;
-import org.apache.commons.io.IOUtils;
-import org.onap.policy.models.tosca.authorative.concepts.ToscaPolicy;
-import org.yaml.snakeyaml.Yaml;
-import org.yaml.snakeyaml.constructor.Constructor;
-
-public final class SupportUtil {
-
-    public static class Pair<A, B> {
-        public final A key;
-        public final B value;
-
-        public Pair(A key, B value) {
-            this.key = key;
-            this.value = value;
-        }
-    }
-
-    private SupportUtil() {
-        // do nothing
-    }
-
-    /**
-     * Load yaml into a Pair object.
-     *
-     * @param testFile the yaml file
-     * @return a Pair
-     * @throws IOException if the file cannot be read
-     */
-    public static Pair<ToscaPolicy, String> loadYaml(String testFile) throws IOException {
-        try (InputStream is = new FileInputStream(new File(testFile))) {
-            String contents = IOUtils.toString(is, StandardCharsets.UTF_8);
-            //
-            // Read the yaml into our Java Object
-            //
-            Yaml yaml = new Yaml(new Constructor(ToscaPolicy.class));
-            ToscaPolicy obj = yaml.load(contents);
-            return new Pair<>(obj, contents);
-        }
-    }
-
-}
diff --git a/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/SimulatorExceptionTest.java b/controlloop/common/rules-test/src/test/java/org/onap/policy/controlloop/common/rules/test/SimulatorExceptionTest.java
new file mode 100644 (file)
index 0000000..0dee6d4
--- /dev/null
@@ -0,0 +1,32 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP
+ * ================================================================================
+ * Copyright (C) 2021 AT&T Intellectual Property. All rights reserved.
+ * ================================================================================
+ * 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.policy.controlloop.common.rules.test;
+
+import org.junit.Test;
+import org.onap.policy.common.utils.test.ExceptionsTester;
+
+public class SimulatorExceptionTest {
+
+    @Test
+    public void test() {
+        new ExceptionsTester().test(SimulatorException.class);
+    }
+}