aboutsummaryrefslogtreecommitdiffstats
path: root/platform/src/test/java
diff options
context:
space:
mode:
authorChenfei Gao <cgao@research.att.com>2019-02-22 20:10:11 -0500
committerChenfei Gao <cgao@research.att.com>2019-02-26 09:31:23 -0500
commit237dd48cacfeda0b39ec1c09ce23fe59787e9e14 (patch)
tree5ed3660c8a27ccd3b92331cd41ad5099bbe077dc /platform/src/test/java
parentaa317c7b00dcafb7c3965a275ddf7ff882729aa7 (diff)
Add POJOs to support policy design API
Includes: a) Added POJOs for TOSCA policy type b) Added POJOs for TOSCA policy c) Added POJOs for TOSCA custom data type d) Added junit tests for POJOs Issue-ID: POLICY-1515 Change-Id: I230b32339c60b7cd3c0b66adfc3f2b1bb38265c5 Signed-off-by: Chenfei Gao <cgao@research.att.com>
Diffstat (limited to 'platform/src/test/java')
-rw-r--r--platform/src/test/java/org/onap/policy/tosca/TestPojos.java53
1 files changed, 53 insertions, 0 deletions
diff --git a/platform/src/test/java/org/onap/policy/tosca/TestPojos.java b/platform/src/test/java/org/onap/policy/tosca/TestPojos.java
new file mode 100644
index 000000000..e86c75904
--- /dev/null
+++ b/platform/src/test/java/org/onap/policy/tosca/TestPojos.java
@@ -0,0 +1,53 @@
+/*-
+ * ============LICENSE_START=======================================================
+ * ONAP Policy Model
+ * ================================================================================
+ * Copyright (C) 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.
+ *
+ * SPDX-License-Identifier: Apache-2.0
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.policy.tosca;
+
+import com.openpojo.reflection.filters.FilterPackageInfo;
+import com.openpojo.validation.Validator;
+import com.openpojo.validation.ValidatorBuilder;
+import com.openpojo.validation.rule.impl.GetterMustExistRule;
+import com.openpojo.validation.rule.impl.SetterMustExistRule;
+import com.openpojo.validation.test.impl.GetterTester;
+import com.openpojo.validation.test.impl.SetterTester;
+
+import org.junit.Test;
+import org.onap.policy.common.utils.validation.ToStringTester;
+
+/**
+ * Class to perform unit tests of all pojos
+ *
+ * @author Chenfei Gao (cgao@research.att.com)
+ *
+ */
+public class TestPojos {
+
+ private static final String POJO_PACKAGE = "org.onap.policy.model.tosca";
+
+ @Test
+ public void testPojos() {
+ final Validator validator = ValidatorBuilder.create().with(new ToStringTester())
+ .with(new SetterMustExistRule()).with(new GetterMustExistRule()).with(new SetterTester())
+ .with(new GetterTester()).build();
+ validator.validate(POJO_PACKAGE, new FilterPackageInfo());
+ }
+}