2 * ============LICENSE_START=======================================================
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
12 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
22 package org.onap.policy.controlloop.actor.aai;
24 import static org.junit.jupiter.api.Assertions.assertEquals;
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;
34 * Superclass for various operator tests.
36 public abstract class BasicAaiOperation extends BasicHttpOperation {
39 * Constructs the object using a default actor and operation name.
41 public BasicAaiOperation() {
46 * Constructs the object.
48 * @param actor actor name
49 * @param operation operation name
51 public BasicAaiOperation(String actor, String operation) {
52 super(actor, operation);
56 * Starts the simulator.
58 protected static void initBeforeClass() throws Exception {
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);
66 protected static void destroyAfterClass() {
67 HttpClientFactoryInstance.getClientFactory().destroy();
68 HttpServletServerFactoryInstance.getServerFactory().destroy();
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());