8ae9b8b7566c653aa381bdb3747c16482f21ed49
[integration/csit.git] / plans / usecases-pnf-sw-upgrade / pnf-sw-upgrade / sorch / simulator / common / src / test / java / org / onap / so / simulator / model / PojoClassesTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  * ================================================================================
5  * Licensed under the Apache License, Version 2.0 (the "License");
6  * you may not use this file except in compliance with the License.
7  * You may obtain a copy of the License at
8  *
9  *      http://www.apache.org/licenses/LICENSE-2.0
10  *
11  * Unless required by applicable law or agreed to in writing, software
12  * distributed under the License is distributed on an "AS IS" BASIS,
13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  * See the License for the specific language governing permissions and
15  * limitations under the License.
16  *
17  * SPDX-License-Identifier: Apache-2.0
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.simulator.model;
21
22 import org.junit.Test;
23 import org.onap.so.simulator.model.UserCredentials;
24 import com.openpojo.reflection.impl.PojoClassFactory;
25 import com.openpojo.validation.Validator;
26 import com.openpojo.validation.ValidatorBuilder;
27 import com.openpojo.validation.test.impl.GetterTester;
28 import com.openpojo.validation.test.impl.SetterTester;
29 import nl.jqno.equalsverifier.EqualsVerifier;
30 import nl.jqno.equalsverifier.Warning;
31
32
33 /**
34  * @author Waqas Ikram (waqas.ikram@est.tech)
35  *
36  */
37 public class PojoClassesTest {
38
39     @Test
40     public void test_UserCredentials_class() throws ClassNotFoundException {
41         verify(UserCredentials.class);
42         validate(UserCredentials.class);
43     }
44
45     @Test
46     public void test_User_class() throws ClassNotFoundException {
47         verify(User.class);
48         validate(User.class);
49     }
50
51     private void validate(final Class<?> clazz) {
52         final Validator validator = ValidatorBuilder.create().with(new SetterTester()).with(new GetterTester()).build();
53         validator.validate(PojoClassFactory.getPojoClass(clazz));
54     }
55
56     private void verify(final Class<?> clazz) {
57         EqualsVerifier.forClass(clazz).suppress(Warning.STRICT_INHERITANCE, Warning.NONFINAL_FIELDS).verify();
58     }
59
60 }