Change payload to Map<String,Object> so it's more versatile
[policy/models.git] / models-interactions / model-actors / actor.appc / src / test / java / org / onap / policy / controlloop / actor / appc / BasicAppcOperation.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.appc;
22
23 import static org.assertj.core.api.Assertions.assertThatIllegalArgumentException;
24 import static org.junit.Assert.assertEquals;
25 import static org.junit.Assert.assertFalse;
26 import static org.junit.Assert.assertTrue;
27 import static org.mockito.ArgumentMatchers.any;
28 import static org.mockito.Mockito.verify;
29
30 import java.util.Map;
31 import java.util.concurrent.CompletableFuture;
32 import java.util.concurrent.ExecutionException;
33 import java.util.concurrent.TimeoutException;
34 import java.util.function.BiConsumer;
35 import org.onap.policy.appc.Response;
36 import org.onap.policy.appc.ResponseCode;
37 import org.onap.policy.appc.ResponseStatus;
38 import org.onap.policy.common.utils.coder.StandardCoderObject;
39 import org.onap.policy.controlloop.actor.test.BasicBidirectionalTopicOperation;
40 import org.onap.policy.controlloop.actorserviceprovider.OperationOutcome;
41 import org.onap.policy.controlloop.actorserviceprovider.Util;
42 import org.onap.policy.controlloop.actorserviceprovider.impl.OperationMaker;
43 import org.onap.policy.controlloop.actorserviceprovider.parameters.BidirectionalTopicConfig;
44 import org.onap.policy.controlloop.policy.PolicyResult;
45 import org.onap.policy.controlloop.policy.Target;
46 import org.powermock.reflect.Whitebox;
47
48 /**
49  * Superclass for various operator tests.
50  */
51 public abstract class BasicAppcOperation extends BasicBidirectionalTopicOperation {
52     protected static final String[] IGNORE_FIELDS = {"RequestID", "subRequestID", "seconds", "nanos"};
53     protected static final String MY_DESCRIPTION = "my-description";
54     protected static final String MY_VNF = "my-vnf";
55     protected static final String KEY1 = "my-key-A";
56     protected static final String KEY2 = "my-key-B";
57     protected static final String KEY3 = "my-key-C";
58     protected static final String VALUE1 = "{\"input\":\"hello\"}";
59     protected static final String VALUE2 = "{\"output\":\"world\"}";
60     protected static final String RESOURCE_ID = "my-resource";
61
62     protected Response response;
63
64     /**
65      * Constructs the object using a default actor and operation name.
66      */
67     public BasicAppcOperation() {
68         super();
69     }
70
71     /**
72      * Constructs the object.
73      *
74      * @param actor actor name
75      * @param operation operation name
76      */
77     public BasicAppcOperation(String actor, String operation) {
78         super(actor, operation);
79     }
80
81     /**
82      * Initializes mocks and sets up.
83      */
84     public void setUp() throws Exception {
85         super.setUpBasic();
86
87         response = new Response();
88
89         ResponseStatus status = new ResponseStatus();
90         response.setStatus(status);
91         status.setCode(ResponseCode.SUCCESS.getValue());
92         status.setDescription(MY_DESCRIPTION);
93     }
94
95     /**
96      * Runs the operation and verifies that the response is successful.
97      *
98      * @param operation operation to run
99      */
100     protected void verifyOperation(AppcOperation operation)
101                     throws InterruptedException, ExecutionException, TimeoutException {
102
103         CompletableFuture<OperationOutcome> future2 = operation.start();
104         executor.runAll(100);
105         assertFalse(future2.isDone());
106
107         verify(forwarder).register(any(), listenerCaptor.capture());
108         provideResponse(listenerCaptor.getValue(), ResponseCode.SUCCESS.getValue(), MY_DESCRIPTION);
109
110         executor.runAll(100);
111         assertTrue(future2.isDone());
112
113         outcome = future2.get();
114         assertEquals(PolicyResult.SUCCESS, outcome.getResult());
115         assertEquals(MY_DESCRIPTION, outcome.getMessage());
116     }
117
118     /**
119      * Verifies that an exception is thrown if a field is missing from the enrichment
120      * data.
121      *
122      * @param fieldName name of the field to be removed from the enrichment data
123      * @param expectedText text expected in the exception message
124      */
125     protected void verifyMissing(String fieldName, String expectedText,
126                     OperationMaker<BidirectionalTopicConfig, AppcOperation> maker) {
127
128         makeContext();
129         enrichment.remove(fieldName);
130
131         AppcOperation oper = maker.apply(params, config);
132
133         assertThatIllegalArgumentException().isThrownBy(() -> Whitebox.invokeMethod(oper, "makeRequest", 1))
134                         .withMessageContaining("missing").withMessageContaining(expectedText);
135     }
136
137     @Override
138     protected void makeContext() {
139         super.makeContext();
140
141         Target target = new Target();
142         target.setResourceID(RESOURCE_ID);
143
144         params = params.toBuilder().target(target).build();
145     }
146
147     /**
148      * Provides a response to the listener.
149      *
150      * @param listener listener to which to provide the response
151      * @param code response code
152      * @param description response description
153      */
154     protected void provideResponse(BiConsumer<String, StandardCoderObject> listener, int code, String description) {
155         Response response = new Response();
156
157         ResponseStatus status = new ResponseStatus();
158         response.setStatus(status);
159         status.setCode(code);
160         status.setDescription(description);
161
162         provideResponse(listener, Util.translate("", response, String.class));
163     }
164
165     @Override
166     protected Map<String, Object> makePayload() {
167         return Map.of(KEY1, VALUE1, KEY2, VALUE2);
168     }
169 }