2ba575ea6d71a7a27aabd97c6ac4b43b021af0f4
[policy/apex-pdp.git] /
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.apex.starter.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 java.util.Map;
28
29 import org.junit.Test;
30 import org.onap.policy.common.parameters.GroupValidationResult;
31
32 /**
33  * Class to perform unit test of {@link ApexStarterParameterGroup}.
34  *
35  * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
36  */
37 public class TestApexStarterParameterGroup {
38     CommonTestData commonTestData = new CommonTestData();
39
40     @Test
41     public void testApexStarterParameterGroup_Named() {
42         final ApexStarterParameterGroup apexStarterParameters = new ApexStarterParameterGroup("my-name");
43         assertEquals("my-name", apexStarterParameters.getName());
44     }
45
46     @Test
47     public void testApexStarterParameterGroup() {
48         final ApexStarterParameterGroup apexStarterParameters = commonTestData.toObject(
49                 commonTestData.getApexStarterParameterGroupMap(CommonTestData.APEX_STARTER_GROUP_NAME),
50                 ApexStarterParameterGroup.class);
51         final PdpStatusParameters pdpStatusParameters = apexStarterParameters.getPdpStatusParameters();
52         final GroupValidationResult validationResult = apexStarterParameters.validate();
53         assertTrue(validationResult.isValid());
54         assertEquals(CommonTestData.APEX_STARTER_GROUP_NAME, apexStarterParameters.getName());
55         assertEquals(CommonTestData.TIME_INTERVAL, pdpStatusParameters.getTimeInterval());
56         assertEquals(CommonTestData.PDP_NAME, pdpStatusParameters.getPdpName());
57         assertEquals(CommonTestData.PDP_TYPE, pdpStatusParameters.getPdpType());
58         assertEquals(CommonTestData.VERSION, pdpStatusParameters.getVersion());
59         assertEquals(CommonTestData.DESCRIPTION, pdpStatusParameters.getDescription());
60         assertEquals(CommonTestData.SUPPORTED_POLICY_TYPES, pdpStatusParameters.getSupportedPolicyTypes());
61     }
62
63     @Test
64     public void testApexStarterParameterGroup_NullName() {
65         final ApexStarterParameterGroup apexStarterParameters = commonTestData
66                 .toObject(commonTestData.getApexStarterParameterGroupMap(null), ApexStarterParameterGroup.class);
67         final GroupValidationResult validationResult = apexStarterParameters.validate();
68         assertFalse(validationResult.isValid());
69         assertEquals(null, apexStarterParameters.getName());
70         assertTrue(validationResult.getResult().contains("is null"));
71     }
72
73     @Test
74     public void testApexStarterParameterGroup_EmptyName() {
75         final ApexStarterParameterGroup apexStarterParameters = commonTestData
76                 .toObject(commonTestData.getApexStarterParameterGroupMap(""), ApexStarterParameterGroup.class);
77         final GroupValidationResult validationResult = apexStarterParameters.validate();
78         assertFalse(validationResult.isValid());
79         assertEquals("", apexStarterParameters.getName());
80         assertTrue(validationResult.getResult().contains(
81                 "field \"name\" type \"java.lang.String\" value \"\" INVALID, " + "must be a non-blank string"));
82     }
83
84     @Test
85     public void testApexStarterParameterGroup_SetName() {
86         final ApexStarterParameterGroup apexStarterParameters = commonTestData.toObject(
87                 commonTestData.getApexStarterParameterGroupMap(CommonTestData.APEX_STARTER_GROUP_NAME),
88                 ApexStarterParameterGroup.class);
89         apexStarterParameters.setName("ApexStarterNewGroup");
90         final GroupValidationResult validationResult = apexStarterParameters.validate();
91         assertTrue(validationResult.isValid());
92         assertEquals("ApexStarterNewGroup", apexStarterParameters.getName());
93     }
94
95     @Test
96     public void testApexStarterParameterGroup_EmptyPdpStatusParameters() {
97         final Map<String, Object> map =
98                 commonTestData.getApexStarterParameterGroupMap(CommonTestData.APEX_STARTER_GROUP_NAME);
99         map.put("pdpStatusParameters", commonTestData.getPdpStatusParametersMap(true));
100         final ApexStarterParameterGroup apexStarterParameters =
101                 commonTestData.toObject(map, ApexStarterParameterGroup.class);
102         final GroupValidationResult validationResult = apexStarterParameters.validate();
103         assertFalse(validationResult.isValid());
104         assertTrue(validationResult.getResult()
105                 .contains("\"org.onap.policy.apex.starter.parameters.ApexStarterParameterGroup\" INVALID, "
106                         + "parameter group has status INVALID"));
107     }
108 }