Change payload to Map<String,Object> so it's more versatile
[policy/models.git] / models-interactions / model-actors / actor.so / src / test / java / org / onap / policy / controlloop / actor / so / SoActorParamsTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 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.so;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.junit.Assert.assertFalse;
25 import static org.junit.Assert.assertTrue;
26
27 import java.util.Map;
28 import java.util.TreeMap;
29 import java.util.function.Consumer;
30 import org.junit.Before;
31 import org.junit.Test;
32 import org.onap.policy.common.parameters.ValidationResult;
33 import org.onap.policy.controlloop.actorserviceprovider.Util;
34 import org.onap.policy.controlloop.actorserviceprovider.parameters.CommonActorParams;
35
36
37 public class SoActorParamsTest {
38     private static final String CONTAINER = "my-container";
39     private static final String CLIENT = "my-client";
40     private static final String PATH_GET = "my-path-get";
41     private static final int MAX_GETS = 3;
42     private static final int WAIT_SEC_GETS = 20;
43     private static final int TIMEOUT = 10;
44
45     private static final String PATH1 = "path #1";
46     private static final String PATH2 = "path #2";
47     private static final String URI1 = "uri #1";
48     private static final String URI2 = "uri #2";
49
50     private Map<String, Map<String, Object>> operations;
51     private SoActorParams params;
52
53     /**
54      * Initializes {@link #operations} with two items and {@link params} with a fully
55      * populated object.
56      */
57     @Before
58     public void setUp() {
59         operations = new TreeMap<>();
60         operations.put(PATH1, Map.of("path", URI1));
61         operations.put(PATH2, Map.of("path", URI2));
62
63         params = makeSoActorParams();
64     }
65
66     @Test
67     public void testValidate() {
68         assertTrue(params.validate(CONTAINER).isValid());
69
70         // only a few fields are required
71         SoActorParams sparse = Util.translate(CONTAINER, Map.of(CommonActorParams.OPERATIONS_FIELD, operations),
72                         SoActorParams.class);
73         assertTrue(sparse.validate(CONTAINER).isValid());
74
75         testValidateField("maxGets", "minimum", params2 -> params2.setMaxGets(-1));
76         testValidateField("waitSecGet", "minimum", params2 -> params2.setWaitSecGet(0));
77
78         // check fields from superclass
79         testValidateField(CommonActorParams.OPERATIONS_FIELD, "null", params2 -> params2.setOperations(null));
80         testValidateField("timeoutSec", "minimum", params2 -> params2.setTimeoutSec(-1));
81
82         // check edge cases
83         params.setMaxGets(0);
84         assertTrue(params.validate(CONTAINER).isValid());
85         params.setMaxGets(MAX_GETS);
86
87         params.setWaitSecGet(1);
88         assertTrue(params.validate(CONTAINER).isValid());
89         params.setWaitSecGet(WAIT_SEC_GETS);
90     }
91
92     private void testValidateField(String fieldName, String expected, Consumer<SoActorParams> makeInvalid) {
93
94         // original params should be valid
95         ValidationResult result = params.validate(CONTAINER);
96         assertTrue(fieldName, result.isValid());
97
98         // make invalid params
99         SoActorParams params2 = makeSoActorParams();
100         makeInvalid.accept(params2);
101         result = params2.validate(CONTAINER);
102         assertFalse(fieldName, result.isValid());
103         assertThat(result.getResult()).contains(CONTAINER).contains(fieldName).contains(expected);
104     }
105
106     private SoActorParams makeSoActorParams() {
107         SoActorParams params2 = new SoActorParams();
108         params2.setClientName(CLIENT);
109         params2.setTimeoutSec(TIMEOUT);
110         params2.setOperations(operations);
111
112         params2.setWaitSecGet(WAIT_SEC_GETS);
113         params2.setMaxGets(MAX_GETS);
114         params2.setPathGet(PATH_GET);
115
116         return params2;
117     }
118 }