54cbced5639294deda64f9991ad22cbdeeabac2c
[so.git] / common / src / test / java / org / onap / so / BeansTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so;
22
23 import static org.hamcrest.CoreMatchers.allOf;
24 import static org.hamcrest.CoreMatchers.equalTo;
25 import static org.onap.so.openpojo.rules.HasAnnotationMatcher.hasAnnotation;
26 import static org.onap.so.openpojo.rules.HasAnnotationPropertyWithValueMatcher.hasAnnotationPropertyWithValue;
27
28 import javax.persistence.Column;
29 import javax.persistence.Temporal;
30
31 import org.junit.Test;
32 import org.onap.so.openpojo.rules.CustomSetterMustExistRule;
33 import org.onap.so.openpojo.rules.EqualsAndHashCodeTester;
34 import org.onap.so.openpojo.rules.HasEqualsAndHashCodeRule;
35 import org.onap.so.openpojo.rules.HasToStringRule;
36 import org.onap.so.openpojo.rules.ToStringTester;
37
38 import com.openpojo.reflection.PojoClass;
39 import com.openpojo.reflection.PojoClassFilter;
40 import com.openpojo.reflection.filters.FilterEnum;
41 import com.openpojo.reflection.filters.FilterNonConcrete;
42 import com.openpojo.reflection.filters.FilterPackageInfo;
43 import com.openpojo.validation.Validator;
44 import com.openpojo.validation.ValidatorBuilder;
45 import com.openpojo.validation.rule.impl.BusinessKeyMustExistRule;
46 import com.openpojo.validation.rule.impl.GetterMustExistRule;
47 import com.openpojo.validation.rule.impl.NoNestedClassRule;
48 import com.openpojo.validation.rule.impl.NoPrimitivesRule;
49 import com.openpojo.validation.rule.impl.NoPublicFieldsExceptStaticFinalRule;
50 import com.openpojo.validation.rule.impl.NoStaticExceptFinalRule;
51 import com.openpojo.validation.rule.impl.SerializableMustHaveSerialVersionUIDRule;
52 import com.openpojo.validation.test.impl.GetterTester;
53 import com.openpojo.validation.test.impl.SetterTester;
54
55
56 public class BeansTest {
57
58         private PojoClassFilter filterTestClasses = new FilterTestClasses();
59         
60         private PojoClassFilter  enumFilter = new FilterEnum();
61         
62         
63
64         @Test
65         public void pojoStructure() {   
66                 test("org.onap.so.client.policy.entities");
67                 test("org.onap.so.client.grm.beans");
68                 test("org.onap.so.client.ruby.beans");
69                 test("org.onap.so.client.sdno.beans");
70                 test("org.onap.so.entity");
71                 test("org.onap.so.serviceinstancebeans");
72         }
73
74         private void test(String pojoPackage) {
75                 Validator validator = ValidatorBuilder.create()
76                                 .with(new GetterMustExistRule())
77                             .with(new NoNestedClassRule())
78                             .with(new NoStaticExceptFinalRule())
79                             .with(new SerializableMustHaveSerialVersionUIDRule())                                                               
80                             .with(new NoPublicFieldsExceptStaticFinalRule())                     
81                                 .with(new SetterTester())
82                                 .with(new GetterTester())
83                                 
84                                 
85                              
86                                 .build();
87                 
88         
89                 validator.validate(pojoPackage, new FilterPackageInfo(), filterTestClasses,enumFilter,new FilterNonConcrete());
90         }
91         private static class FilterTestClasses implements PojoClassFilter {
92                 public boolean include(PojoClass pojoClass) {
93                         return !pojoClass.getSourcePath().contains("/test-classes/");
94                 }
95         }
96 }