Fix eclipse/sonar warnings in models
[policy/models.git] / models-sim / policy-models-simulators / src / test / java / org / onap / policy / models / simulators / CdsServerParametersTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * Copyright (C) 2020 Bell Canada.
4  * Modifications Copyright (C) 2020 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  * ============LICENSE_END=========================================================
18  */
19
20 package org.onap.policy.models.simulators;
21
22 import static org.junit.Assert.assertFalse;
23 import static org.junit.Assert.assertNotNull;
24 import static org.junit.Assert.assertTrue;
25
26 import java.io.File;
27 import org.junit.Test;
28 import org.onap.policy.common.parameters.ValidationResult;
29 import org.onap.policy.common.utils.coder.CoderException;
30 import org.onap.policy.common.utils.coder.StandardCoder;
31
32 public class CdsServerParametersTest {
33     @Test
34     public void testValidateString() throws CoderException {
35         // some fields missing
36         ValidationResult result = new CdsServerParameters().validate();
37         assertFalse(result.isValid());
38         assertNotNull(result.getResult());
39
40         // everything populated
41         SimulatorParameters simParams = new StandardCoder()
42             .decode(new File("src/test/resources/simParameters.json"), SimulatorParameters.class);
43         CdsServerParameters params = simParams.getGrpcServer();
44         assertTrue(params.validate().isValid());
45     }
46 }