/** * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you 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 org.apache.cxf.testutil.common; import java.io.IOException; import java.net.MalformedURLException; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.junit.AfterClass; import org.junit.Assert; public abstract class AbstractClientServerTestBase extends Assert { private static List<ServerLauncher> launchers = new ArrayList<>(); @AfterClass public static void stopAllServers() throws Exception { boolean passed = true; for (ServerLauncher sl : launchers) { try { sl.signalStop(); } catch (IOException ex) { ex.printStackTrace(); } } for (ServerLauncher sl : launchers) { try { passed = passed && sl.stopServer(); } catch (IOException ex) { ex.printStackTrace(); } } launchers.clear(); System.gc(); assertTrue("server failed", passed); } /** * Starts the server inProcess */ public static boolean launchServer(AbstractTestServerBase base) { boolean ok = false; try { ServerLauncher sl = new ServerLauncher(base); ok = sl.launchServer(); assertTrue("server failed to launch", ok); launchers.add(0, sl); } catch (IOException ex) { ex.printStackTrace(); fail("failed to launch server " + base); } return ok; } /** * Starts the server inProcess */ public static boolean launchServer(Class<?> clz) { return launchServer(clz, true); } /** * Starts the server inProcess or out of process depending on the param */ public static boolean launchServer(Class<?> clz, boolean inProcess) { boolean ok = false; try { ServerLauncher sl = new ServerLauncher(clz.getName(), inProcess); ok = sl.launchServer(); assertTrue("server failed to launch", ok); launchers.add(0, sl); } catch (IOException ex) { ex.printStackTrace(); fail("failed to launch server " + clz); } return ok; } /** * Starts the server inProcess */ public static boolean launchServer(Class<?> clz, Map<String, String> props, String[] args) { return launchServer(clz, props, args, true); } /** * Starts the server inProcess or out of process depending on the param */ public static boolean launchServer(Class<?> clz, Map<String, String> props, String[] args, boolean inProcess) { boolean ok = false; try { ServerLauncher sl = new ServerLauncher(clz.getName(), props, args, inProcess); ok = sl.launchServer(); assertTrue("server failed to launch", ok); launchers.add(0, sl); } catch (IOException ex) { ex.printStackTrace(); fail("failed to launch server " + clz); } return ok; } protected void setAddress(Object o, String address) { TestUtil.setAddress(o, address); } protected void updateAddressPort(Object o, String port) throws NumberFormatException, MalformedURLException { TestUtil.updateAddressPort(o, port); } protected static String allocatePort(String s) { return TestUtil.getPortNumber(s); } protected static String allocatePort(Class<?> cls) { return TestUtil.getPortNumber(cls); } protected static String allocatePort(Class<?> cls, int count) { return TestUtil.getPortNumber(cls, count); } }