2415e619d7a3d8720604b8c970bb31be4702dfc6
[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
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.bpmn.core.domain");   
67                 
68         }
69
70         private void test(String pojoPackage) {
71                 Validator validator = ValidatorBuilder.create()
72                                 .with(new GetterMustExistRule())
73                             .with(new NoNestedClassRule())                         
74                             .with(new SerializableMustHaveSerialVersionUIDRule())                                                               
75                             .with(new NoPublicFieldsExceptStaticFinalRule())                     
76                                 .with(new SetterTester())
77                                 .with(new GetterTester())
78                                 
79                                 
80                              
81                                 .build();
82                 
83         
84                 validator.validate(pojoPackage, new FilterPackageInfo(), filterTestClasses,enumFilter,new FilterNonConcrete());
85         }
86         private static class FilterTestClasses implements PojoClassFilter {
87                 public boolean include(PojoClass pojoClass) {
88                         return !pojoClass.getSourcePath().contains("/test-classes/");
89                 }
90         }
91 }