1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.student.common.test.spring;
17
18 import java.io.File;
19
20 import org.junit.internal.runners.InitializationError;
21 import org.junit.internal.runners.JUnit4ClassRunner;
22 import org.junit.runner.notification.RunNotifier;
23 import org.mortbay.jetty.Connector;
24 import org.mortbay.jetty.Handler;
25 import org.mortbay.jetty.Server;
26 import org.mortbay.jetty.handler.DefaultHandler;
27 import org.mortbay.jetty.handler.HandlerCollection;
28 import org.mortbay.jetty.nio.SelectChannelConnector;
29 import org.mortbay.jetty.webapp.WebAppContext;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public class IntegrationServiceTestClassRunner extends JUnit4ClassRunner {
34 final static Logger logger = LoggerFactory.getLogger(IntegrationServiceTestClassRunner.class);
35
36 private Class<?> testClass;
37 private Server server;
38 private String webAppPath;
39 private String contextPath;
40 private int port = 9090;
41
42 public IntegrationServiceTestClassRunner(Class<?> klass) throws InitializationError {
43 super(klass);
44 testClass = klass;
45 }
46
47 private void getAnnotations() {
48 IntegrationServer webapp = this.testClass.getAnnotation(IntegrationServer.class);
49 this.port = webapp.port();
50 this.webAppPath = webapp.webappPath();
51 this.contextPath = webapp.contextPath();
52
53 if (logger.isDebugEnabled()) {
54 logger.debug("port="+this.port);
55 logger.debug("webAppPath="+this.webAppPath);
56 logger.debug("contextPath="+this.contextPath);
57 }
58 }
59
60 private void setProperties() {
61 if (System.getProperty("catalina.base") == null) {
62 System.setProperty("catalina.base", "./target");
63 }
64
65 SystemProperties systemProperties = this.testClass.getAnnotation(SystemProperties.class);
66 if (systemProperties != null) {
67 for(Property property : systemProperties.properties()) {
68 System.setProperty(property.key(), property.value());
69 }
70 }
71 }
72
73 @Override
74 public void run(RunNotifier notifier) {
75 startServer();
76 super.run(notifier);
77 stopServer();
78 }
79
80 private void startServer() {
81 getAnnotations();
82 setProperties();
83
84 this.server = new Server();
85 Connector connector = new SelectChannelConnector();
86 connector.setPort(this.port);
87 this.server.setConnectors(new Connector[] { connector });
88
89
90
91
92 String root = IntegrationServiceTestClassRunner.class.getResource("/").getPath();
93 File webAppsPath = new File(root + this.webAppPath);
94
95 try {
96 if(!webAppsPath.isDirectory()) {
97 throw new RuntimeException("Webapps directory does not exist. " +
98 "Webapps directory must be an exploded (war) directory: " +
99 webAppsPath.getCanonicalPath());
100 }
101
102 if (logger.isDebugEnabled()) {
103 logger.debug("WebApps Path="+webAppsPath.getCanonicalPath());
104 }
105
106 WebAppContext webAppcontext = new WebAppContext();
107 webAppcontext.setParentLoaderPriority(true);
108 webAppcontext.setContextPath(this.contextPath);
109 webAppcontext.setWar(webAppsPath.getCanonicalPath());
110
111
112 HandlerCollection handlers = new HandlerCollection();
113 handlers.setHandlers(new Handler[] { webAppcontext, new DefaultHandler() });
114 this.server.setHandler(handlers);
115
116 this.server.start();
117 } catch (Exception e) {
118 throw new RuntimeException("Starting Jetty server failed", e);
119 }
120 }
121
122 private void stopServer() {
123 try {
124 this.server.stop();
125 } catch (Exception e) {
126 throw new RuntimeException("Stopping Jetty server failed", e);
127 }
128 }
129 }