Replaced all tabs with spaces in java and pom.xml
[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 import javax.persistence.Column;
28 import javax.persistence.Temporal;
29 import org.junit.Test;
30 import org.onap.so.openpojo.rules.CustomSetterMustExistRule;
31 import org.onap.so.openpojo.rules.EqualsAndHashCodeTester;
32 import org.onap.so.openpojo.rules.HasEqualsAndHashCodeRule;
33 import org.onap.so.openpojo.rules.HasToStringRule;
34 import org.onap.so.openpojo.rules.ToStringTester;
35 import com.openpojo.reflection.PojoClass;
36 import com.openpojo.reflection.PojoClassFilter;
37 import com.openpojo.reflection.filters.FilterEnum;
38 import com.openpojo.reflection.filters.FilterNonConcrete;
39 import com.openpojo.reflection.filters.FilterPackageInfo;
40 import com.openpojo.validation.Validator;
41 import com.openpojo.validation.ValidatorBuilder;
42 import com.openpojo.validation.rule.impl.BusinessKeyMustExistRule;
43 import com.openpojo.validation.rule.impl.GetterMustExistRule;
44 import com.openpojo.validation.rule.impl.NoNestedClassRule;
45 import com.openpojo.validation.rule.impl.NoPrimitivesRule;
46 import com.openpojo.validation.rule.impl.NoPublicFieldsExceptStaticFinalRule;
47 import com.openpojo.validation.rule.impl.NoStaticExceptFinalRule;
48 import com.openpojo.validation.rule.impl.SerializableMustHaveSerialVersionUIDRule;
49 import com.openpojo.validation.test.impl.GetterTester;
50 import com.openpojo.validation.test.impl.SetterTester;
51
52
53 public class BeansTest {
54
55     private PojoClassFilter filterTestClasses = new FilterTestClasses();
56
57     private PojoClassFilter enumFilter = new FilterEnum();
58
59
60
61     @Test
62     public void pojoStructure() {
63         test("org.onap.so.client.policy.entities");
64         test("org.onap.so.client.grm.beans");
65         test("org.onap.so.client.ruby.beans");
66         test("org.onap.so.client.sdno.beans");
67         test("org.onap.so.entity");
68         test("org.onap.so.serviceinstancebeans");
69     }
70
71     private void test(String pojoPackage) {
72         Validator validator = ValidatorBuilder.create().with(new GetterMustExistRule()).with(new NoNestedClassRule())
73                 .with(new NoStaticExceptFinalRule()).with(new SerializableMustHaveSerialVersionUIDRule())
74                 .with(new NoPublicFieldsExceptStaticFinalRule()).with(new SetterTester()).with(new GetterTester())
75
76
77
78                 .build();
79
80
81         validator.validate(pojoPackage, new FilterPackageInfo(), filterTestClasses, enumFilter,
82                 new FilterNonConcrete());
83     }
84
85     private static class FilterTestClasses implements PojoClassFilter {
86         public boolean include(PojoClass pojoClass) {
87             return !pojoClass.getSourcePath().contains("/test-classes/");
88         }
89     }
90 }