0b03704e624499862e1efa992e2694aa4147d179
[policy/models.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP
4  * ================================================================================
5  * Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
6  * Modifications Copyright (C) 2024 Nordix Foundation
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.policy.controlloop.actor.aai;
23
24 import static org.junit.jupiter.api.Assertions.assertEquals;
25
26 import java.util.Map;
27 import org.onap.policy.common.endpoints.event.comm.bus.internal.BusTopicParams;
28 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
29 import org.onap.policy.common.endpoints.http.server.HttpServletServerFactoryInstance;
30 import org.onap.policy.controlloop.actor.test.BasicHttpOperation;
31 import org.onap.policy.simulators.Util;
32
33 /**
34  * Superclass for various operator tests.
35  */
36 public abstract class BasicAaiOperation extends BasicHttpOperation {
37
38     /**
39      * Constructs the object using a default actor and operation name.
40      */
41     public BasicAaiOperation() {
42         super();
43     }
44
45     /**
46      * Constructs the object.
47      *
48      * @param actor actor name
49      * @param operation operation name
50      */
51     public BasicAaiOperation(String actor, String operation) {
52         super(actor, operation);
53     }
54
55     /**
56      * Starts the simulator.
57      */
58     protected static void initBeforeClass() throws Exception {
59         Util.buildAaiSim();
60
61         BusTopicParams clientParams = BusTopicParams.builder().clientName(MY_CLIENT).basePath("aai/")
62                         .hostname("localhost").managed(true).port(Util.AAISIM_SERVER_PORT).build();
63         HttpClientFactoryInstance.getClientFactory().build(clientParams);
64     }
65
66     protected static void destroyAfterClass() {
67         HttpClientFactoryInstance.getClientFactory().destroy();
68         HttpServletServerFactoryInstance.getServerFactory().destroy();
69     }
70
71     protected void verifyHeaders(Map<String, Object> headers) {
72         assertEquals("POLICY", headers.get("X-FromAppId").toString());
73         assertEquals(params.getRequestId().toString(), headers.get("X-TransactionId"));
74         assertEquals("application/json", headers.get("Accept").toString());
75     }
76 }