Unit/SONAR/Checkstyle in ONAP-REST
[policy/engine.git] / ONAP-REST / src / test / java / org / onap / policy / rest / jpa / OptimizationModelsJpaTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP-REST
4  * ================================================================================
5  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2019 Nordix Foundation.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.rest.jpa;
23
24 import static org.junit.Assert.assertTrue;
25
26 import org.junit.Before;
27 import org.junit.Test;
28 import org.onap.policy.common.logging.flexlogger.FlexLogger;
29 import org.onap.policy.common.logging.flexlogger.Logger;
30
31 /**
32  * The Class OptimizationModelsJpaTest.
33  */
34 public class OptimizationModelsJpaTest {
35
36     private static Logger logger = FlexLogger.getLogger(OptimizationModelsJpaTest.class);
37     private UserInfo userInfo;
38
39     /**
40      * Sets the up.
41      *
42      * @throws Exception the exception
43      */
44     @Before
45     public void setUp() throws Exception {
46         logger.info("setUp: Entering");
47         userInfo = new UserInfo();
48         userInfo.setUserLoginId("Test");
49         userInfo.setUserName("Test");
50         logger.info("setUp: exit");
51     }
52
53     /**
54      * Test ms models.
55      */
56     @Test
57     public void testMsModels() {
58         OptimizationModels data = new OptimizationModels();
59         data.setId(1);
60         assertTrue(1 == data.getId());
61         data.setModelName("Test");
62         assertTrue("Test".equals(data.getModelName()));
63         data.setDescription("Test");
64         assertTrue("Test".equals(data.getDescription()));
65         data.setDependency("Test");
66         assertTrue("Test".equals(data.getDependency()));
67         data.setEnumValues("Test");
68         assertTrue("Test".equals(data.getEnumValues()));
69         data.setAnnotation("Test");
70         assertTrue("Test".equals(data.getAnnotation()));
71         data.setAttributes("Test");
72         assertTrue("Test".equals(data.getAttributes()));
73         data.setRefattributes("Test");
74         assertTrue("Test".equals(data.getRefattributes()));
75         data.setUserCreatedBy(userInfo);
76         assertTrue(data.getUserCreatedBy() != null);
77         data.setSubattributes("Test");
78         assertTrue("Test".equals(data.getSubattributes()));
79         data.setVersion("Test");
80         assertTrue("Test".equals(data.getVersion()));
81     }
82
83 }