summaryrefslogtreecommitdiffstats
path: root/so-cnfm/so-cnfm-lcm/so-cnfm-lcm-bpmn-flows/src/test/java/org/onap/so/cnfm/lcm/bpmn/flows/tasks/TerminateAsTaskTest.java
blob: 4f8961700087ced5fe51eb75aa2db47528f0ebf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
/*-
 * ============LICENSE_START=======================================================
 *  Copyright (C) 2023 Nordix Foundation.
 * ================================================================================
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 *
 * SPDX-License-Identifier: Apache-2.0
 * ============LICENSE_END=========================================================
 */

package org.onap.so.cnfm.lcm.bpmn.flows.tasks;

import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
import static com.github.tomakehurst.wiremock.client.WireMock.get;
import static com.github.tomakehurst.wiremock.client.WireMock.ok;
import static com.github.tomakehurst.wiremock.client.WireMock.post;
import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.assertTrue;
import static org.onap.aaiclient.client.aai.AAIVersion.V19;
import static org.springframework.http.HttpHeaders.CONTENT_TYPE;
import static org.springframework.http.MediaType.APPLICATION_JSON_VALUE;

import com.google.gson.Gson;
import io.kubernetes.client.openapi.models.V1DaemonSetList;
import io.kubernetes.client.openapi.models.V1DeploymentList;
import io.kubernetes.client.openapi.models.V1JobList;
import io.kubernetes.client.openapi.models.V1PodList;
import io.kubernetes.client.openapi.models.V1ReplicaSetList;
import io.kubernetes.client.openapi.models.V1ServiceList;
import io.kubernetes.client.openapi.models.V1StatefulSetList;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.time.LocalDateTime;
import java.util.Map;
import java.util.Optional;
import java.util.UUID;
import org.camunda.bpm.engine.history.HistoricProcessInstance;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import org.onap.aai.domain.yang.GenericVnf;
import org.onap.so.beans.nsmf.OrchestrationStatusEnum;
import org.onap.so.cnfm.lcm.bpmn.flows.BaseTest;
import org.onap.so.cnfm.lcm.bpmn.flows.GsonProvider;
import org.onap.so.cnfm.lcm.bpmn.flows.service.JobExecutorService;
import org.onap.so.cnfm.lcm.database.beans.AsDeploymentItem;
import org.onap.so.cnfm.lcm.database.beans.AsInst;
import org.onap.so.cnfm.lcm.database.beans.AsLcmOpOcc;
import org.onap.so.cnfm.lcm.database.beans.Job;
import org.onap.so.cnfm.lcm.database.beans.OperationStateEnum;
import org.onap.so.cnfm.lcm.database.beans.State;
import org.onap.so.cnfm.lcm.model.TerminateAsRequest;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;

/**
 *
 * @author Waqas Ikram (waqas.ikram@est.tech)
 *
 */
public class TerminateAsTaskTest extends BaseTest {

    private static final String NAMESPACE_VALUE = "default";
    private static final String AS_INST_ID = UUID.randomUUID().toString();
    private static final String AS_DEPLOYMENT_ITEM_ONE_INST_ID = UUID.randomUUID().toString();
    private static final String AS_DEPLOYMENT_ITEM_TWO_INST_ID = UUID.randomUUID().toString();

    @Value("${cnfm.kube-configs-dir}")
    private String kubeConfigsDir;

    @Autowired
    private JobExecutorService objUnderTest;

    @Autowired
    private MockedHelmClient mockedHelmClient;

    @Autowired
    private MockedKubernetesClientProvider kubernetesClientProvider;

    @Autowired
    private GsonProvider gsonProvider;

    private Gson gson;

    @Before
    public void before() {

        wireMockServer.resetAll();
        try {
            deleteFoldersAndFiles(Paths.get(kubeConfigsDir));
            Files.createDirectory(Paths.get(kubeConfigsDir));
        } catch (final IOException ioException) {
            throw new RuntimeException(
                    "Failed to create/Delete Directory in TerminateAsTaskTest due to: " + ioException.getMessage());
        }
        kubernetesClientProvider.setWireMockServer(wireMockServer);

        gson = gsonProvider.getGson();
    }

    @After
    public void after() {
        wireMockServer.resetAll();
    }

    @Test
    public void testTerminateAsTask_SuccessfulCase() throws InterruptedException, IOException {

        mockKubernetesClientEndpoint();
        mockAAIEndPoints();
        addDummyAsToDatabase(AS_INST_ID);

        final String asLcmOpOccId = objUnderTest.runTerminateAsJob(AS_INST_ID, new TerminateAsRequest());

        final Optional<Job> optional = getJobByResourceId(AS_INST_ID);
        assertTrue(optional.isPresent());
        final Job job = optional.get();
        assertTrue(waitForProcessInstanceToFinish(job.getProcessInstanceId()));

        final HistoricProcessInstance historicProcessInstance = getHistoricProcessInstance(job.getProcessInstanceId());
        assertNotNull(historicProcessInstance);
        assertEquals(HistoricProcessInstance.STATE_COMPLETED, historicProcessInstance.getState());

        final Optional<AsInst> optionalAsInst = databaseServiceProvider.getAsInst(AS_INST_ID);
        assertTrue(optionalAsInst.isPresent());
        final AsInst updatedAsInst = optionalAsInst.get();
        assertEquals(State.NOT_INSTANTIATED, updatedAsInst.getStatus());

        final Optional<AsLcmOpOcc> optionalAsLcmOpOcc = databaseServiceProvider.getAsLcmOpOcc(asLcmOpOccId);
        assertTrue(optionalAsLcmOpOcc.isPresent());
        final AsLcmOpOcc asLcmOpOcc = optionalAsLcmOpOcc.get();
        assertEquals(OperationStateEnum.COMPLETED, asLcmOpOcc.getOperationState());

        final Map<String, Integer> counter = mockedHelmClient.getUnInstallCounter();
        assertEquals(2, counter.size());
    }

    private void addDummyAsToDatabase(final String asInstanceId) throws IOException {
        final String asInstName = "TerminateCnfService-" + System.currentTimeMillis();
        final AsInst asInst = new AsInst().asInstId(asInstanceId).name(asInstName).asdId(asInstanceId)
                .asdInvariantId(asInstanceId).status(State.INSTANTIATED).statusUpdatedTime(LocalDateTime.now())
                .asApplicationName("asApplicationName").asApplicationVersion("asApplicationVersion")
                .asProvider("asProvider").serviceInstanceId(SERVICE_INSTANCE_ID)
                .serviceInstanceName(SERVICE_INSTANCE_NAME).cloudOwner("cloudOwner").cloudRegion("cloudRegion")
                .tenantId("tenantId").namespace(NAMESPACE_VALUE);

        final String helmFile1 = "Artifacts/Deployment/HELM/sampleapp-db-operator-helm.tgz";
        final AsDeploymentItem dItemOne = new AsDeploymentItem().asDeploymentItemInstId(AS_DEPLOYMENT_ITEM_ONE_INST_ID)
                .asInst(asInst).status(State.INSTANTIATED).name("sampleapp-db").itemId("1").deploymentOrder(1)
                .artifactFilePath(helmFile1).createTime(LocalDateTime.now()).lastUpdateTime(LocalDateTime.now())
                .releaseName("testOne");

        final String helmFile2 = "Artifacts/Deployment/HELM/sampleapp-services-helm.tgz";
        final AsDeploymentItem dItemTwo = new AsDeploymentItem().asDeploymentItemInstId(AS_DEPLOYMENT_ITEM_TWO_INST_ID)
                .asInst(asInst).status(State.INSTANTIATED).name("sampleapp-services").itemId("2").deploymentOrder(2)
                .artifactFilePath(helmFile2).createTime(LocalDateTime.now()).lastUpdateTime(LocalDateTime.now())
                .releaseName("testTwo");

        asInst.asdeploymentItems(dItemOne);
        asInst.asdeploymentItems(dItemTwo);
        databaseServiceProvider.saveAsInst(asInst);
        createKubeConfigFile(asInst);
    }

    private void mockKubernetesClientEndpoint() {

        wireMockServer.stubFor(
                get(urlMatching("/apis/batch/v1/namespaces/" + NAMESPACE_VALUE + "/jobs\\?labelSelector.*&watch=false"))
                        .willReturn(
                                aResponse().withBody(getJobList()).withHeader(CONTENT_TYPE, APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(
                get(urlMatching("/api/v1/namespaces/" + NAMESPACE_VALUE + "/pods\\?labelSelector.*&watch=false"))
                        .willReturn(
                                aResponse().withBody(getPodList()).withHeader(CONTENT_TYPE, APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(
                get(urlMatching("/api/v1/namespaces/" + NAMESPACE_VALUE + "/services\\?labelSelector.*&watch=false"))
                        .willReturn(aResponse().withBody(getServiceList()).withHeader(CONTENT_TYPE,
                                APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(get(urlMatching(
                "/apis/apps/v1/namespaces/" + NAMESPACE_VALUE + "/deployments\\?labelSelector.*&watch=false"))
                        .willReturn(aResponse().withBody(getDeploymentList()).withHeader(CONTENT_TYPE,
                                APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(get(urlMatching(
                "/apis/apps/v1/namespaces/" + NAMESPACE_VALUE + "/daemonsets\\?labelSelector.*&watch=false"))
                        .willReturn(aResponse().withBody(getDaemonList()).withHeader(CONTENT_TYPE,
                                APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(get(urlMatching(
                "/apis/apps/v1/namespaces/" + NAMESPACE_VALUE + "/replicasets\\?labelSelector.*&watch=false"))
                        .willReturn(aResponse().withBody(getReplicaSetList()).withHeader(CONTENT_TYPE,
                                APPLICATION_JSON_VALUE)));

        wireMockServer.stubFor(get(urlMatching(
                "/apis/apps/v1/namespaces/" + NAMESPACE_VALUE + "/statefulsets\\?labelSelector.*&watch=false"))
                        .willReturn(aResponse().withBody(getStatefulSetList()).withHeader(CONTENT_TYPE,
                                APPLICATION_JSON_VALUE)));
    }

    private void mockAAIEndPoints() {

        final String vnfEndPoint = "/aai/" + V19 + "/network/generic-vnfs/generic-vnf/" + AS_INST_ID;

        wireMockServer.stubFor(get(urlMatching(vnfEndPoint)).willReturn(
                aResponse().withBody(gson.toJson(getGenericVnf())).withHeader(CONTENT_TYPE, APPLICATION_JSON_VALUE)));
        wireMockServer.stubFor(post(urlMatching(vnfEndPoint)).willReturn(ok()));
    }

    private String getServiceList() {
        final V1ServiceList v1SeviceList = new V1ServiceList();
        v1SeviceList.setApiVersion("v1");
        v1SeviceList.setKind("ServiceList");
        return gson.toJson(v1SeviceList);
    }

    private String getPodList() {
        final V1PodList v1PodList = new V1PodList();
        v1PodList.setApiVersion("v1");
        v1PodList.setKind("PodList");
        return gson.toJson(v1PodList);
    }

    private String getJobList() {
        final V1JobList v1JobList = new V1JobList();
        v1JobList.setApiVersion("v1");
        v1JobList.setKind("JobList");
        return gson.toJson(v1JobList);
    }

    private String getDeploymentList() {
        final V1DeploymentList v1DeploymentList = new V1DeploymentList();
        v1DeploymentList.setApiVersion("v1");
        v1DeploymentList.setKind("DeploymentList");
        return gson.toJson(v1DeploymentList);
    }

    private String getDaemonList() {
        final V1DaemonSetList v1DaemonSetList = new V1DaemonSetList();
        v1DaemonSetList.setApiVersion("v1");
        v1DaemonSetList.setKind("DeploymentList");
        return gson.toJson(v1DaemonSetList);
    }

    private String getStatefulSetList() {
        final V1StatefulSetList v1StatefulSetList = new V1StatefulSetList();
        v1StatefulSetList.setApiVersion("v1");
        v1StatefulSetList.setKind("DeploymentList");
        return gson.toJson(v1StatefulSetList);
    }

    private String getReplicaSetList() {
        final V1ReplicaSetList v1ReplicaSetList = new V1ReplicaSetList();
        v1ReplicaSetList.setApiVersion("v1");
        v1ReplicaSetList.setKind("DeploymentList");
        return gson.toJson(v1ReplicaSetList);
    }

    private GenericVnf getGenericVnf() {
        final GenericVnf vnf = new GenericVnf();
        vnf.setVnfId(AS_INST_ID);
        vnf.setOrchestrationStatus(OrchestrationStatusEnum.ACTIVATED.getValue());
        vnf.setResourceVersion("12345");
        return vnf;
    }

}