Remove unused imports in models
[policy/models.git] / models-interactions / model-actors / actor.xacml / src / test / java / org / onap / policy / controlloop / actor / xacml / DecisionParamsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.policy.controlloop.actor.xacml;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertTrue;
27
28 import java.util.function.Function;
29 import org.junit.Before;
30 import org.junit.Test;
31 import org.onap.policy.common.parameters.ValidationResult;
32 import org.onap.policy.controlloop.actor.xacml.DecisionParams.DecisionParamsBuilder;
33 import org.onap.policy.controlloop.actorserviceprovider.parameters.HttpParams.HttpParamsBuilder;
34
35 public class DecisionParamsTest {
36     private static final String CONTAINER = "my-container";
37     private static final String CLIENT = "my-client";
38     private static final String PATH = "my-path";
39     private static final int TIMEOUT = 10;
40     private static final String ONAP_NAME = "onap-nap";
41     private static final String ONAP_COMP = "onap-component";
42     private static final String ONAP_INST = "onap-instance";
43     private static final String MY_ACTION = "my-action";
44
45     private DecisionParams params;
46
47     @Before
48     public void setUp() {
49         params = DecisionParams.builder().onapName(ONAP_NAME).onapComponent(ONAP_COMP).onapInstance(ONAP_INST)
50                         .action(MY_ACTION).clientName(CLIENT).path(PATH).timeoutSec(TIMEOUT).build();
51     }
52
53     @Test
54     public void testIsDisabled() {
55         // disabled by default
56         assertFalse(params.isDisabled());
57     }
58
59     @Test
60     public void testValidate() {
61         assertTrue(params.validate(CONTAINER).isValid());
62
63         testValidateField("onapName", "null", bldr -> bldr.onapName(null));
64         testValidateField("onapComponent", "null", bldr -> bldr.onapComponent(null));
65         testValidateField("onapInstance", "null", bldr -> bldr.onapInstance(null));
66         testValidateField("action", "null", bldr -> bldr.action(null));
67
68         // validate one of the superclass fields
69         testValidateField("clientName", "null", bldr -> bldr.clientName(null));
70     }
71
72     @Test
73     public void testBuilder_testToBuilder() {
74         assertEquals(CLIENT, params.getClientName());
75
76         assertEquals(ONAP_NAME, params.getOnapName());
77         assertEquals(ONAP_COMP, params.getOnapComponent());
78         assertEquals(ONAP_INST, params.getOnapInstance());
79         assertEquals(MY_ACTION, params.getAction());
80
81         assertEquals(params, params.toBuilder().build());
82     }
83
84     private void testValidateField(String fieldName, String expected,
85                     @SuppressWarnings("rawtypes") Function<DecisionParamsBuilder, HttpParamsBuilder> makeInvalid) {
86
87         // original params should be valid
88         ValidationResult result = params.validate(CONTAINER);
89         assertTrue(fieldName, result.isValid());
90
91         // make invalid params
92         result = makeInvalid.apply(params.toBuilder()).build().validate(CONTAINER);
93         assertFalse(fieldName, result.isValid());
94         assertThat(result.getResult()).contains(fieldName).contains(expected);
95     }
96 }