2 * ========================LICENSE_START=================================
5 * Copyright (C) 2021 Nordix Foundation
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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===================================
21 package org.oran.dmaapadapter;
23 import static org.assertj.core.api.Assertions.assertThat;
24 import static org.awaitility.Awaitility.await;
26 import com.google.gson.Gson;
27 import com.google.gson.GsonBuilder;
28 import com.google.gson.JsonParser;
30 import org.junit.jupiter.api.AfterEach;
31 import org.junit.jupiter.api.Test;
32 import org.junit.jupiter.api.extension.ExtendWith;
33 import org.oran.dmaapadapter.clients.AsyncRestClient;
34 import org.oran.dmaapadapter.clients.AsyncRestClientFactory;
35 import org.oran.dmaapadapter.configuration.ApplicationConfig;
36 import org.oran.dmaapadapter.configuration.ImmutableHttpProxyConfig;
37 import org.oran.dmaapadapter.configuration.ImmutableWebClientConfig;
38 import org.oran.dmaapadapter.configuration.WebClientConfig;
39 import org.oran.dmaapadapter.configuration.WebClientConfig.HttpProxyConfig;
40 import org.oran.dmaapadapter.r1.ConsumerJobInfo;
41 import org.oran.dmaapadapter.repository.InfoType;
42 import org.oran.dmaapadapter.repository.InfoTypes;
43 import org.oran.dmaapadapter.repository.Jobs;
44 import org.oran.dmaapadapter.tasks.ProducerRegstrationTask;
45 import org.springframework.beans.factory.annotation.Autowired;
46 import org.springframework.boot.test.context.SpringBootTest;
47 import org.springframework.boot.test.context.SpringBootTest.WebEnvironment;
48 import org.springframework.boot.test.context.TestConfiguration;
49 import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
50 import org.springframework.boot.web.servlet.server.ServletWebServerFactory;
51 import org.springframework.context.annotation.Bean;
52 import org.springframework.test.context.TestPropertySource;
53 import org.springframework.test.context.junit.jupiter.SpringExtension;
55 @ExtendWith(SpringExtension.class)
56 @SpringBootTest(webEnvironment = WebEnvironment.DEFINED_PORT)
57 @TestPropertySource(properties = { //
58 "server.ssl.key-store=./config/keystore.jks", //
59 "app.webclient.trust-store=./config/truststore.jks", //
60 "app.configuration-filepath=./src/test/resources/test_application_configuration.json", //
61 "app.ecs-base-url=https://localhost:8434" //
63 class IntegrationWithEcs {
65 private static final String EI_JOB_ID = "EI_JOB_ID";
68 private ApplicationConfig applicationConfig;
71 private ProducerRegstrationTask producerRegstrationTask;
77 private InfoTypes types;
80 private ConsumerController consumerController;
82 private static Gson gson = new GsonBuilder().create();
84 static class TestApplicationConfig extends ApplicationConfig {
87 public String getEcsBaseUrl() {
88 return "https://localhost:8434";
92 public String getDmaapBaseUrl() {
93 return thisProcessUrl();
97 public String getSelfUrl() {
98 return thisProcessUrl();
101 private String thisProcessUrl() {
102 final String url = "https://localhost:" + getLocalServerHttpPort();
108 * Overrides the BeanFactory.
111 static class TestBeanFactory extends BeanFactory {
115 public ServletWebServerFactory servletContainer() {
116 return new TomcatServletWebServerFactory();
121 public ApplicationConfig getApplicationConfig() {
122 TestApplicationConfig cfg = new TestApplicationConfig();
129 this.consumerController.testResults.reset();
134 private AsyncRestClient restClient(boolean useTrustValidation) {
135 WebClientConfig config = this.applicationConfig.getWebClientConfig();
136 HttpProxyConfig httpProxyConfig = ImmutableHttpProxyConfig.builder() //
137 .httpProxyHost("") //
140 config = ImmutableWebClientConfig.builder() //
141 .keyStoreType(config.keyStoreType()) //
142 .keyStorePassword(config.keyStorePassword()) //
143 .keyStore(config.keyStore()) //
144 .keyPassword(config.keyPassword()) //
145 .isTrustStoreUsed(useTrustValidation) //
146 .trustStore(config.trustStore()) //
147 .trustStorePassword(config.trustStorePassword()) //
148 .httpProxyConfig(httpProxyConfig).build();
150 AsyncRestClientFactory restClientFactory = new AsyncRestClientFactory(config);
151 return restClientFactory.createRestClientNoHttpProxy(selfBaseUrl());
154 private AsyncRestClient restClient() {
155 return restClient(false);
158 private String selfBaseUrl() {
159 return "https://localhost:" + this.applicationConfig.getLocalServerHttpPort();
162 private String ecsBaseUrl() {
163 return applicationConfig.getEcsBaseUrl();
166 private String jobUrl(String jobId) {
167 return ecsBaseUrl() + "/data-consumer/v1/info-jobs/" + jobId;
170 private void createInformationJobInEcs(String jobId) {
171 String body = gson.toJson(consumerJobInfo());
173 // Delete the job if it already exists
174 deleteInformationJobInEcs(jobId);
175 } catch (Exception e) {
177 restClient().putForEntity(jobUrl(jobId), body).block();
180 private void deleteInformationJobInEcs(String jobId) {
181 restClient().delete(jobUrl(jobId)).block();
184 private ConsumerJobInfo consumerJobInfo() {
185 InfoType type = this.types.getAll().iterator().next();
186 return consumerJobInfo(type.getId(), EI_JOB_ID);
189 private Object jsonObject() {
190 return jsonObject("{}");
193 private Object jsonObject(String json) {
195 return JsonParser.parseString(json).getAsJsonObject();
196 } catch (Exception e) {
197 throw new NullPointerException(e.toString());
201 private ConsumerJobInfo consumerJobInfo(String typeId, String infoJobId) {
203 String targetUri = selfBaseUrl() + ConsumerController.CONSUMER_TARGET_URL;
204 return new ConsumerJobInfo(typeId, jsonObject(), "owner", targetUri, "");
205 } catch (Exception e) {
211 void testWholeChain() throws Exception {
212 await().untilAsserted(() -> assertThat(producerRegstrationTask.isRegisteredInEcs()).isTrue());
214 createInformationJobInEcs(EI_JOB_ID);
216 await().untilAsserted(() -> assertThat(this.jobs.size()).isEqualTo(1));
218 DmaapSimulatorController.dmaapResponses.add("DmaapResponse1");
219 DmaapSimulatorController.dmaapResponses.add("DmaapResponse2");
221 ConsumerController.TestResults results = this.consumerController.testResults;
222 await().untilAsserted(() -> assertThat(results.receivedBodies.size()).isEqualTo(2));
223 assertThat(results.receivedBodies.get(0)).isEqualTo("DmaapResponse1");
225 deleteInformationJobInEcs(EI_JOB_ID);
227 await().untilAsserted(() -> assertThat(this.jobs.size()).isZero());
229 synchronized (this) {
230 // logger.warn("**************** Keeping server alive! " +
231 // this.applicationConfig.getLocalServerHttpPort());