Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCoreBPMN / src / test / java / org / onap / so / bpmn / core / 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.bpmn.core;
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.bpmn.core.domain");
64
65     }
66
67     private void test(String pojoPackage) {
68         Validator validator = ValidatorBuilder.create().with(new GetterMustExistRule()).with(new NoNestedClassRule())
69                 .with(new SerializableMustHaveSerialVersionUIDRule()).with(new NoPublicFieldsExceptStaticFinalRule())
70                 .with(new SetterTester()).with(new GetterTester())
71
72
73
74                 .build();
75
76
77         validator.validate(pojoPackage, new FilterPackageInfo(), filterTestClasses, enumFilter,
78                 new FilterNonConcrete());
79     }
80
81     private static class FilterTestClasses implements PojoClassFilter {
82         public boolean include(PojoClass pojoClass) {
83             return !pojoClass.getSourcePath().contains("/test-classes/");
84         }
85     }
86 }