Added support for using oauth token for Kafka
[nonrtric/plt/ranpm.git] / pmproducer / src / test / java / org / oran / pmproducer / ApplicationTest.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2023 Nordix Foundation
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.oran.pmproducer;
22
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.awaitility.Awaitility.await;
25 import static org.junit.jupiter.api.Assertions.assertTrue;
26 import static org.mockito.ArgumentMatchers.any;
27 import static org.mockito.Mockito.doReturn;
28 import static org.mockito.Mockito.spy;
29 import static org.mockito.Mockito.times;
30 import static org.mockito.Mockito.verify;
31 import static org.mockito.Mockito.when;
32
33 import com.google.gson.JsonParser;
34
35 import java.io.FileOutputStream;
36 import java.io.IOException;
37 import java.io.PrintStream;
38 import java.lang.invoke.MethodHandles;
39 import java.nio.file.Files;
40 import java.nio.file.Path;
41 import java.nio.file.Paths;
42 import java.time.Duration;
43 import java.time.OffsetDateTime;
44 import java.util.List;
45
46 import org.apache.kafka.clients.consumer.ConsumerRecord;
47 import org.json.JSONObject;
48 import org.junit.jupiter.api.AfterEach;
49 import org.junit.jupiter.api.BeforeEach;
50 import org.junit.jupiter.api.MethodOrderer;
51 import org.junit.jupiter.api.Test;
52 import org.junit.jupiter.api.TestMethodOrder;
53 import org.mockito.ArgumentCaptor;
54 import org.oran.pmproducer.clients.AsyncRestClient;
55 import org.oran.pmproducer.clients.AsyncRestClientFactory;
56 import org.oran.pmproducer.configuration.ApplicationConfig;
57 import org.oran.pmproducer.configuration.WebClientConfig;
58 import org.oran.pmproducer.configuration.WebClientConfig.HttpProxyConfig;
59 import org.oran.pmproducer.controllers.ProducerCallbacksController;
60 import org.oran.pmproducer.datastore.DataStore;
61 import org.oran.pmproducer.datastore.DataStore.Bucket;
62 import org.oran.pmproducer.filter.FilteredData;
63 import org.oran.pmproducer.filter.PmReport;
64 import org.oran.pmproducer.filter.PmReportFilter;
65 import org.oran.pmproducer.filter.PmReportFilter.FilterData;
66 import org.oran.pmproducer.oauth2.SecurityContext;
67 import org.oran.pmproducer.r1.ConsumerJobInfo;
68 import org.oran.pmproducer.r1.ProducerJobInfo;
69 import org.oran.pmproducer.repository.InfoType;
70 import org.oran.pmproducer.repository.InfoTypes;
71 import org.oran.pmproducer.repository.Job;
72 import org.oran.pmproducer.repository.Job.Parameters;
73 import org.oran.pmproducer.repository.Job.Parameters.KafkaDeliveryInfo;
74 import org.oran.pmproducer.repository.Jobs;
75 import org.oran.pmproducer.repository.Jobs.JobGroup;
76 import org.oran.pmproducer.tasks.JobDataDistributor;
77 import org.oran.pmproducer.tasks.NewFileEvent;
78 import org.oran.pmproducer.tasks.ProducerRegstrationTask;
79 import org.oran.pmproducer.tasks.TopicListener;
80 import org.oran.pmproducer.tasks.TopicListeners;
81 import org.slf4j.Logger;
82 import org.slf4j.LoggerFactory;
83 import org.springframework.beans.factory.annotation.Autowired;
84 import org.springframework.boot.test.context.SpringBootTest;
85 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
86 import org.springframework.boot.test.context.TestConfiguration;
87 import org.springframework.boot.test.web.server.LocalServerPort;
88 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
89 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
90 import org.springframework.context.annotation.Bean;
91 import org.springframework.http.HttpStatus;
92 import org.springframework.http.MediaType;
93 import org.springframework.http.ResponseEntity;
94 import org.springframework.test.context.TestPropertySource;
95 import org.springframework.web.reactive.function.client.WebClientRequestException;
96 import org.springframework.web.reactive.function.client.WebClientResponseException;
97
98 import reactor.core.publisher.Flux;
99 import reactor.core.publisher.Mono;
100 import reactor.test.StepVerifier;
101
102 @TestMethodOrder(MethodOrderer.MethodName.class)
103 @SpringBootTest(webEnvironment = WebEnvironment.RANDOM_PORT)
104 @TestPropertySource(properties = { //
105         "server.ssl.key-store=./config/keystore.jks", //
106         "app.webclient.trust-store=./config/truststore.jks", //
107         "app.webclient.trust-store-used=true", //
108         "app.configuration-filepath=./src/test/resources/test_application_configuration.json", //
109         "app.pm-files-path=/tmp/dmaapadaptor", //
110         "app.s3.endpointOverride=" //
111 })
112 class ApplicationTest {
113
114     @Autowired
115     private ApplicationConfig applicationConfig;
116
117     @Autowired
118     private Jobs jobs;
119
120     @Autowired
121     private InfoTypes types;
122
123     @Autowired
124     private IcsSimulatorController icsSimulatorController;
125
126     @Autowired
127     TopicListeners topicListeners;
128
129     @Autowired
130     ProducerRegstrationTask producerRegistrationTask;
131
132     @Autowired
133     private SecurityContext securityContext;
134
135     private com.google.gson.Gson gson = new com.google.gson.GsonBuilder().disableHtmlEscaping().create();
136
137     @LocalServerPort
138     int localServerHttpPort;
139
140     private final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
141
142     static class TestApplicationConfig extends ApplicationConfig {
143
144         @Override
145         public String getIcsBaseUrl() {
146             return thisProcessUrl();
147         }
148
149         @Override
150         public String getSelfUrl() {
151             return thisProcessUrl();
152         }
153
154         private String thisProcessUrl() {
155             final String url = "https://localhost:" + getLocalServerHttpPort();
156             return url;
157         }
158     }
159
160     /**
161      * Overrides the BeanFactory.
162      */
163     @TestConfiguration
164     static class TestBeanFactory extends BeanFactory {
165
166         @Override
167         @Bean
168         public ServletWebServerFactory servletContainer() {
169             return new TomcatServletWebServerFactory();
170         }
171
172         // @Override
173         @Bean
174         public ApplicationConfig getApplicationConfig() {
175             TestApplicationConfig cfg = new TestApplicationConfig();
176             return cfg;
177         }
178     }
179
180     @BeforeEach
181     public void init() {
182         this.applicationConfig.setLocalServerHttpPort(this.localServerHttpPort);
183         assertThat(this.jobs.size()).isZero();
184
185         DataStore fileStore = this.dataStore();
186         fileStore.create(DataStore.Bucket.FILES).block();
187         fileStore.create(DataStore.Bucket.LOCKS).block();
188     }
189
190     private DataStore dataStore() {
191         return DataStore.create(this.applicationConfig);
192     }
193
194     @AfterEach
195     void reset() {
196
197         for (Job job : this.jobs.getAll()) {
198             this.icsSimulatorController.deleteJob(job.getId(), restClient());
199         }
200         await().untilAsserted(() -> assertThat(this.jobs.size()).isZero());
201
202         this.icsSimulatorController.testResults.reset();
203
204         DataStore fileStore = DataStore.create(applicationConfig);
205         fileStore.deleteBucket(Bucket.FILES);
206         fileStore.deleteBucket(Bucket.LOCKS);
207
208     }
209
210     private AsyncRestClient restClient(boolean useTrustValidation) {
211         WebClientConfig config = this.applicationConfig.getWebClientConfig();
212         HttpProxyConfig httpProxyConfig = HttpProxyConfig.builder() //
213                 .httpProxyHost("") //
214                 .httpProxyPort(0) //
215                 .build();
216         config = WebClientConfig.builder() //
217                 .keyStoreType(config.getKeyStoreType()) //
218                 .keyStorePassword(config.getKeyStorePassword()) //
219                 .keyStore(config.getKeyStore()) //
220                 .keyPassword(config.getKeyPassword()) //
221                 .isTrustStoreUsed(useTrustValidation) //
222                 .trustStore(config.getTrustStore()) //
223                 .trustStorePassword(config.getTrustStorePassword()) //
224                 .httpProxyConfig(httpProxyConfig).build();
225
226         AsyncRestClientFactory restClientFactory = new AsyncRestClientFactory(config, securityContext);
227         return restClientFactory.createRestClientNoHttpProxy(baseUrl());
228     }
229
230     private AsyncRestClient restClient() {
231         return restClient(false);
232     }
233
234     private String baseUrl() {
235         return "https://localhost:" + this.applicationConfig.getLocalServerHttpPort();
236     }
237
238     private Object toJson(String json) {
239         try {
240             return JsonParser.parseString(json).getAsJsonObject();
241         } catch (Exception e) {
242             throw new NullPointerException(e.toString());
243         }
244     }
245
246     private ConsumerJobInfo consumerJobInfo(String typeId, String infoJobId, Object filter) {
247         try {
248             return new ConsumerJobInfo(typeId, filter, "owner", "");
249         } catch (Exception e) {
250             return null;
251         }
252     }
253
254     private void waitForRegistration() {
255         // Register producer, Register types
256         await().untilAsserted(() -> assertThat(icsSimulatorController.testResults.registrationInfo).isNotNull());
257         producerRegistrationTask.supervisionTask().block();
258
259         assertThat(icsSimulatorController.testResults.registrationInfo.supportedTypeIds).hasSize(this.types.size());
260         assertThat(producerRegistrationTask.isRegisteredInIcs()).isTrue();
261         assertThat(icsSimulatorController.testResults.types).hasSize(this.types.size());
262     }
263
264     @Test
265     void generateApiDoc() throws IOException {
266         String url = "https://localhost:" + applicationConfig.getLocalServerHttpPort() + "/v3/api-docs";
267         ResponseEntity<String> resp = restClient().getForEntity(url).block();
268         assertThat(resp.getStatusCode()).isEqualTo(HttpStatus.OK);
269         JSONObject jsonObj = new JSONObject(resp.getBody());
270         assertThat(jsonObj.remove("servers")).isNotNull();
271
272         String indented = (jsonObj).toString(4);
273         String docDir = "api/";
274         Files.createDirectories(Paths.get(docDir));
275         try (PrintStream out = new PrintStream(new FileOutputStream(docDir + "api.json"))) {
276             out.print(indented);
277         }
278     }
279
280     @Test
281     void testTrustValidation() throws IOException {
282         String url = "https://localhost:" + applicationConfig.getLocalServerHttpPort() + "/v3/api-docs";
283         ResponseEntity<String> resp = restClient(true).getForEntity(url).block();
284         assertThat(resp.getStatusCode()).isEqualTo(HttpStatus.OK);
285     }
286
287     @Test
288     void testResponseCodes() throws Exception {
289         String supervisionUrl = baseUrl() + ProducerCallbacksController.SUPERVISION_URL;
290         ResponseEntity<String> resp = restClient().getForEntity(supervisionUrl).block();
291         assertThat(resp.getStatusCode()).isEqualTo(HttpStatus.OK);
292
293         String jobUrl = baseUrl() + ProducerCallbacksController.JOB_URL;
294         resp = restClient().deleteForEntity(jobUrl + "/junk").block();
295         assertThat(resp.getStatusCode()).isEqualTo(HttpStatus.OK);
296
297         ProducerJobInfo info = new ProducerJobInfo(null, "id", "typeId", "owner", "lastUpdated");
298         String body = gson.toJson(info);
299         testErrorCode(restClient().post(jobUrl, body, MediaType.APPLICATION_JSON), HttpStatus.NOT_FOUND,
300                 "Could not find type");
301     }
302
303     @Test
304     void testFiltering() {
305         String path = "./src/test/resources/pm_report.json.gz";
306         DataStore fs = DataStore.create(this.applicationConfig);
307         fs.copyFileTo(Path.of(path), "pm_report.json.gz");
308
309         InfoType infoType = this.types.getAll().iterator().next();
310         TopicListener listener = spy(new TopicListener(this.applicationConfig, infoType));
311         NewFileEvent event = NewFileEvent.builder().filename("pm_report.json.gz").build();
312         ConsumerRecord<byte[], byte[]> cr = new ConsumerRecord<>("", 0, 0, new byte[0], gson.toJson(event).getBytes());
313         when(listener.receiveFromKafka(any())).thenReturn(Flux.just(cr));
314
315         KafkaDeliveryInfo deliveryInfo = KafkaDeliveryInfo.builder().topic("topic").bootStrapServers("").build();
316         JobGroup jobGroup = new JobGroup(infoType, deliveryInfo);
317         jobGroup.add(new Job("id", infoType, "owner", "lastUpdated",
318                 Parameters.builder().filter(new FilterData()).build(), this.applicationConfig));
319         JobDataDistributor distributor = spy(new JobDataDistributor(jobGroup, this.applicationConfig));
320
321         doReturn(Mono.just("")).when(distributor).sendToClient(any());
322
323         distributor.start(listener.getFlux());
324
325         {
326             ArgumentCaptor<FilteredData> captor = ArgumentCaptor.forClass(FilteredData.class);
327             verify(distributor).sendToClient(captor.capture());
328             FilteredData data = captor.getValue();
329             PmReport report = PmReportFilter.parse(new String(data.value));
330             assertThat(report.event.getCommonEventHeader().getSourceName()).isEqualTo("O-DU-1122");
331         }
332     }
333
334     @Test
335     void testFilteringHistoricalData() {
336         DataStore fileStore = DataStore.create(this.applicationConfig);
337         fileStore.copyFileTo(Path.of("./src/test/resources/pm_report.json"),
338                 "O-DU-1122/A20000626.2315+0200-2330+0200_HTTPS-6-73.json").block();
339
340         InfoType infoType = this.types.getAll().iterator().next();
341         TopicListener listener = spy(new TopicListener(this.applicationConfig, infoType));
342         Flux<ConsumerRecord<byte[], byte[]>> flux = Flux.just("") //
343                 .delayElements(Duration.ofSeconds(10)).flatMap(s -> Flux.empty());
344         when(listener.receiveFromKafka(any())).thenReturn(flux);
345
346         PmReportFilter.FilterData filterData = new PmReportFilter.FilterData();
347         filterData.getSourceNames().add("O-DU-1122");
348         filterData.setPmRopStartTime("1999-12-27T10:50:44.000-08:00");
349         filterData.setPmRopEndTime(OffsetDateTime.now().toString());
350         KafkaDeliveryInfo deliveryInfo = KafkaDeliveryInfo.builder().topic("topic").bootStrapServers("").build();
351         JobGroup jobGroup = new JobGroup(infoType, deliveryInfo);
352         Parameters params = Parameters.builder().filter(filterData).build();
353         Job job = new Job("id", infoType, "owner", "lastUpdated", params, this.applicationConfig);
354         jobGroup.add(job);
355         JobDataDistributor distributor = spy(new JobDataDistributor(jobGroup, this.applicationConfig));
356
357         doReturn(Mono.just("")).when(distributor).sendToClient(any());
358
359         distributor.start(listener.getFlux());
360
361         {
362             ArgumentCaptor<FilteredData> captor = ArgumentCaptor.forClass(FilteredData.class);
363             verify(distributor, times(2)).sendToClient(captor.capture());
364             List<FilteredData> data = captor.getAllValues();
365             assertThat(data).hasSize(2);
366             PmReport report = PmReportFilter.parse(new String(data.get(0).value));
367             assertThat(report.event.getCommonEventHeader().getSourceName()).isEqualTo("O-DU-1122");
368             assertThat(new String(data.get(1).value)).isEqualTo("{}");
369         }
370     }
371
372     @Test
373     void testCreateJob() throws Exception {
374         // Create a job
375         final String JOB_ID = "ID";
376
377         // Register producer, Register types
378         waitForRegistration();
379
380         assertThat(this.topicListeners.getTopicListeners()).hasSize(1);
381
382         // Create a job with a PM filter
383         PmReportFilter.FilterData filterData = new PmReportFilter.FilterData();
384
385         filterData.addMeasTypes("UtranCell", "succImmediateAssignProcs");
386         filterData.getMeasObjInstIds().add("UtranCell=Gbg-997");
387         filterData.getSourceNames().add("O-DU-1122");
388         filterData.getMeasuredEntityDns().add("ManagedElement=RNC-Gbg-1");
389         Job.Parameters param = Job.Parameters.builder() //
390                 .filter(filterData).deliveryInfo(KafkaDeliveryInfo.builder().bootStrapServers("").topic("").build()) //
391                 .build();
392
393         String paramJson = gson.toJson(param);
394         System.out.println(paramJson);
395         ConsumerJobInfo jobInfo = consumerJobInfo("PmDataOverKafka", "EI_PM_JOB_ID", toJson(paramJson));
396
397         this.icsSimulatorController.addJob(jobInfo, JOB_ID, restClient());
398         await().untilAsserted(() -> assertThat(this.jobs.size()).isEqualTo(1));
399
400         assertThat(this.topicListeners.getDataDistributors().keySet()).hasSize(1);
401     }
402
403     @Test
404     void testPmFilteringKafka() throws Exception {
405         // Test that the schema for kafka and pm filtering is OK.
406
407         // Create a job
408         final String JOB_ID = "ID";
409
410         // Register producer, Register types
411         waitForRegistration();
412
413         // Create a job with a PM filter
414         PmReportFilter.FilterData filterData = new PmReportFilter.FilterData();
415         filterData.addMeasTypes("ManagedElement", "succImmediateAssignProcs");
416         Job.Parameters param = Job.Parameters.builder() //
417                 .filter(filterData).deliveryInfo(KafkaDeliveryInfo.builder().bootStrapServers("").topic("").build()) //
418                 .build();
419
420         String paramJson = gson.toJson(param);
421
422         ConsumerJobInfo jobInfo = consumerJobInfo("PmDataOverKafka", "EI_PM_JOB_ID", toJson(paramJson));
423         this.icsSimulatorController.addJob(jobInfo, JOB_ID, restClient());
424         await().untilAsserted(() -> assertThat(this.jobs.size()).isEqualTo(1));
425     }
426
427     @Test
428     void testReRegister() throws Exception {
429         // Wait foir register types and producer
430         waitForRegistration();
431
432         // Clear the registration, should trigger a re-register
433         icsSimulatorController.testResults.reset();
434         producerRegistrationTask.supervisionTask().block();
435         await().untilAsserted(() -> assertThat(icsSimulatorController.testResults.registrationInfo).isNotNull());
436         assertThat(icsSimulatorController.testResults.registrationInfo.supportedTypeIds).hasSize(this.types.size());
437
438         // Just clear the registerred types, should trigger a re-register
439         icsSimulatorController.testResults.types.clear();
440         await().untilAsserted(() -> assertThat(icsSimulatorController.testResults.registrationInfo.supportedTypeIds)
441                 .hasSize(this.types.size()));
442     }
443
444     @Test
445     @SuppressWarnings("squid:S2925") // "Thread.sleep" should not be used in tests.
446     void testZZActuator() throws Exception {
447         // The test must be run last, hence the "ZZ" in the name. All succeeding tests
448         // will fail.
449         AsyncRestClient client = restClient();
450         client.post("/actuator/loggers/org.oran.pmproducer", "{\"configuredLevel\":\"trace\"}").block();
451         String resp = client.get("/actuator/loggers/org.oran.pmproducer").block();
452         assertThat(resp).contains("TRACE");
453         client.post("/actuator/loggers/org.springframework.boot.actuate", "{\"configuredLevel\":\"trace\"}").block();
454         // This will stop the web server and all coming tests will fail.
455         client.post("/actuator/shutdown", "").block();
456         Thread.sleep(1000);
457
458         String url = "https://localhost:" + applicationConfig.getLocalServerHttpPort() + "/v3/api-docs";
459         StepVerifier.create(restClient().get(url)) // Any call
460                 .expectSubscription() //
461                 .expectErrorMatches(t -> t instanceof WebClientRequestException) //
462                 .verify();
463     }
464
465     public static void testErrorCode(Mono<?> request, HttpStatus expStatus, String responseContains) {
466         testErrorCode(request, expStatus, responseContains, true);
467     }
468
469     public static void testErrorCode(Mono<?> request, HttpStatus expStatus, String responseContains,
470             boolean expectApplicationProblemJsonMediaType) {
471         StepVerifier.create(request) //
472                 .expectSubscription() //
473                 .expectErrorMatches(
474                         t -> checkWebClientError(t, expStatus, responseContains, expectApplicationProblemJsonMediaType)) //
475                 .verify();
476     }
477
478     private static boolean checkWebClientError(Throwable throwable, HttpStatus expStatus, String responseContains,
479             boolean expectApplicationProblemJsonMediaType) {
480         assertTrue(throwable instanceof WebClientResponseException);
481         WebClientResponseException responseException = (WebClientResponseException) throwable;
482         assertThat(responseException.getStatusCode()).isEqualTo(expStatus);
483         assertThat(responseException.getResponseBodyAsString()).contains(responseContains);
484         if (expectApplicationProblemJsonMediaType) {
485             assertThat(responseException.getHeaders().getContentType()).isEqualTo(MediaType.APPLICATION_PROBLEM_JSON);
486         }
487         return true;
488     }
489 }