From 6261a6058cba8f5c0da0be36067ce1c6223c5ffc Mon Sep 17 00:00:00 2001 From: liboNet Date: Wed, 8 Aug 2018 08:08:10 +0800 Subject: Initial moduel structure for SDC handling This submission defines the initial module structure for this handling and add the IConfiguration implementation and test code, use the json format as the configuration. rename the class name to sensible one with PSSD prefix. remove static variable to make it possible for more than one subscription to SDC. improve the validate func to validate each mandatory parameters and check the int parameter's value Change-Id: I3106ad9d4535b1251eae064e803805b92378f6f1 Issue-ID: POLICY-956 Signed-off-by: liboNet --- .../handling/sdc/PSSDConfigurationTest.java | 79 ++++++++++++++++++++++ 1 file changed, 79 insertions(+) create mode 100644 plugins/reception-plugins/src/test/java/org/onap/policy/distribution/reception/handling/sdc/PSSDConfigurationTest.java (limited to 'plugins/reception-plugins/src/test/java') diff --git a/plugins/reception-plugins/src/test/java/org/onap/policy/distribution/reception/handling/sdc/PSSDConfigurationTest.java b/plugins/reception-plugins/src/test/java/org/onap/policy/distribution/reception/handling/sdc/PSSDConfigurationTest.java new file mode 100644 index 00000000..bcb7ac80 --- /dev/null +++ b/plugins/reception-plugins/src/test/java/org/onap/policy/distribution/reception/handling/sdc/PSSDConfigurationTest.java @@ -0,0 +1,79 @@ +/*- + * ============LICENSE_START======================================================= + * Copyright (C) 2018 Intel. All rights reserved. + * ================================================================================ + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + * + * SPDX-License-Identifier: Apache-2.0 + * ============LICENSE_END========================================================= + */ + +package org.onap.policy.distribution.reception.handling.sdc; + +import static org.junit.Assert.assertEquals; +import static org.junit.Assert.assertFalse; +import static org.junit.Assert.assertTrue; +import static org.junit.Assert.fail; + +import com.google.gson.Gson; +import com.google.gson.GsonBuilder; + +import java.io.File; +import java.io.FileReader; +import java.io.IOException; +import org.junit.Test; +import org.onap.policy.common.parameters.GroupValidationResult; + +/*- + * Tests for PSSDConfiguration class + * + */ +public class PSSDConfigurationTest { + + @Test + public void testPSSDConfigurationParametersGroup() throws IOException { + PSSDConfigurationParametersGroup configParameters = null; + try { + final Gson gson = new GsonBuilder().create(); + configParameters = + gson.fromJson(new FileReader("src/test/resources/handling-sdc.json"), + PSSDConfigurationParametersGroup.class); + } catch (final Exception e) { + fail("test should not thrown an exception here: " + e.getMessage()); + } + final GroupValidationResult validationResult = configParameters.validate(); + assertTrue(validationResult.isValid()); + assertEquals("parameterConfig1", configParameters.getName()); + + PSSDConfiguration config = new PSSDConfiguration(configParameters); + assertEquals(20, config.getPollingInterval()); + assertEquals(30,config.getPollingTimeout()); + } + + @Test + public void testInvalidPSSDConfigurationParametersGroup() throws IOException { + PSSDConfigurationParametersGroup configParameters = null; + try { + final Gson gson = new GsonBuilder().create(); + configParameters = + gson.fromJson(new FileReader("src/test/resources/handling-sdcInvalid.json"), + PSSDConfigurationParametersGroup.class); + } catch (final Exception e) { + fail("test should not thrown an exception here: " + e.getMessage()); + } + final GroupValidationResult validationResult = configParameters.validate(); + assertFalse(validationResult.isValid()); + assertEquals("parameterConfig1", configParameters.getName()); + + } +} -- cgit 1.2.3-korg