d0485f57cbb558d87160c7a124ef275b9c8461a2
[dcaegen2/services/sdk.git] /
1 /*
2  * ============LICENSE_START====================================
3  * DCAEGEN2-SERVICES-SDK
4  * =========================================================
5  * Copyright (C) 2019 Nokia. 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.dcaegen2.services.sdk.rest.services.cbs.client.impl;
22
23 import io.vavr.CheckedFunction0;
24 import io.vavr.Function0;
25 import java.io.IOException;
26 import java.net.URISyntaxException;
27 import java.net.URL;
28 import java.nio.file.Files;
29 import java.nio.file.Paths;
30 import java.util.function.Consumer;
31 import org.reactivestreams.Publisher;
32 import reactor.core.publisher.Mono;
33 import reactor.netty.DisposableServer;
34 import reactor.netty.http.server.HttpServer;
35 import reactor.netty.http.server.HttpServerResponse;
36 import reactor.netty.http.server.HttpServerRoutes;
37
38 /**
39  * @author <a href="mailto:piotr.jaszczyk@nokia.com">Piotr Jaszczyk</a>
40  * @since February 2019
41  */
42 public class DummyHttpServer {
43
44     private final DisposableServer server;
45
46     private DummyHttpServer(DisposableServer server) {
47         this.server = server;
48     }
49
50     public static DummyHttpServer start(Consumer<HttpServerRoutes> routes) {
51         return new DummyHttpServer(HttpServer.create()
52                 .host("127.0.0.1")
53                 .route(routes)
54                 .bind()
55                 .block());
56     }
57
58     public static Publisher<Void> sendResource(HttpServerResponse httpServerResponse, String resourcePath) {
59         return sendString(httpServerResponse, Mono.fromCallable(() -> readResource(resourcePath)));
60     }
61
62     public static Publisher<Void> sendString(HttpServerResponse httpServerResponse, Publisher<String> content) {
63         return httpServerResponse.sendString(content);
64     }
65
66     public void close() {
67         server.disposeNow();
68     }
69
70     public String host() {
71         return server.host();
72     }
73
74     public int port() {
75         return server.port();
76     }
77
78     private static String readResource(String resourcePath) {
79         try {
80             return CheckedFunction0.constant(resourcePath)
81                     .andThen(DummyHttpServer.class::getResource)
82                     .andThen(URL::toURI)
83                     .andThen(Paths::get)
84                     .andThen(Files::readAllBytes)
85                     .andThen(String::new)
86                     .apply();
87         } catch (Throwable throwable) {
88             throw new RuntimeException(throwable);
89         }
90     }
91 }