| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.kuali.rice.test; |
| 17 | |
|
| 18 | |
import java.lang.reflect.Method; |
| 19 | |
import java.util.ArrayList; |
| 20 | |
import java.util.Arrays; |
| 21 | |
import java.util.HashSet; |
| 22 | |
import java.util.List; |
| 23 | |
import java.util.Set; |
| 24 | |
|
| 25 | |
import org.apache.commons.lang.StringUtils; |
| 26 | |
import org.kuali.rice.core.api.config.property.ConfigContext; |
| 27 | |
import org.kuali.rice.core.api.lifecycle.Lifecycle; |
| 28 | |
import org.kuali.rice.test.lifecycles.JettyServerLifecycle; |
| 29 | |
import org.kuali.rice.test.server.JettyServer; |
| 30 | |
import org.kuali.rice.test.server.JettyServers; |
| 31 | |
|
| 32 | |
|
| 33 | |
|
| 34 | |
|
| 35 | |
|
| 36 | |
|
| 37 | |
|
| 38 | |
|
| 39 | |
|
| 40 | |
|
| 41 | |
public abstract class JettyServerTestCase extends BaselineTestCase { |
| 42 | 0 | private static Set<String> classesHandled = new HashSet<String>(); |
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
public JettyServerTestCase(String moduleName, Mode mode) { |
| 48 | 0 | super(moduleName, mode); |
| 49 | 0 | } |
| 50 | |
|
| 51 | |
|
| 52 | |
|
| 53 | |
|
| 54 | |
public JettyServerTestCase(String moduleName) { |
| 55 | 0 | super(moduleName); |
| 56 | 0 | } |
| 57 | |
|
| 58 | |
private List<JettyServer> readPerTestDefinitions(Method method) { |
| 59 | 0 | return getJettyServerDefinitions((JettyServers) method.getAnnotation(JettyServers.class), (JettyServer) method.getAnnotation(JettyServer.class)); |
| 60 | |
} |
| 61 | |
|
| 62 | |
private List<JettyServer> readSuiteServerDefinitions(Class clazz) { |
| 63 | 0 | return getJettyServerDefinitions((JettyServers) clazz.getAnnotation(JettyServers.class), (JettyServer) clazz.getAnnotation(JettyServer.class)); |
| 64 | |
} |
| 65 | |
|
| 66 | |
private List<JettyServer> getJettyServerDefinitions(JettyServers servers, JettyServer server) { |
| 67 | 0 | List<JettyServer> defs = new ArrayList<JettyServer>(); |
| 68 | 0 | if (servers != null) { |
| 69 | 0 | if (servers.servers() != null) { |
| 70 | 0 | defs.addAll(Arrays.asList(servers.servers())); |
| 71 | |
} |
| 72 | |
} |
| 73 | 0 | if (server != null) { |
| 74 | 0 | defs.add(server); |
| 75 | |
} |
| 76 | 0 | return defs; |
| 77 | |
} |
| 78 | |
|
| 79 | |
protected JettyServerLifecycle constructJettyServerLifecycle(JettyServer def) { |
| 80 | 0 | String portConfigParam = def.portConfigParam(); |
| 81 | 0 | if (StringUtils.isBlank(portConfigParam)) { |
| 82 | 0 | portConfigParam = null; |
| 83 | |
} |
| 84 | 0 | if (def.port() != JettyServer.CONFIG_PARAM_PORT && portConfigParam != null) { |
| 85 | 0 | throw new IllegalArgumentException("Either but not both of port or portConfigParam must be specified on JettyServer annotation"); |
| 86 | |
} |
| 87 | 0 | if (def.port() == JettyServer.CONFIG_PARAM_PORT && portConfigParam == null) { |
| 88 | 0 | portConfigParam = "unittest.jetty." + def.context() + ".port"; |
| 89 | |
} |
| 90 | |
JettyServerLifecycle lc; |
| 91 | 0 | if (def.port() != JettyServer.CONFIG_PARAM_PORT) { |
| 92 | 0 | lc = new RuntimePortJettyServerLifecycle(def.port(), "/" + def.context(), def.webapp()); |
| 93 | |
} else { |
| 94 | 0 | lc = new RuntimePortJettyServerLifecycle(def.portConfigParam(), "/" + def.context(), def.webapp()); |
| 95 | |
} |
| 96 | 0 | lc.setConfigMode(def.configMode()); |
| 97 | 0 | lc.setAddWebappResourceLoaders(def.addWebappResourceLoader()); |
| 98 | 0 | return lc; |
| 99 | |
} |
| 100 | |
|
| 101 | |
@Override |
| 102 | |
protected List<Lifecycle> getSuiteLifecycles() { |
| 103 | 0 | List<Lifecycle> lifecycles = super.getSuiteLifecycles(); |
| 104 | |
List<Class> classesToHandle; |
| 105 | |
try { |
| 106 | 0 | classesToHandle = TestUtilities.getHierarchyClassesToHandle(this.getClass(), new Class[] { JettyServers.class, JettyServer.class }, classesHandled); |
| 107 | 0 | } catch (Exception e) { |
| 108 | 0 | throw new RuntimeException("Error determining classes to handle", e); |
| 109 | 0 | } |
| 110 | 0 | List<JettyServer> suiteDefs = new ArrayList<JettyServer>(); |
| 111 | 0 | for (Class c: classesToHandle) { |
| 112 | 0 | suiteDefs.addAll(readSuiteServerDefinitions(c)); |
| 113 | 0 | classesHandled.add(c.getName()); |
| 114 | |
} |
| 115 | |
|
| 116 | 0 | for (JettyServer def: suiteDefs) { |
| 117 | 0 | lifecycles.add(constructJettyServerLifecycle(def)); |
| 118 | |
} |
| 119 | 0 | return lifecycles; |
| 120 | |
} |
| 121 | |
|
| 122 | |
@Override |
| 123 | |
protected List<Lifecycle> getPerTestLifecycles() { |
| 124 | 0 | List<Lifecycle> lifecycles = super.getPerTestLifecycles(); |
| 125 | 0 | List<JettyServer> defs = readPerTestDefinitions(method); |
| 126 | |
|
| 127 | 0 | for (JettyServer def: defs) { |
| 128 | 0 | lifecycles.add(constructJettyServerLifecycle(def)); |
| 129 | |
} |
| 130 | 0 | return lifecycles; |
| 131 | |
} |
| 132 | |
|
| 133 | |
private static final class RuntimePortJettyServerLifecycle extends JettyServerLifecycle { |
| 134 | |
private String portConfigParam; |
| 135 | |
public RuntimePortJettyServerLifecycle(int port, String contextName, String relativeWebappRoot) { |
| 136 | 0 | super(port, contextName, relativeWebappRoot); |
| 137 | 0 | } |
| 138 | |
public RuntimePortJettyServerLifecycle(String portConfigParam, String contextName, String relativeWebappRoot) { |
| 139 | 0 | super(JettyServer.CONFIG_PARAM_PORT, contextName, relativeWebappRoot); |
| 140 | 0 | this.portConfigParam = portConfigParam; |
| 141 | 0 | } |
| 142 | |
public void start() throws Exception { |
| 143 | 0 | if (jettyServer.getPort() == JettyServer.CONFIG_PARAM_PORT) { |
| 144 | 0 | String val = ConfigContext.getCurrentContextConfig().getProperty(portConfigParam); |
| 145 | 0 | if (val == null) { |
| 146 | 0 | throw new RuntimeException("Jetty port not found in config param: " + portConfigParam); |
| 147 | |
} |
| 148 | 0 | jettyServer.setPort(Integer.parseInt(val)); |
| 149 | |
} |
| 150 | 0 | super.start(); |
| 151 | 0 | } |
| 152 | |
@Override |
| 153 | |
public void stop() throws Exception { |
| 154 | 0 | System.err.println("Shutting down jetty"); |
| 155 | 0 | super.stop(); |
| 156 | 0 | } |
| 157 | |
} |
| 158 | |
} |