9a0ac316f96384a8972e533bb2816ffae8ebe1da
[policy/distribution.git] /
1 /*-
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
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  *
18  * SPDX-License-Identifier: Apache-2.0
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.distribution.reception.parameters;
23
24 import static org.assertj.core.api.Assertions.assertThat;
25
26 import java.util.HashMap;
27 import java.util.Map;
28 import org.junit.Test;
29 import org.onap.policy.common.parameters.ValidationResult;
30 import org.onap.policy.distribution.forwarding.parameters.PolicyForwarderParameters;
31
32 /**
33  * Class for unit testing PluginHandlerParameters class.
34  *
35  * @author Adheli Tavares (adheli.tavares@est.tech)
36  *
37  */
38 public class TestPluginHandlerParameters {
39
40     @Test
41     public void testValidate_PolicyDecodersEmpty() {
42         PluginHandlerParameters emptyDecoder = new PluginHandlerParameters(new HashMap<>(), getPolicyForwarders());
43
44         ValidationResult result = emptyDecoder.validate();
45
46         assertThat(result.getResult()).contains("\"policyDecoders\"", "minimum").doesNotContain("\"policyForwarders\"");
47     }
48
49     @Test
50     public void testValidate_PolicyForwardersNullEmpty() {
51         PluginHandlerParameters emptyDecoder = new PluginHandlerParameters(getPolicyDecoders(), new HashMap<>());
52
53         ValidationResult result = emptyDecoder.validate();
54
55         assertThat(result.getResult()).contains("\"policyForwarders\"", "minimum").doesNotContain("\"policyDecoders\"");
56     }
57
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);
63
64         return policyDecoders;
65     }
66
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);
72
73         return policyForwarders;
74     }
75
76 }