9014e333247883b4c7cb5900ec5e2e1fd4c8569a
[policy/models.git] / models-interactions / model-actors / actor.vfc / src / test / java / org / onap / policy / controlloop / actor / vfc / BasicVfcOperation.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.vfc;
22
23 import static org.mockito.Mockito.when;
24
25 import org.mockito.Mock;
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.controlloop.actorserviceprovider.parameters.HttpPollingConfig;
31 import org.onap.policy.simulators.Util;
32 import org.onap.policy.vfc.VfcResponse;
33
34 public abstract class BasicVfcOperation extends BasicHttpOperation {
35     public static final String POLL_PATH = "my-path-get/";
36     public static final int MAX_POLLS = 3;
37     public static final int POLL_WAIT_SEC = 20;
38
39     @Mock
40     protected HttpPollingConfig config;
41
42     protected VfcResponse response;
43
44     /**
45      * Constructs the object using a default actor and operation name.
46      */
47     public BasicVfcOperation() {
48         super();
49     }
50
51     /**
52      * Constructs the object.
53      *
54      * @param actor actor name
55      * @param operation operation name
56      */
57     public BasicVfcOperation(String actor, String operation) {
58         super(actor, operation);
59     }
60
61     /**
62      * Starts the simulator.
63      */
64     protected static void initBeforeClass() throws Exception {
65         Util.buildVfcSim();
66
67         BusTopicParams clientParams = BusTopicParams.builder().clientName(MY_CLIENT).basePath("api/nslcm/v1/")
68                         .hostname("localhost").managed(true).port(Util.VFCSIM_SERVER_PORT).build();
69         HttpClientFactoryInstance.getClientFactory().build(clientParams);
70     }
71
72     protected static void destroyAfterClass() {
73         HttpClientFactoryInstance.getClientFactory().destroy();
74         HttpServletServerFactoryInstance.getServerFactory().destroy();
75     }
76
77     /**
78      * Initializes mocks and sets up.
79      */
80     public void setUp() throws Exception {
81         super.setUpBasic();
82
83         response = new VfcResponse();
84
85         // PLD
86
87         when(rawResponse.getStatus()).thenReturn(200);
88         when(rawResponse.readEntity(String.class)).thenReturn(coder.encode(response));
89
90         initConfig();
91     }
92
93     @Override
94     protected void initConfig() {
95         super.initConfig();
96         when(config.getClient()).thenReturn(client);
97         when(config.getMaxPolls()).thenReturn(MAX_POLLS);
98         when(config.getPollPath()).thenReturn(POLL_PATH);
99         when(config.getPollWaitSec()).thenReturn(POLL_WAIT_SEC);
100     }
101
102 }