aboutsummaryrefslogtreecommitdiffstats
path: root/testsuites/integration/integration-common/src/test
diff options
context:
space:
mode:
authorliamfallon <liam.fallon@ericsson.com>2018-11-06 12:02:46 +0000
committerliamfallon <liam.fallon@ericsson.com>2018-11-07 12:41:09 +0000
commit53d8916cc60d97e2ce7ae345f8cc25f5602567da (patch)
treeee2f3a8e543c31993c51a58257354ccffb648dfe /testsuites/integration/integration-common/src/test
parent9dc414a0cabc9074e87a7c9cd5c3e5ceee733e5a (diff)
Refactor unit test data
There were many copies of test policies and examples strewn through the Apex unit tests. This change cleans up the unit tests so that a single version of all example policies is used in all tests. Also added a new relative file root command line parameter to Apex to allow the root of relative paths in configuration files to be set. Apologies for the size of this review but unfortunately all of this must be done in one shot. Issue-ID: POLICY-1252 Change-Id: Ibbb18fbf18e3897a1c61301d0a65e62bc643a0e9 Signed-off-by: liamfallon <liam.fallon@ericsson.com>
Diffstat (limited to 'testsuites/integration/integration-common/src/test')
-rw-r--r--testsuites/integration/integration-common/src/test/java/org/onap/policy/apex/testsuites/integration/common/testclasses/TestPingClassTest.java130
1 files changed, 130 insertions, 0 deletions
diff --git a/testsuites/integration/integration-common/src/test/java/org/onap/policy/apex/testsuites/integration/common/testclasses/TestPingClassTest.java b/testsuites/integration/integration-common/src/test/java/org/onap/policy/apex/testsuites/integration/common/testclasses/TestPingClassTest.java
new file mode 100644
index 000000000..6ca7ed9d7
--- /dev/null
+++ b/testsuites/integration/integration-common/src/test/java/org/onap/policy/apex/testsuites/integration/common/testclasses/TestPingClassTest.java
@@ -0,0 +1,130 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * Copyright (C) 2018 Ericsson. 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.apex.testsuites.integration.common.testclasses;
+
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.fail;
+
+import org.junit.Test;
+import org.onap.policy.apex.model.basicmodel.concepts.ApexException;
+
+/**
+ * Test the ping test class.
+ */
+public class TestPingClassTest {
+ @Test
+ public void testPingClass() {
+ PingTestClass ptc = new PingTestClass();
+
+ ptc.setName("Hello");
+ assertEquals("Hello", ptc.getName());
+
+ ptc.setDescription("Good Day");
+ assertEquals("Good Day", ptc.getDescription());
+
+ ptc.setPingTime(0);
+ assertEquals(0, ptc.getPingTime());
+
+ ptc.setPongTime(-1);
+ assertEquals(-1, ptc.getPongTime());
+
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, name does not start with \"Rose\"", ae.getMessage());
+ }
+
+ ptc.setName(null);
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, name length null or less than 4", ae.getMessage());
+ }
+
+ ptc.setName("Ros");
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, name length null or less than 4", ae.getMessage());
+ }
+
+ ptc.setName("Rose");
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, description length null or less than 44", ae.getMessage());
+ }
+
+ ptc.setDescription(null);
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, description length null or less than 44", ae.getMessage());
+ }
+
+ ptc.setDescription("A rose by any other name would smell as swee");
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, description length null or less than 44", ae.getMessage());
+ }
+
+ ptc.setDescription("A rose by any other name would smell as swell");
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, description is incorrect", ae.getMessage());
+ }
+
+ ptc.setDescription("A rose by any other name would smell as sweet");
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, pong time is not greater than ping time", ae.getMessage());
+ }
+
+ ptc.setPongTime(0);
+ try {
+ ptc.verify();
+ fail("test should throw an exception");
+ } catch (ApexException ae) {
+ assertEquals("TestPing is not valid, pong time is not greater than ping time", ae.getMessage());
+ }
+
+ ptc.setPongTime(1);
+ try {
+ ptc.verify();
+ } catch (ApexException ae) {
+ fail("test should not throw an exception");
+ }
+
+ assertEquals("TestPing [name=Rose, description=A rose by any other name would smell as sweet, "
+ + "pingTime=0, pongTime=1]", ptc.toString());
+ }
+}