2 * ============LICENSE_START=======================================================
3 * Copyright (C) 2021 Nordix Foundation.
4 * Modifications Copyright (C) 2021 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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * SPDX-License-Identifier: Apache-2.0
19 * ============LICENSE_END=========================================================
22 package org.onap.policy.distribution.reception.parameters;
24 import static org.assertj.core.api.Assertions.assertThat;
26 import java.util.HashMap;
28 import org.junit.Test;
29 import org.onap.policy.common.parameters.ValidationResult;
30 import org.onap.policy.distribution.forwarding.parameters.PolicyForwarderParameters;
33 * Class for unit testing PluginHandlerParameters class.
35 * @author Adheli Tavares (adheli.tavares@est.tech)
38 public class TestPluginHandlerParameters {
41 public void testValidate_PolicyDecodersEmpty() {
42 PluginHandlerParameters emptyDecoder = new PluginHandlerParameters(new HashMap<>(), getPolicyForwarders());
44 ValidationResult result = emptyDecoder.validate();
46 assertThat(result.getResult()).contains("\"policyDecoders\"", "minimum").doesNotContain("\"policyForwarders\"");
50 public void testValidate_PolicyForwardersNullEmpty() {
51 PluginHandlerParameters emptyDecoder = new PluginHandlerParameters(getPolicyDecoders(), new HashMap<>());
53 ValidationResult result = emptyDecoder.validate();
55 assertThat(result.getResult()).contains("\"policyForwarders\"", "minimum").doesNotContain("\"policyDecoders\"");
58 private Map<String, PolicyDecoderParameters> getPolicyDecoders() {
59 final Map<String, PolicyDecoderParameters> policyDecoders = new HashMap<>();
60 final PolicyDecoderParameters pDParameters =
61 new PolicyDecoderParameters("DummyDecoder", getClass().getName(), "dummyDecoderConfiguration");
62 policyDecoders.put("DummyDecoder", pDParameters);
64 return policyDecoders;
67 private Map<String, PolicyForwarderParameters> getPolicyForwarders() {
68 final Map<String, PolicyForwarderParameters> policyForwarders = new HashMap<>();
69 final PolicyForwarderParameters pFParameters =
70 new PolicyForwarderParameters("DummyForwarder", getClass().getName(), "dummyForwarderConfiguration");
71 policyForwarders.put("DummyForwarder", pFParameters);
73 return policyForwarders;