dbe163efefc7640df008da0d90ed5d50bec7d896
[policy/models.git] / models-pdp / src / test / java / org / onap / policy / models / pdp / concepts / ModelsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.pdp.concepts;
23
24 import com.openpojo.reflection.filters.FilterClassName;
25 import com.openpojo.reflection.filters.FilterPackageInfo;
26 import com.openpojo.validation.Validator;
27 import com.openpojo.validation.ValidatorBuilder;
28 import com.openpojo.validation.test.impl.GetterTester;
29 import com.openpojo.validation.test.impl.SetterTester;
30
31 import org.junit.Test;
32 import org.onap.policy.common.utils.test.ToStringTester;
33
34 /**
35  * Class to perform unit testing of models.
36  *
37  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
38  */
39 public class ModelsTest {
40     private static final String POJO_PACKAGE = "org.onap.policy.models.pdp.concepts";
41
42     @Test
43     public void testPdpModels() {
44         final Validator validator = ValidatorBuilder.create().with(new ToStringTester()).with(new SetterTester())
45                 .with(new GetterTester()).build();
46
47         // exclude Test classes and PdpMessage
48         validator.validate(POJO_PACKAGE, new FilterPackageInfo(), new FilterClassName("^((?!Test$).)*$"),
49                 new FilterClassName("^((?!" + PdpMessage.class.getName() + ").)*$"));
50     }
51 }