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
 
  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.onap.dcaegen2.services.sdk.rest.services.cbs.client.impl;
 
  23 import io.vavr.CheckedFunction0;
 
  24 import io.vavr.Function0;
 
  25 import java.io.IOException;
 
  26 import java.net.URISyntaxException;
 
  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;
 
  39  * @author <a href="mailto:piotr.jaszczyk@nokia.com">Piotr Jaszczyk</a>
 
  40  * @since February 2019
 
  42 public class DummyHttpServer {
 
  44     private final DisposableServer server;
 
  46     private DummyHttpServer(DisposableServer server) {
 
  50     public static DummyHttpServer start(Consumer<HttpServerRoutes> routes) {
 
  51         return new DummyHttpServer(HttpServer.create()
 
  58     public static Publisher<Void> sendResource(HttpServerResponse httpServerResponse, String resourcePath) {
 
  59         return sendString(httpServerResponse, Mono.fromCallable(() -> readResource(resourcePath)));
 
  62     public static Publisher<Void> sendString(HttpServerResponse httpServerResponse, Publisher<String> content) {
 
  63         return httpServerResponse.sendString(content);
 
  70     public String host() {
 
  78     private static String readResource(String resourcePath) {
 
  80             return CheckedFunction0.constant(resourcePath)
 
  81                     .andThen(DummyHttpServer.class::getResource)
 
  84                     .andThen(Files::readAllBytes)
 
  87         } catch (Throwable throwable) {
 
  88             throw new RuntimeException(throwable);