All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.helger.peppol.smpserver.mock.MockWebServer Maven / Gradle / Ivy

There is a newer version: 5.1.2
Show newest version
/**
 * Copyright (C) 2014-2018 Philip Helger (www.helger.com)
 * philip[at]helger[dot]com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *         http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.helger.peppol.smpserver.mock;

import java.net.URI;
import java.util.Map;

import javax.annotation.Nonnull;
import javax.servlet.Servlet;

import org.glassfish.grizzly.http.server.HttpServer;
import org.glassfish.grizzly.servlet.ServletRegistration;
import org.glassfish.grizzly.servlet.WebappContext;
import org.glassfish.jersey.grizzly2.httpserver.GrizzlyHttpServerFactory;
import org.glassfish.jersey.servlet.ServletContainer;
import org.glassfish.jersey.uri.UriComponent;

import com.helger.commons.collection.impl.CommonsHashMap;
import com.helger.commons.collection.impl.ICommonsMap;

/**
 * WebServer based on Grizzly for standalone SMP server testing.
 *
 * @author Philip Helger
 */
final class MockWebServer
{
  // Base URI the Grizzly HTTP server will listen on
  public static final String BASE_URI_HTTP = "http://localhost:9090/unittest/";

  @Nonnull
  private static WebappContext _createContext (final URI u,
                                               final Class  aServletClass,
                                               final Servlet aServlet,
                                               final Map  aInitParams,
                                               final Map  aContextInitParams)
  {
    String path = u.getPath ();
    if (path == null)
      throw new IllegalArgumentException ("The URI path, of the URI " + u + ", must be non-null");
    if (path.isEmpty ())
      throw new IllegalArgumentException ("The URI path, of the URI " + u + ", must be present");
    if (path.charAt (0) != '/')
      throw new IllegalArgumentException ("The URI path, of the URI " + u + ". must start with a '/'");
    path = String.format ("/%s", UriComponent.decodePath (u.getPath (), true).get (1).toString ());

    final WebappContext aContext = new WebappContext ("GrizzlyContext", path);
    ServletRegistration aRegistration;
    if (aServletClass != null)
      aRegistration = aContext.addServlet (aServletClass.getName (), aServletClass);
    else
      aRegistration = aContext.addServlet (aServlet.getClass ().getName (), aServlet);
    aRegistration.addMapping ("/*");

    if (aContextInitParams != null)
      for (final Map.Entry  e : aContextInitParams.entrySet ())
        aContext.setInitParameter (e.getKey (), e.getValue ());

    if (aInitParams != null)
      aRegistration.setInitParameters (aInitParams);

    return aContext;
  }

  @Nonnull
  private static WebappContext _createContext (final String sURI)
  {
    final ICommonsMap  aInitParams = new CommonsHashMap<> ();
    aInitParams.put ("jersey.config.server.provider.packages",
                     com.helger.peppol.smpserver.rest.ServiceGroupInterface.class.getPackage ().getName () +
                                                               "," +
                                                               com.helger.peppol.smpserver.exceptionmapper.RuntimeExceptionMapper.class.getPackage ()
                                                                                                                                       .getName ());
    return _createContext (URI.create (sURI), ServletContainer.class, null, aInitParams, null);
  }

  /**
   * Starts Grizzly HTTP server exposing JAX-RS resources defined in this
   * application.
   *
   * @return Grizzly HTTP server.
   */
  @Nonnull
  public static HttpServer startRegularServer ()
  {
    final WebappContext aContext = _createContext (BASE_URI_HTTP);

    // create and start a new instance of grizzly http server
    // exposing the Jersey application at BASE_URI
    final HttpServer ret = GrizzlyHttpServerFactory.createHttpServer (URI.create (BASE_URI_HTTP));
    aContext.deploy (ret);
    return ret;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy