2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2018 Intel. All rights reserved.
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
9 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 * SPDX-License-Identifier: Apache-2.0
18 * ============LICENSE_END=========================================================
21 package org.onap.policy.distribution.reception.handling.sdc;
23 import static org.junit.Assert.assertEquals;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertTrue;
26 import static org.junit.Assert.fail;
28 import com.google.gson.Gson;
29 import com.google.gson.GsonBuilder;
32 import java.io.FileReader;
33 import java.io.IOException;
34 import org.junit.Test;
35 import org.onap.policy.common.parameters.GroupValidationResult;
36 import org.onap.policy.distribution.reception.parameters.PSSDConfigurationParametersGroup;
39 * Tests for PSSDConfiguration class
42 public class PSSDConfigurationTest {
45 public void testPSSDConfigurationParametersGroup() throws IOException {
46 PSSDConfigurationParametersGroup configParameters = null;
48 final Gson gson = new GsonBuilder().create();
50 gson.fromJson(new FileReader("src/test/resources/handling-sdc.json"),
51 PSSDConfigurationParametersGroup.class);
52 } catch (final Exception e) {
53 fail("test should not thrown an exception here: " + e.getMessage());
55 final GroupValidationResult validationResult = configParameters.validate();
56 assertTrue(validationResult.isValid());
57 PSSDConfiguration config = new PSSDConfiguration(configParameters);
58 assertEquals(20, config.getPollingInterval());
59 assertEquals(30,config.getPollingTimeout());
63 public void testInvalidPSSDConfigurationParametersGroup() throws IOException {
64 PSSDConfigurationParametersGroup configParameters = null;
66 final Gson gson = new GsonBuilder().create();
68 gson.fromJson(new FileReader("src/test/resources/handling-sdcInvalid.json"),
69 PSSDConfigurationParametersGroup.class);
70 } catch (final Exception e) {
71 fail("test should not thrown an exception here: " + e.getMessage());
73 final GroupValidationResult validationResult = configParameters.validate();
74 assertFalse(validationResult.isValid());