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