1f481ae0fe59667f0f3530d903f2c85468dabcbf
[policy/models.git] / models-interactions / model-actors / actor.aai / src / test / java / org / onap / policy / controlloop / actor / aai / BasicAaiOperation.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.aai;
22
23 import static org.junit.Assert.assertEquals;
24
25 import java.util.Map;
26 import org.onap.policy.common.endpoints.event.comm.bus.internal.BusTopicParams;
27 import org.onap.policy.common.endpoints.http.client.HttpClientFactoryInstance;
28 import org.onap.policy.common.endpoints.http.server.HttpServletServerFactoryInstance;
29 import org.onap.policy.controlloop.actor.test.BasicHttpOperation;
30 import org.onap.policy.simulators.Util;
31
32 /**
33  * Superclass for various operator tests.
34  */
35 public abstract class BasicAaiOperation extends BasicHttpOperation {
36
37     /**
38      * Constructs the object using a default actor and operation name.
39      */
40     public BasicAaiOperation() {
41         super();
42     }
43
44     /**
45      * Constructs the object.
46      *
47      * @param actor actor name
48      * @param operation operation name
49      */
50     public BasicAaiOperation(String actor, String operation) {
51         super(actor, operation);
52     }
53
54     /**
55      * Starts the simulator.
56      */
57     protected static void initBeforeClass() throws Exception {
58         Util.buildAaiSim();
59
60         BusTopicParams clientParams = BusTopicParams.builder().clientName(MY_CLIENT).basePath("aai/")
61                         .hostname("localhost").managed(true).port(Util.AAISIM_SERVER_PORT).build();
62         HttpClientFactoryInstance.getClientFactory().build(clientParams);
63     }
64
65     protected static void destroyAfterClass() {
66         HttpClientFactoryInstance.getClientFactory().destroy();
67         HttpServletServerFactoryInstance.getServerFactory().destroy();
68     }
69
70     protected void verifyHeaders(Map<String, Object> headers) {
71         assertEquals("POLICY", headers.get("X-FromAppId").toString());
72         assertEquals(params.getRequestId().toString(), headers.get("X-TransactionId"));
73     }
74 }