Merge "Added support for using oauth token for Kafka"
[nonrtric/plt/ranpm.git] / pmproducer / src / test / java / org / oran / pmproducer / IntegrationWithIcs.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
26 import com.google.gson.Gson;
27 import com.google.gson.GsonBuilder;
28
29 import org.junit.jupiter.api.AfterEach;
30 import org.junit.jupiter.api.Test;
31 import org.oran.pmproducer.clients.AsyncRestClient;
32 import org.oran.pmproducer.clients.AsyncRestClientFactory;
33 import org.oran.pmproducer.configuration.ApplicationConfig;
34 import org.oran.pmproducer.configuration.WebClientConfig;
35 import org.oran.pmproducer.configuration.WebClientConfig.HttpProxyConfig;
36 import org.oran.pmproducer.filter.PmReportFilter;
37 import org.oran.pmproducer.oauth2.SecurityContext;
38 import org.oran.pmproducer.r1.ConsumerJobInfo;
39 import org.oran.pmproducer.repository.Jobs;
40 import org.oran.pmproducer.tasks.ProducerRegstrationTask;
41 import org.slf4j.Logger;
42 import org.slf4j.LoggerFactory;
43 import org.springframework.beans.factory.annotation.Autowired;
44 import org.springframework.boot.test.context.SpringBootTest;
45 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
46 import org.springframework.boot.test.context.TestConfiguration;
47 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
48 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
49 import org.springframework.context.annotation.Bean;
50 import org.springframework.test.context.TestPropertySource;
51
52 @SuppressWarnings("java:S3577") // Rename class
53 @SpringBootTest(webEnvironment = WebEnvironment.DEFINED_PORT)
54 @TestPropertySource(properties = { //
55         "server.ssl.key-store=./config/keystore.jks", //
56         "app.webclient.trust-store=./config/truststore.jks", //
57         "app.configuration-filepath=./src/test/resources/test_application_configuration.json", //
58         "app.ics-base-url=https://localhost:8434" //
59 })
60 class IntegrationWithIcs {
61
62     private static final String JOB_ID = "JOB_ID";
63     private static final Logger logger = LoggerFactory.getLogger(Application.class);
64
65     @Autowired
66     private ApplicationConfig applicationConfig;
67
68     @Autowired
69     private ProducerRegstrationTask producerRegstrationTask;
70
71     @Autowired
72     private Jobs jobs;
73
74     @Autowired
75     private SecurityContext securityContext;
76
77     private static Gson gson = new GsonBuilder().disableHtmlEscaping().create();
78
79     static class TestApplicationConfig extends ApplicationConfig {
80
81         @Override
82         public String getIcsBaseUrl() {
83             return "https://localhost:8434";
84         }
85
86         @Override
87         public String getSelfUrl() {
88             return thisProcessUrl();
89         }
90
91         private String thisProcessUrl() {
92             final String url = "https://localhost:" + getLocalServerHttpPort();
93             return url;
94         }
95     }
96
97     /**
98      * Overrides the BeanFactory.
99      */
100     @TestConfiguration
101     static class TestBeanFactory extends BeanFactory {
102
103         @Override
104         @Bean
105         public ServletWebServerFactory servletContainer() {
106             return new TomcatServletWebServerFactory();
107         }
108
109         @Override
110         @Bean
111         public ApplicationConfig getApplicationConfig() {
112             TestApplicationConfig cfg = new TestApplicationConfig();
113             return cfg;
114         }
115     }
116
117     @AfterEach
118     void reset() {
119         assertThat(this.jobs.size()).isZero();
120     }
121
122     private AsyncRestClient restClient(boolean useTrustValidation) {
123         WebClientConfig config = this.applicationConfig.getWebClientConfig();
124         HttpProxyConfig httpProxyConfig = HttpProxyConfig.builder() //
125                 .httpProxyHost("") //
126                 .httpProxyPort(0) //
127                 .build();
128         config = WebClientConfig.builder() //
129                 .keyStoreType(config.getKeyStoreType()) //
130                 .keyStorePassword(config.getKeyStorePassword()) //
131                 .keyStore(config.getKeyStore()) //
132                 .keyPassword(config.getKeyPassword()) //
133                 .isTrustStoreUsed(useTrustValidation) //
134                 .trustStore(config.getTrustStore()) //
135                 .trustStorePassword(config.getTrustStorePassword()) //
136                 .httpProxyConfig(httpProxyConfig).build();
137
138         AsyncRestClientFactory restClientFactory = new AsyncRestClientFactory(config, securityContext);
139         return restClientFactory.createRestClientNoHttpProxy(selfBaseUrl());
140     }
141
142     private AsyncRestClient restClient() {
143         return restClient(false);
144     }
145
146     private String selfBaseUrl() {
147         return "https://localhost:" + this.applicationConfig.getLocalServerHttpPort();
148     }
149
150     private String icsBaseUrl() {
151         return applicationConfig.getIcsBaseUrl();
152     }
153
154     private String jobUrl(String jobId) {
155         return icsBaseUrl() + "/data-consumer/v1/info-jobs/" + jobId + "?typeCheck=true";
156     }
157
158     private void deleteInformationJobInIcs(String jobId) {
159         try {
160             restClient().delete(jobUrl(jobId)).block();
161         } catch (Exception e) {
162             logger.warn("Couldnot delete job: {}  reason: {}", jobId, e.getMessage());
163         }
164     }
165
166     private void createInformationJobInIcs(String jobId, ConsumerJobInfo jobInfo) {
167         String body = gson.toJson(jobInfo);
168         restClient().putForEntity(jobUrl(jobId), body).block();
169         logger.info("Created job {}, {}", jobId, body);
170     }
171
172     @Test
173     void testCreateJob() throws Exception {
174         await().untilAsserted(() -> assertThat(producerRegstrationTask.isRegisteredInIcs()).isTrue());
175         final String TYPE_ID = "PmDataOverKafka";
176
177         PmReportFilter.FilterData filterData = new PmReportFilter.FilterData();
178
179         ConsumerJobInfo jobInfo = IntegrationWithKafka
180                 .consumerJobInfoKafka(this.applicationConfig.getKafkaBootStrapServers(), TYPE_ID, filterData);
181
182         createInformationJobInIcs(JOB_ID, jobInfo);
183         await().untilAsserted(() -> assertThat(this.jobs.size()).isEqualTo(1));
184
185         deleteInformationJobInIcs(JOB_ID);
186         await().untilAsserted(() -> assertThat(this.jobs.size()).isZero());
187     }
188 }