814894c6fbfe590a35ec4df738debbc133f67530
[policy/pap.git] / main / src / test / java / org / onap / policy / pap / main / parameters / TestPdpUpdateParameters.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP PAP
4  * ================================================================================
5  * Copyright (C) 2019, 2021 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.pap.main.parameters;
22
23 import static org.junit.Assert.assertNull;
24 import static org.junit.Assert.assertTrue;
25
26 import org.junit.Test;
27 import org.onap.policy.common.parameters.ValidationResult;
28 import org.onap.policy.common.utils.coder.Coder;
29 import org.onap.policy.common.utils.coder.StandardCoder;
30
31 /**
32  * As {@link TestPdpRequestParameters} tests the "getXxx()" methods, all we need to verify
33  * here is that the object is valid after loading from JSON.
34  */
35 public class TestPdpUpdateParameters {
36     private static final Coder coder = new StandardCoder();
37
38     @Test
39     public void testValidate() throws Exception {
40         // valid, zeroes
41         PdpUpdateParameters params = makeParams(10, 20);
42         ValidationResult result = params.validate();
43         assertNull(result.getResult());
44         assertTrue(result.isValid());
45     }
46
47     private PdpUpdateParameters makeParams(int maxRetry, long maxWait) throws Exception {
48         String json = "{'maxRetryCount':" + maxRetry + ", 'maxWaitMs':" + maxWait + "}";
49         return coder.decode(json.replace('\'', '"'), PdpUpdateParameters.class);
50     }
51 }