1798bb2f57979e701c70c0c48a6bf22b09daaaef
[policy/models.git] / models-sim / policy-models-sim-pdp / src / test / java / org / onap / policy / models / sim / pdp / parameters / TestPdpStatusParameters.java
1 /*-
2  * ============LICENSE_START=======================================================
3  *  Copyright (C) 2019 Nordix Foundation.
4  *  Modifications Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
5  * ================================================================================
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  *      http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.models.sim.pdp.parameters;
23
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertNull;
26 import static org.junit.Assert.assertTrue;
27
28 import org.junit.Test;
29 import org.onap.policy.common.parameters.GroupValidationResult;
30
31 /**
32  * Class to perform unit test of {@link PdpStatusParameters}.
33  *
34  * @author Ajith Sreekumar (ajith.sreekumar@est.tech)
35  */
36 public class TestPdpStatusParameters {
37     private static CommonTestData testData = new CommonTestData();
38
39     @Test
40     public void test() {
41         final PdpStatusParameters pdpStatusParameters =
42                 testData.toObject(testData.getPdpStatusParametersMap(false), PdpStatusParameters.class);
43         final GroupValidationResult validationResult = pdpStatusParameters.validate();
44         assertTrue(validationResult.isValid());
45         assertEquals(CommonTestData.TIME_INTERVAL, pdpStatusParameters.getTimeIntervalMs());
46         assertEquals(CommonTestData.PDP_TYPE, pdpStatusParameters.getPdpType());
47         assertEquals(CommonTestData.DESCRIPTION, pdpStatusParameters.getDescription());
48         assertEquals(CommonTestData.SUPPORTED_POLICY_TYPES, pdpStatusParameters.getSupportedPolicyTypes());
49         assertEquals(CommonTestData.PDP_GROUP, pdpStatusParameters.getPdpGroup());
50     }
51
52     @Test
53     public void testValidate() {
54         final PdpStatusParameters pdpStatusParameters =
55                 testData.toObject(testData.getPdpStatusParametersMap(false), PdpStatusParameters.class);
56         final GroupValidationResult result = pdpStatusParameters.validate();
57         assertNull(result.getResult());
58         assertTrue(result.isValid());
59     }
60 }