Create basic structure of pap component
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / parameters / TestPapParameterGroup.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
21 package org.onap.policy.pap.main.parameters;
22
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertTrue;
26
27 import org.junit.Test;
28 import org.onap.policy.common.parameters.GroupValidationResult;
29
30 /**
31  * Class to perform unit test of {@link PapParameterGroup}.
32  *
33  * @author Ram Krishna Verma (ram.krishna.verma@est.tech)
34  */
35 public class TestPapParameterGroup {
36
37     @Test
38     public void testPapParameterGroup() {
39         final PapParameterGroup papParameters = new PapParameterGroup(CommonTestData.PAP_GROUP_NAME);
40         final GroupValidationResult validationResult = papParameters.validate();
41         assertTrue(validationResult.isValid());
42         assertEquals(CommonTestData.PAP_GROUP_NAME, papParameters.getName());
43     }
44
45     @Test
46     public void testPapParameterGroup_NullName() {
47         final PapParameterGroup papParameters = new PapParameterGroup(null);
48         final GroupValidationResult validationResult = papParameters.validate();
49         assertFalse(validationResult.isValid());
50         assertEquals(null, papParameters.getName());
51         assertTrue(validationResult.getResult().contains(
52                 "field \"name\" type \"java.lang.String\" value \"null\" INVALID, " + "must be a non-blank string"));
53     }
54
55     @Test
56     public void testPapParameterGroup_EmptyName() {
57         final PapParameterGroup papParameters = new PapParameterGroup("");
58         final GroupValidationResult validationResult = papParameters.validate();
59         assertFalse(validationResult.isValid());
60         assertEquals("", papParameters.getName());
61         assertTrue(validationResult.getResult().contains(
62                 "field \"name\" type \"java.lang.String\" value \"\" INVALID, " + "must be a non-blank string"));
63     }
64
65     @Test
66     public void testPapParameterGroup_SetName() {
67         final PapParameterGroup papParameters = new PapParameterGroup(CommonTestData.PAP_GROUP_NAME);
68         papParameters.setName("PapNewGroup");
69         final GroupValidationResult validationResult = papParameters.validate();
70         assertTrue(validationResult.isValid());
71         assertEquals("PapNewGroup", papParameters.getName());
72     }
73 }