1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
|
Description: Fixes the compatibility with the latest version of the Servlet API in Debian
Author: Emmanuel Bourg <ebourg@apache.org>
Forwarded: no
--- a/src/com/meterware/servletunit/ServletUnitHttpRequest.java
+++ b/src/com/meterware/servletunit/ServletUnitHttpRequest.java
@@ -31,12 +31,19 @@
import java.net.MalformedURLException;
import java.util.*;
+import javax.servlet.AsyncContext;
+import javax.servlet.DispatcherType;
+import javax.servlet.ServletContext;
+import javax.servlet.ServletRequest;
+import javax.servlet.ServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.Cookie;
+import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpSession;
import javax.servlet.ServletInputStream;
import javax.servlet.RequestDispatcher;
import javax.servlet.ServletException;
+import javax.servlet.http.Part;
/**
@@ -755,6 +762,70 @@
return 0; //To change body of implemented methods use File | Settings | File Templates.
}
+//--------------------------------------- methods added to ServletRequest in Servlet API 3.0 ----------------------------
+
+ public boolean authenticate(HttpServletResponse response) throws IOException, ServletException {
+ return false;
+ }
+
+ public void login(String username, String password) throws ServletException {
+
+ }
+
+ public void logout() throws ServletException {
+
+ }
+
+ public Collection<Part> getParts() throws IOException, ServletException {
+ return null;
+ }
+
+ public Part getPart(String name) throws IOException, ServletException {
+ return null;
+ }
+
+ public ServletContext getServletContext() {
+ return null;
+ }
+
+ public AsyncContext startAsync() throws IllegalStateException {
+ return null;
+ }
+
+ public AsyncContext startAsync(ServletRequest servletRequest, ServletResponse servletResponse) throws IllegalStateException {
+ return null;
+ }
+
+ public boolean isAsyncStarted() {
+ return false;
+ }
+
+ public boolean isAsyncSupported() {
+ return false;
+ }
+
+ public AsyncContext getAsyncContext() {
+ return null;
+ }
+
+ public DispatcherType getDispatcherType() {
+ return null;
+ }
+
+//--------------------------------------- methods added to ServletRequest in Servlet API 3.1 ----------------------------
+
+ public String changeSessionId() {
+ return null;
+ }
+
+ public <T extends javax.servlet.http.HttpUpgradeHandler> T upgrade(Class<T> handlerClass) throws IOException, ServletException {
+ return null;
+ }
+
+ public long getContentLengthLong() {
+ return Long.parseLong(getHeader("Content-Length"));
+ }
+
//--------------------------------------------- package members ----------------------------------------------
--- a/src/com/meterware/servletunit/ServletUnitHttpResponse.java
+++ b/src/com/meterware/servletunit/ServletUnitHttpResponse.java
@@ -463,7 +463,7 @@
/**
* Returns the status of this response.
**/
- int getStatus() {
+ public int getStatus() {
return _status;
}
@@ -536,6 +536,26 @@
return _contentType;
}
+//--------------------------------------- methods added to ServletRequest in Servlet API 3.0 ----------------------------
+
+ public String getHeader(String name) {
+ Collection<String> values = getHeaders(name);
+ return values != null && !values.isEmpty() ? values.iterator().next() : null;
+ }
+
+ public Collection<String> getHeaders(String name) {
+ return (Collection<String>) _headers.get(name);
+ }
+
+ public Collection<String> getHeaderNames() {
+ return new ArrayList<String>(_headers.keySet());
+ }
+
+//--------------------------------------- methods added to ServletRequest in Servlet API 3.1 ----------------------------
+
+ public void setContentLengthLong(long len) {
+ setHeader("Content-Length", Long.toString(len));
+ }
//------------------------------------------- private members ------------------------------------
@@ -618,4 +638,11 @@
}
private ByteArrayOutputStream _stream;
+
+ public boolean isReady() {
+ return true;
+ }
+
+ public void setWriteListener(javax.servlet.WriteListener listener) {
+ }
}
--- a/src/com/meterware/servletunit/ServletUnitServletContext.java
+++ b/src/com/meterware/servletunit/ServletUnitServletContext.java
@@ -28,13 +28,21 @@
import java.net.URL;
import java.net.URLConnection;
import java.util.Enumeration;
+import java.util.EventListener;
import java.util.Hashtable;
+import java.util.Map;
import java.util.Set;
import java.util.Vector;
+import javax.servlet.Filter;
+import javax.servlet.FilterRegistration;
+import javax.servlet.Servlet;
import javax.servlet.ServletContext;
import javax.servlet.ServletException;
-
+import javax.servlet.ServletRegistration;
+import javax.servlet.SessionCookieConfig;
+import javax.servlet.SessionTrackingMode;
+import javax.servlet.descriptor.JspConfigDescriptor;
/**
@@ -365,6 +373,112 @@
return null;
}
+//-------------------------------------- servlet-api 3.0 additions -----------------------------------------------
+
+ public int getEffectiveMajorVersion() {
+ return 0;
+ }
+
+ public int getEffectiveMinorVersion() {
+ return 0;
+ }
+
+ public boolean setInitParameter(String name, String value) {
+ return false;
+ }
+
+ public ServletRegistration.Dynamic addServlet(String servletName, String className) {
+ return null;
+ }
+
+ public ServletRegistration.Dynamic addServlet(String servletName, Servlet servlet) {
+ return null;
+ }
+
+ public ServletRegistration.Dynamic addServlet(String servletName, Class<? extends Servlet> servletClass) {
+ return null;
+ }
+
+ public <T extends Servlet> T createServlet(Class<T> clazz) throws ServletException {
+ return null;
+ }
+
+ public ServletRegistration getServletRegistration(String servletName) {
+ return null;
+ }
+
+ public Map<String, ? extends ServletRegistration> getServletRegistrations() {
+ return null;
+ }
+
+ public FilterRegistration.Dynamic addFilter(String filterName, String className) {
+ return null;
+ }
+
+ public FilterRegistration.Dynamic addFilter(String filterName, Filter filter) {
+ return null;
+ }
+
+ public FilterRegistration.Dynamic addFilter(String filterName, Class<? extends Filter> filterClass) {
+ return null;
+ }
+
+ public <T extends Filter> T createFilter(Class<T> clazz) throws ServletException {
+ return null;
+ }
+
+ public FilterRegistration getFilterRegistration(String filterName) {
+ return null;
+ }
+
+ public Map<String, ? extends FilterRegistration> getFilterRegistrations() {
+ return null;
+ }
+
+ public SessionCookieConfig getSessionCookieConfig() {
+ return null;
+ }
+
+ public void setSessionTrackingModes(Set<SessionTrackingMode> sessionTrackingModes) {
+ }
+
+ public Set<SessionTrackingMode> getDefaultSessionTrackingModes() {
+ return null;
+ }
+
+ public Set<SessionTrackingMode> getEffectiveSessionTrackingModes() {
+ return null;
+ }
+
+ public void addListener(String className) {
+ }
+
+ public <T extends EventListener> void addListener(T t) {
+ }
+
+ public void addListener(Class<? extends EventListener> listenerClass) {
+ }
+
+ public <T extends EventListener> T createListener(Class<T> clazz) throws ServletException {
+ return null;
+ }
+
+ public JspConfigDescriptor getJspConfigDescriptor() {
+ return null;
+ }
+
+ public ClassLoader getClassLoader() {
+ return null;
+ }
+
+ public void declareRoles(String... roleNames) {
+ }
+
+//-------------------------------------- servlet-api 3.1 additions -----------------------------------------------
+
+ public String getVirtualServerName() {
+ return null;
+ }
//------------------------------------------- package members ----------------------------------------------------
--- a/src/com/meterware/servletunit/ServletInputStreamImpl.java
+++ b/src/com/meterware/servletunit/ServletInputStreamImpl.java
@@ -44,4 +44,15 @@
return _baseStream.read();
}
+ public boolean isFinished() {
+ return _baseStream.available() <= 0;
+ }
+
+ public boolean isReady() {
+ return true;
+ }
+
+ public void setReadListener(javax.servlet.ReadListener listener) {
+
+ }
}
|