consistent copies of mocks
This commit is contained in:
parent
76a6527c4c
commit
f0415306d5
|
|
@ -1,67 +1,66 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
|
import javax.servlet.ServletInputStream;
|
||||||
import javax.servlet.ServletInputStream;
|
|
||||||
|
import org.springframework.util.Assert;
|
||||||
import org.springframework.util.Assert;
|
|
||||||
|
/**
|
||||||
/**
|
* Delegating implementation of {@link javax.servlet.ServletInputStream}.
|
||||||
* Delegating implementation of {@link javax.servlet.ServletInputStream}.
|
*
|
||||||
*
|
* <p>Used by {@link MockHttpServletRequest}; typically not directly
|
||||||
* <p>Used by {@link org.springframework.mock.web.MockHttpServletRequest}; typically not directly
|
* used for testing application controllers.
|
||||||
* used for testing application controllers.
|
*
|
||||||
*
|
* @author Juergen Hoeller
|
||||||
* @author Juergen Hoeller
|
* @since 1.0.2
|
||||||
* @since 1.0.2
|
* @see MockHttpServletRequest
|
||||||
* @see org.springframework.mock.web.MockHttpServletRequest
|
*/
|
||||||
*/
|
public class DelegatingServletInputStream extends ServletInputStream {
|
||||||
public class DelegatingServletInputStream extends ServletInputStream {
|
|
||||||
|
private final InputStream sourceStream;
|
||||||
private final InputStream sourceStream;
|
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
* Create a DelegatingServletInputStream for the given source stream.
|
||||||
* Create a DelegatingServletInputStream for the given source stream.
|
* @param sourceStream the source stream (never <code>null</code>)
|
||||||
* @param sourceStream the source stream (never <code>null</code>)
|
*/
|
||||||
*/
|
public DelegatingServletInputStream(InputStream sourceStream) {
|
||||||
public DelegatingServletInputStream(InputStream sourceStream) {
|
Assert.notNull(sourceStream, "Source InputStream must not be null");
|
||||||
Assert.notNull(sourceStream, "Source InputStream must not be null");
|
this.sourceStream = sourceStream;
|
||||||
this.sourceStream = sourceStream;
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Return the underlying source stream (never <code>null</code>).
|
||||||
* Return the underlying source stream (never <code>null</code>).
|
*/
|
||||||
*/
|
public final InputStream getSourceStream() {
|
||||||
public final InputStream getSourceStream() {
|
return this.sourceStream;
|
||||||
return this.sourceStream;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
public int read() throws IOException {
|
||||||
public int read() throws IOException {
|
return this.sourceStream.read();
|
||||||
return this.sourceStream.read();
|
}
|
||||||
}
|
|
||||||
|
public void close() throws IOException {
|
||||||
public void close() throws IOException {
|
super.close();
|
||||||
super.close();
|
this.sourceStream.close();
|
||||||
this.sourceStream.close();
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -1,72 +1,71 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.OutputStream;
|
import java.io.OutputStream;
|
||||||
|
import javax.servlet.ServletOutputStream;
|
||||||
import javax.servlet.ServletOutputStream;
|
|
||||||
|
import org.springframework.util.Assert;
|
||||||
import org.springframework.util.Assert;
|
|
||||||
|
/**
|
||||||
/**
|
* Delegating implementation of {@link javax.servlet.ServletOutputStream}.
|
||||||
* Delegating implementation of {@link javax.servlet.ServletOutputStream}.
|
*
|
||||||
*
|
* <p>Used by {@link MockHttpServletResponse}; typically not directly
|
||||||
* <p>Used by {@link org.springframework.mock.web.MockHttpServletResponse}; typically not directly
|
* used for testing application controllers.
|
||||||
* used for testing application controllers.
|
*
|
||||||
*
|
* @author Juergen Hoeller
|
||||||
* @author Juergen Hoeller
|
* @since 1.0.2
|
||||||
* @since 1.0.2
|
* @see MockHttpServletResponse
|
||||||
* @see org.springframework.mock.web.MockHttpServletResponse
|
*/
|
||||||
*/
|
public class DelegatingServletOutputStream extends ServletOutputStream {
|
||||||
public class DelegatingServletOutputStream extends ServletOutputStream {
|
|
||||||
|
private final OutputStream targetStream;
|
||||||
private final OutputStream targetStream;
|
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
* Create a DelegatingServletOutputStream for the given target stream.
|
||||||
* Create a DelegatingServletOutputStream for the given target stream.
|
* @param targetStream the target stream (never <code>null</code>)
|
||||||
* @param targetStream the target stream (never <code>null</code>)
|
*/
|
||||||
*/
|
public DelegatingServletOutputStream(OutputStream targetStream) {
|
||||||
public DelegatingServletOutputStream(OutputStream targetStream) {
|
Assert.notNull(targetStream, "Target OutputStream must not be null");
|
||||||
Assert.notNull(targetStream, "Target OutputStream must not be null");
|
this.targetStream = targetStream;
|
||||||
this.targetStream = targetStream;
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Return the underlying target stream (never <code>null</code>).
|
||||||
* Return the underlying target stream (never <code>null</code>).
|
*/
|
||||||
*/
|
public final OutputStream getTargetStream() {
|
||||||
public final OutputStream getTargetStream() {
|
return this.targetStream;
|
||||||
return this.targetStream;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
public void write(int b) throws IOException {
|
||||||
public void write(int b) throws IOException {
|
this.targetStream.write(b);
|
||||||
this.targetStream.write(b);
|
}
|
||||||
}
|
|
||||||
|
public void flush() throws IOException {
|
||||||
public void flush() throws IOException {
|
super.flush();
|
||||||
super.flush();
|
this.targetStream.flush();
|
||||||
this.targetStream.flush();
|
}
|
||||||
}
|
|
||||||
|
public void close() throws IOException {
|
||||||
public void close() throws IOException {
|
super.close();
|
||||||
super.close();
|
this.targetStream.close();
|
||||||
this.targetStream.close();
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
|
||||||
|
|
@ -1,85 +1,92 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.util.Collection;
|
import java.util.ArrayList;
|
||||||
import java.util.Collections;
|
import java.util.Collection;
|
||||||
import java.util.Iterator;
|
import java.util.Collections;
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
import org.springframework.util.CollectionUtils;
|
import org.springframework.util.CollectionUtils;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Internal helper class that serves as value holder for request headers.
|
* Internal helper class that serves as value holder for request headers.
|
||||||
*
|
*
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @author Rick Evans
|
* @author Rick Evans
|
||||||
* @since 2.0.1
|
* @since 2.0.1
|
||||||
*/
|
*/
|
||||||
class HeaderValueHolder {
|
class HeaderValueHolder {
|
||||||
|
|
||||||
private final List values = new LinkedList();
|
private final List<Object> values = new LinkedList<Object>();
|
||||||
|
|
||||||
|
|
||||||
public void setValue(Object value) {
|
public void setValue(Object value) {
|
||||||
this.values.clear();
|
this.values.clear();
|
||||||
this.values.add(value);
|
this.values.add(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addValue(Object value) {
|
public void addValue(Object value) {
|
||||||
this.values.add(value);
|
this.values.add(value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addValues(Collection values) {
|
public void addValues(Collection<?> values) {
|
||||||
this.values.addAll(values);
|
this.values.addAll(values);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void addValueArray(Object values) {
|
public void addValueArray(Object values) {
|
||||||
CollectionUtils.mergeArrayIntoCollection(values, this.values);
|
CollectionUtils.mergeArrayIntoCollection(values, this.values);
|
||||||
}
|
}
|
||||||
|
|
||||||
public List getValues() {
|
public List<Object> getValues() {
|
||||||
return Collections.unmodifiableList(this.values);
|
return Collections.unmodifiableList(this.values);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Object getValue() {
|
public List<String> getStringValues() {
|
||||||
return (!this.values.isEmpty() ? this.values.get(0) : null);
|
List<String> stringList = new ArrayList<String>(this.values.size());
|
||||||
}
|
for (Object value : this.values) {
|
||||||
|
stringList.add(value.toString());
|
||||||
|
}
|
||||||
/**
|
return Collections.unmodifiableList(stringList);
|
||||||
* Find a HeaderValueHolder by name, ignoring casing.
|
}
|
||||||
* @param headers the Map of header names to HeaderValueHolders
|
|
||||||
* @param name the name of the desired header
|
public Object getValue() {
|
||||||
* @return the corresponding HeaderValueHolder,
|
return (!this.values.isEmpty() ? this.values.get(0) : null);
|
||||||
* or <code>null</code> if none found
|
}
|
||||||
*/
|
|
||||||
public static HeaderValueHolder getByName(Map headers, String name) {
|
|
||||||
Assert.notNull(name, "Header name must not be null");
|
/**
|
||||||
for (Iterator it = headers.keySet().iterator(); it.hasNext();) {
|
* Find a HeaderValueHolder by name, ignoring casing.
|
||||||
String headerName = (String) it.next();
|
* @param headers the Map of header names to HeaderValueHolders
|
||||||
if (headerName.equalsIgnoreCase(name)) {
|
* @param name the name of the desired header
|
||||||
return (HeaderValueHolder) headers.get(headerName);
|
* @return the corresponding HeaderValueHolder,
|
||||||
}
|
* or <code>null</code> if none found
|
||||||
}
|
*/
|
||||||
return null;
|
public static HeaderValueHolder getByName(Map<String, HeaderValueHolder> headers, String name) {
|
||||||
}
|
Assert.notNull(name, "Header name must not be null");
|
||||||
|
for (String headerName : headers.keySet()) {
|
||||||
}
|
if (headerName.equalsIgnoreCase(name)) {
|
||||||
|
return headers.get(headerName);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2006 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2008 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -16,12 +16,10 @@
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.util.Enumeration;
|
|
||||||
import java.util.Properties;
|
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Map;
|
import java.util.Enumeration;
|
||||||
import java.util.LinkedHashMap;
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
import javax.servlet.FilterConfig;
|
import javax.servlet.FilterConfig;
|
||||||
import javax.servlet.ServletContext;
|
import javax.servlet.ServletContext;
|
||||||
|
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
|
@ -1,245 +1,246 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.Enumeration;
|
import java.util.Collections;
|
||||||
import java.util.HashMap;
|
import java.util.Enumeration;
|
||||||
import java.util.Hashtable;
|
import java.util.HashMap;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.Map;
|
||||||
import javax.servlet.ServletContext;
|
import javax.servlet.ServletContext;
|
||||||
import javax.servlet.http.HttpSession;
|
import javax.servlet.http.HttpSession;
|
||||||
import javax.servlet.http.HttpSessionBindingEvent;
|
import javax.servlet.http.HttpSessionBindingEvent;
|
||||||
import javax.servlet.http.HttpSessionBindingListener;
|
import javax.servlet.http.HttpSessionBindingListener;
|
||||||
import javax.servlet.http.HttpSessionContext;
|
import javax.servlet.http.HttpSessionContext;
|
||||||
|
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.http.HttpSession} interface.
|
* Mock implementation of the {@link javax.servlet.http.HttpSession} interface.
|
||||||
* Supports the Servlet 2.4 API level.
|
* Supports the Servlet 2.4 API level.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; also useful for testing
|
* <p>Used for testing the web framework; also useful for testing
|
||||||
* application controllers.
|
* application controllers.
|
||||||
*
|
*
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @author Rod Johnson
|
* @author Rod Johnson
|
||||||
* @author Mark Fisher
|
* @author Mark Fisher
|
||||||
* @since 1.0.2
|
* @since 1.0.2
|
||||||
*/
|
*/
|
||||||
public class MockHttpSession implements HttpSession {
|
public class MockHttpSession implements HttpSession {
|
||||||
|
|
||||||
public static final String SESSION_COOKIE_NAME = "JSESSION";
|
public static final String SESSION_COOKIE_NAME = "JSESSION";
|
||||||
|
|
||||||
private static int nextId = 1;
|
private static int nextId = 1;
|
||||||
|
|
||||||
|
|
||||||
private final String id;
|
private final String id;
|
||||||
|
|
||||||
private final long creationTime = System.currentTimeMillis();
|
private final long creationTime = System.currentTimeMillis();
|
||||||
|
|
||||||
private int maxInactiveInterval;
|
private int maxInactiveInterval;
|
||||||
|
|
||||||
private long lastAccessedTime = System.currentTimeMillis();
|
private long lastAccessedTime = System.currentTimeMillis();
|
||||||
|
|
||||||
private final ServletContext servletContext;
|
private final ServletContext servletContext;
|
||||||
|
|
||||||
private final Hashtable attributes = new Hashtable();
|
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>();
|
||||||
|
|
||||||
private boolean invalid = false;
|
private boolean invalid = false;
|
||||||
|
|
||||||
private boolean isNew = true;
|
private boolean isNew = true;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new MockHttpSession with a default {@link org.springframework.mock.web.MockServletContext}.
|
* Create a new MockHttpSession with a default {@link MockServletContext}.
|
||||||
* @see org.springframework.mock.web.MockServletContext
|
* @see MockServletContext
|
||||||
*/
|
*/
|
||||||
public MockHttpSession() {
|
public MockHttpSession() {
|
||||||
this(null);
|
this(null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new MockHttpSession.
|
* Create a new MockHttpSession.
|
||||||
* @param servletContext the ServletContext that the session runs in
|
* @param servletContext the ServletContext that the session runs in
|
||||||
*/
|
*/
|
||||||
public MockHttpSession(ServletContext servletContext) {
|
public MockHttpSession(ServletContext servletContext) {
|
||||||
this(servletContext, null);
|
this(servletContext, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new MockHttpSession.
|
* Create a new MockHttpSession.
|
||||||
* @param servletContext the ServletContext that the session runs in
|
* @param servletContext the ServletContext that the session runs in
|
||||||
* @param id a unique identifier for this session
|
* @param id a unique identifier for this session
|
||||||
*/
|
*/
|
||||||
public MockHttpSession(ServletContext servletContext, String id) {
|
public MockHttpSession(ServletContext servletContext, String id) {
|
||||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext());
|
this.servletContext = (servletContext != null ? servletContext : new MockServletContext());
|
||||||
this.id = (id != null ? id : Integer.toString(nextId++));
|
this.id = (id != null ? id : Integer.toString(nextId++));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public long getCreationTime() {
|
public long getCreationTime() {
|
||||||
return this.creationTime;
|
return this.creationTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getId() {
|
public String getId() {
|
||||||
return this.id;
|
return this.id;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void access() {
|
public void access() {
|
||||||
this.lastAccessedTime = System.currentTimeMillis();
|
this.lastAccessedTime = System.currentTimeMillis();
|
||||||
this.isNew = false;
|
this.isNew = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
public long getLastAccessedTime() {
|
public long getLastAccessedTime() {
|
||||||
return this.lastAccessedTime;
|
return this.lastAccessedTime;
|
||||||
}
|
}
|
||||||
|
|
||||||
public ServletContext getServletContext() {
|
public ServletContext getServletContext() {
|
||||||
return this.servletContext;
|
return this.servletContext;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setMaxInactiveInterval(int interval) {
|
public void setMaxInactiveInterval(int interval) {
|
||||||
this.maxInactiveInterval = interval;
|
this.maxInactiveInterval = interval;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getMaxInactiveInterval() {
|
public int getMaxInactiveInterval() {
|
||||||
return this.maxInactiveInterval;
|
return this.maxInactiveInterval;
|
||||||
}
|
}
|
||||||
|
|
||||||
public HttpSessionContext getSessionContext() {
|
public HttpSessionContext getSessionContext() {
|
||||||
throw new UnsupportedOperationException("getSessionContext");
|
throw new UnsupportedOperationException("getSessionContext");
|
||||||
}
|
}
|
||||||
|
|
||||||
public Object getAttribute(String name) {
|
public Object getAttribute(String name) {
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
return this.attributes.get(name);
|
return this.attributes.get(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Object getValue(String name) {
|
public Object getValue(String name) {
|
||||||
return getAttribute(name);
|
return getAttribute(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Enumeration getAttributeNames() {
|
public Enumeration<String> getAttributeNames() {
|
||||||
return this.attributes.keys();
|
return Collections.enumeration(this.attributes.keySet());
|
||||||
}
|
}
|
||||||
|
|
||||||
public String[] getValueNames() {
|
public String[] getValueNames() {
|
||||||
return (String[]) this.attributes.keySet().toArray(new String[this.attributes.size()]);
|
return this.attributes.keySet().toArray(new String[this.attributes.size()]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setAttribute(String name, Object value) {
|
public void setAttribute(String name, Object value) {
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
if (value != null) {
|
if (value != null) {
|
||||||
this.attributes.put(name, value);
|
this.attributes.put(name, value);
|
||||||
if (value instanceof HttpSessionBindingListener) {
|
if (value instanceof HttpSessionBindingListener) {
|
||||||
((HttpSessionBindingListener) value).valueBound(new HttpSessionBindingEvent(this, name, value));
|
((HttpSessionBindingListener) value).valueBound(new HttpSessionBindingEvent(this, name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
removeAttribute(name);
|
removeAttribute(name);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void putValue(String name, Object value) {
|
public void putValue(String name, Object value) {
|
||||||
setAttribute(name, value);
|
setAttribute(name, value);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeAttribute(String name) {
|
public void removeAttribute(String name) {
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
Object value = this.attributes.remove(name);
|
Object value = this.attributes.remove(name);
|
||||||
if (value instanceof HttpSessionBindingListener) {
|
if (value instanceof HttpSessionBindingListener) {
|
||||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void removeValue(String name) {
|
public void removeValue(String name) {
|
||||||
removeAttribute(name);
|
removeAttribute(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Clear all of this session's attributes.
|
* Clear all of this session's attributes.
|
||||||
*/
|
*/
|
||||||
public void clearAttributes() {
|
public void clearAttributes() {
|
||||||
for (Iterator it = this.attributes.entrySet().iterator(); it.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> it = this.attributes.entrySet().iterator(); it.hasNext();) {
|
||||||
Map.Entry entry = (Map.Entry) it.next();
|
Map.Entry<String, Object> entry = it.next();
|
||||||
String name = (String) entry.getKey();
|
String name = entry.getKey();
|
||||||
Object value = entry.getValue();
|
Object value = entry.getValue();
|
||||||
it.remove();
|
it.remove();
|
||||||
if (value instanceof HttpSessionBindingListener) {
|
if (value instanceof HttpSessionBindingListener) {
|
||||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void invalidate() {
|
public void invalidate() {
|
||||||
this.invalid = true;
|
this.invalid = true;
|
||||||
clearAttributes();
|
clearAttributes();
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isInvalid() {
|
public boolean isInvalid() {
|
||||||
return this.invalid;
|
return this.invalid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setNew(boolean value) {
|
public void setNew(boolean value) {
|
||||||
this.isNew = value;
|
this.isNew = value;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isNew() {
|
public boolean isNew() {
|
||||||
return this.isNew;
|
return this.isNew;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Serialize the attributes of this session into an object that can
|
* Serialize the attributes of this session into an object that can
|
||||||
* be turned into a byte array with standard Java serialization.
|
* be turned into a byte array with standard Java serialization.
|
||||||
* @return a representation of this session's serialized state
|
* @return a representation of this session's serialized state
|
||||||
*/
|
*/
|
||||||
public Serializable serializeState() {
|
public Serializable serializeState() {
|
||||||
HashMap state = new HashMap();
|
HashMap<String, Serializable> state = new HashMap<String, Serializable>();
|
||||||
for (Iterator it = this.attributes.entrySet().iterator(); it.hasNext();) {
|
for (Iterator<Map.Entry<String, Object>> it = this.attributes.entrySet().iterator(); it.hasNext();) {
|
||||||
Map.Entry entry = (Map.Entry) it.next();
|
Map.Entry<String, Object> entry = it.next();
|
||||||
String name = (String) entry.getKey();
|
String name = entry.getKey();
|
||||||
Object value = entry.getValue();
|
Object value = entry.getValue();
|
||||||
it.remove();
|
it.remove();
|
||||||
if (value instanceof Serializable) {
|
if (value instanceof Serializable) {
|
||||||
state.put(name, value);
|
state.put(name, (Serializable) value);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// Not serializable... Servlet containers usually automatically
|
// Not serializable... Servlet containers usually automatically
|
||||||
// unbind the attribute in this case.
|
// unbind the attribute in this case.
|
||||||
if (value instanceof HttpSessionBindingListener) {
|
if (value instanceof HttpSessionBindingListener) {
|
||||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Deserialize the attributes of this session from a state object
|
* Deserialize the attributes of this session from a state object
|
||||||
* created by {@link #serializeState()}.
|
* created by {@link #serializeState()}.
|
||||||
* @param state a representation of this session's serialized state
|
* @param state a representation of this session's serialized state
|
||||||
*/
|
*/
|
||||||
public void deserializeState(Serializable state) {
|
@SuppressWarnings("unchecked")
|
||||||
Assert.isTrue(state instanceof Map, "Serialized state needs to be of type [java.util.Map]");
|
public void deserializeState(Serializable state) {
|
||||||
this.attributes.putAll((Map) state);
|
Assert.isTrue(state instanceof Map, "Serialized state needs to be of type [java.util.Map]");
|
||||||
}
|
this.attributes.putAll((Map<String, Object>) state);
|
||||||
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
@ -19,7 +19,6 @@ package org.springframework.mock.web;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
import java.io.Writer;
|
import java.io.Writer;
|
||||||
|
|
||||||
import javax.servlet.http.HttpServletResponse;
|
import javax.servlet.http.HttpServletResponse;
|
||||||
import javax.servlet.jsp.JspWriter;
|
import javax.servlet.jsp.JspWriter;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ package org.springframework.mock.web;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.HashMap;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import javax.el.ELContext;
|
import javax.el.ELContext;
|
||||||
import javax.servlet.Servlet;
|
import javax.servlet.Servlet;
|
||||||
|
|
@ -61,7 +61,7 @@ public class MockPageContext extends PageContext {
|
||||||
|
|
||||||
private final ServletConfig servletConfig;
|
private final ServletConfig servletConfig;
|
||||||
|
|
||||||
private final Map<String, Object> attributes = new HashMap<String, Object>();
|
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>();
|
||||||
|
|
||||||
private JspWriter out;
|
private JspWriter out;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,91 +1,91 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import javax.servlet.RequestDispatcher;
|
import javax.servlet.RequestDispatcher;
|
||||||
import javax.servlet.ServletRequest;
|
import javax.servlet.ServletRequest;
|
||||||
import javax.servlet.ServletResponse;
|
import javax.servlet.ServletResponse;
|
||||||
import javax.servlet.http.HttpServletResponseWrapper;
|
import javax.servlet.http.HttpServletResponseWrapper;
|
||||||
|
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.LogFactory;
|
import org.apache.commons.logging.LogFactory;
|
||||||
|
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.Assert;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Mock implementation of the {@link javax.servlet.RequestDispatcher} interface.
|
* Mock implementation of the {@link javax.servlet.RequestDispatcher} interface.
|
||||||
*
|
*
|
||||||
* <p>Used for testing the web framework; typically not necessary for
|
* <p>Used for testing the web framework; typically not necessary for
|
||||||
* testing application controllers.
|
* testing application controllers.
|
||||||
*
|
*
|
||||||
* @author Rod Johnson
|
* @author Rod Johnson
|
||||||
* @author Juergen Hoeller
|
* @author Juergen Hoeller
|
||||||
* @since 1.0.2
|
* @since 1.0.2
|
||||||
*/
|
*/
|
||||||
public class MockRequestDispatcher implements RequestDispatcher {
|
public class MockRequestDispatcher implements RequestDispatcher {
|
||||||
|
|
||||||
private final Log logger = LogFactory.getLog(getClass());
|
private final Log logger = LogFactory.getLog(getClass());
|
||||||
|
|
||||||
private final String url;
|
private final String url;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a new MockRequestDispatcher for the given URL.
|
* Create a new MockRequestDispatcher for the given URL.
|
||||||
* @param url the URL to dispatch to.
|
* @param url the URL to dispatch to.
|
||||||
*/
|
*/
|
||||||
public MockRequestDispatcher(String url) {
|
public MockRequestDispatcher(String url) {
|
||||||
Assert.notNull(url, "URL must not be null");
|
Assert.notNull(url, "URL must not be null");
|
||||||
this.url = url;
|
this.url = url;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
public void forward(ServletRequest request, ServletResponse response) {
|
public void forward(ServletRequest request, ServletResponse response) {
|
||||||
Assert.notNull(request, "Request must not be null");
|
Assert.notNull(request, "Request must not be null");
|
||||||
Assert.notNull(response, "Response must not be null");
|
Assert.notNull(response, "Response must not be null");
|
||||||
if (response.isCommitted()) {
|
if (response.isCommitted()) {
|
||||||
throw new IllegalStateException("Cannot perform forward - response is already committed");
|
throw new IllegalStateException("Cannot perform forward - response is already committed");
|
||||||
}
|
}
|
||||||
getMockHttpServletResponse(response).setForwardedUrl(this.url);
|
getMockHttpServletResponse(response).setForwardedUrl(this.url);
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("MockRequestDispatcher: forwarding to URL [" + this.url + "]");
|
logger.debug("MockRequestDispatcher: forwarding to URL [" + this.url + "]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public void include(ServletRequest request, ServletResponse response) {
|
public void include(ServletRequest request, ServletResponse response) {
|
||||||
Assert.notNull(request, "Request must not be null");
|
Assert.notNull(request, "Request must not be null");
|
||||||
Assert.notNull(response, "Response must not be null");
|
Assert.notNull(response, "Response must not be null");
|
||||||
getMockHttpServletResponse(response).setIncludedUrl(this.url);
|
getMockHttpServletResponse(response).setIncludedUrl(this.url);
|
||||||
if (logger.isDebugEnabled()) {
|
if (logger.isDebugEnabled()) {
|
||||||
logger.debug("MockRequestDispatcher: including URL [" + this.url + "]");
|
logger.debug("MockRequestDispatcher: including URL [" + this.url + "]");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Obtain the underlying MockHttpServletResponse,
|
* Obtain the underlying MockHttpServletResponse,
|
||||||
* unwrapping {@link javax.servlet.http.HttpServletResponseWrapper} decorators if necessary.
|
* unwrapping {@link HttpServletResponseWrapper} decorators if necessary.
|
||||||
*/
|
*/
|
||||||
protected MockHttpServletResponse getMockHttpServletResponse(ServletResponse response) {
|
protected MockHttpServletResponse getMockHttpServletResponse(ServletResponse response) {
|
||||||
if (response instanceof MockHttpServletResponse) {
|
if (response instanceof MockHttpServletResponse) {
|
||||||
return (MockHttpServletResponse) response;
|
return (MockHttpServletResponse) response;
|
||||||
}
|
}
|
||||||
if (response instanceof HttpServletResponseWrapper) {
|
if (response instanceof HttpServletResponseWrapper) {
|
||||||
return getMockHttpServletResponse(((HttpServletResponseWrapper) response).getResponse());
|
return getMockHttpServletResponse(((HttpServletResponseWrapper) response).getResponse());
|
||||||
}
|
}
|
||||||
throw new IllegalArgumentException("MockRequestDispatcher requires MockHttpServletResponse");
|
throw new IllegalArgumentException("MockRequestDispatcher requires MockHttpServletResponse");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2008 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
|
|
||||||
|
|
@ -1,356 +1,355 @@
|
||||||
/*
|
/*
|
||||||
* Copyright 2002-2007 the original author or authors.
|
* Copyright 2002-2009 the original author or authors.
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
* You may obtain a copy of the License at
|
* You may obtain a copy of the License at
|
||||||
*
|
*
|
||||||
* http://www.apache.org/licenses/LICENSE-2.0
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
*
|
*
|
||||||
* Unless required by applicable law or agreed to in writing, software
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
* See the License for the specific language governing permissions and
|
* See the License for the specific language governing permissions and
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package org.springframework.mock.web;
|
package org.springframework.mock.web;
|
||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.io.InputStream;
|
import java.io.InputStream;
|
||||||
import java.net.MalformedURLException;
|
import java.net.MalformedURLException;
|
||||||
import java.net.URL;
|
import java.net.URL;
|
||||||
import java.util.Collections;
|
import java.util.Collections;
|
||||||
import java.util.Enumeration;
|
import java.util.Enumeration;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
import java.util.Hashtable;
|
import java.util.HashSet;
|
||||||
import java.util.LinkedHashSet;
|
import java.util.LinkedHashMap;
|
||||||
import java.util.Map;
|
import java.util.LinkedHashSet;
|
||||||
import java.util.Properties;
|
import java.util.Map;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import javax.activation.FileTypeMap;
|
||||||
import javax.activation.FileTypeMap;
|
import javax.servlet.RequestDispatcher;
|
||||||
import javax.servlet.RequestDispatcher;
|
import javax.servlet.Servlet;
|
||||||
import javax.servlet.Servlet;
|
import javax.servlet.ServletContext;
|
||||||
import javax.servlet.ServletContext;
|
|
||||||
|
import org.apache.commons.logging.Log;
|
||||||
import org.apache.commons.logging.Log;
|
import org.apache.commons.logging.LogFactory;
|
||||||
import org.apache.commons.logging.LogFactory;
|
|
||||||
|
import org.springframework.core.io.DefaultResourceLoader;
|
||||||
import org.springframework.core.io.DefaultResourceLoader;
|
import org.springframework.core.io.Resource;
|
||||||
import org.springframework.core.io.Resource;
|
import org.springframework.core.io.ResourceLoader;
|
||||||
import org.springframework.core.io.ResourceLoader;
|
import org.springframework.util.Assert;
|
||||||
import org.springframework.util.Assert;
|
import org.springframework.util.ObjectUtils;
|
||||||
import org.springframework.util.ObjectUtils;
|
import org.springframework.web.util.WebUtils;
|
||||||
import org.springframework.web.util.WebUtils;
|
|
||||||
|
/**
|
||||||
/**
|
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
|
||||||
* Mock implementation of the {@link javax.servlet.ServletContext} interface.
|
*
|
||||||
*
|
* <p>Used for testing the Spring web framework; only rarely necessary for testing
|
||||||
* <p>Used for testing the Spring web framework; only rarely necessary for testing
|
* application controllers. As long as application components don't explicitly
|
||||||
* application controllers. As long as application components don't explicitly
|
* access the ServletContext, ClassPathXmlApplicationContext or
|
||||||
* access the ServletContext, ClassPathXmlApplicationContext or
|
* FileSystemXmlApplicationContext can be used to load the context files for testing,
|
||||||
* FileSystemXmlApplicationContext can be used to load the context files for testing,
|
* even for DispatcherServlet context definitions.
|
||||||
* even for DispatcherServlet context definitions.
|
*
|
||||||
*
|
* <p>For setting up a full WebApplicationContext in a test environment, you can
|
||||||
* <p>For setting up a full WebApplicationContext in a test environment, you can
|
* use XmlWebApplicationContext (or GenericWebApplicationContext), passing in an
|
||||||
* use XmlWebApplicationContext (or GenericWebApplicationContext), passing in an
|
* appropriate MockServletContext instance. You might want to configure your
|
||||||
* appropriate MockServletContext instance. You might want to configure your
|
* MockServletContext with a FileSystemResourceLoader in that case, to make your
|
||||||
* MockServletContext with a FileSystemResourceLoader in that case, to make your
|
* resource paths interpreted as relative file system locations.
|
||||||
* resource paths interpreted as relative file system locations.
|
*
|
||||||
*
|
* <p>A common setup is to point your JVM working directory to the root of your
|
||||||
* <p>A common setup is to point your JVM working directory to the root of your
|
* web application directory, in combination with filesystem-based resource loading.
|
||||||
* web application directory, in combination with filesystem-based resource loading.
|
* This allows to load the context files as used in the web application, with
|
||||||
* This allows to load the context files as used in the web application, with
|
* relative paths getting interpreted correctly. Such a setup will work with both
|
||||||
* relative paths getting interpreted correctly. Such a setup will work with both
|
* FileSystemXmlApplicationContext (which will load straight from the file system)
|
||||||
* FileSystemXmlApplicationContext (which will load straight from the file system)
|
* and XmlWebApplicationContext with an underlying MockServletContext (as long as
|
||||||
* and XmlWebApplicationContext with an underlying MockServletContext (as long as
|
* the MockServletContext has been configured with a FileSystemResourceLoader).
|
||||||
* the MockServletContext has been configured with a FileSystemResourceLoader).
|
*
|
||||||
*
|
* @author Rod Johnson
|
||||||
* @author Rod Johnson
|
* @author Juergen Hoeller
|
||||||
* @author Juergen Hoeller
|
* @since 1.0.2
|
||||||
* @since 1.0.2
|
* @see #MockServletContext(org.springframework.core.io.ResourceLoader)
|
||||||
* @see #MockServletContext(org.springframework.core.io.ResourceLoader)
|
* @see org.springframework.web.context.support.XmlWebApplicationContext
|
||||||
* @see org.springframework.web.context.support.XmlWebApplicationContext
|
* @see org.springframework.web.context.support.GenericWebApplicationContext
|
||||||
* @see org.springframework.web.context.support.GenericWebApplicationContext
|
* @see org.springframework.context.support.ClassPathXmlApplicationContext
|
||||||
* @see org.springframework.context.support.ClassPathXmlApplicationContext
|
* @see org.springframework.context.support.FileSystemXmlApplicationContext
|
||||||
* @see org.springframework.context.support.FileSystemXmlApplicationContext
|
*/
|
||||||
*/
|
public class MockServletContext implements ServletContext {
|
||||||
public class MockServletContext implements ServletContext {
|
|
||||||
|
private static final String TEMP_DIR_SYSTEM_PROPERTY = "java.io.tmpdir";
|
||||||
private static final String TEMP_DIR_SYSTEM_PROPERTY = "java.io.tmpdir";
|
|
||||||
|
|
||||||
|
private final Log logger = LogFactory.getLog(getClass());
|
||||||
private final Log logger = LogFactory.getLog(getClass());
|
|
||||||
|
private final ResourceLoader resourceLoader;
|
||||||
private final ResourceLoader resourceLoader;
|
|
||||||
|
private final String resourceBasePath;
|
||||||
private final String resourceBasePath;
|
|
||||||
|
private String contextPath = "";
|
||||||
private String contextPath = "";
|
|
||||||
|
private final Map<String, ServletContext> contexts = new HashMap<String, ServletContext>();
|
||||||
private final Map contexts = new HashMap();
|
|
||||||
|
private final Map<String, String> initParameters = new LinkedHashMap<String, String>();
|
||||||
private final Properties initParameters = new Properties();
|
|
||||||
|
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>();
|
||||||
private final Hashtable attributes = new Hashtable();
|
|
||||||
|
private String servletContextName = "MockServletContext";
|
||||||
private String servletContextName = "MockServletContext";
|
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
* Create a new MockServletContext, using no base path and a
|
||||||
* Create a new MockServletContext, using no base path and a
|
* DefaultResourceLoader (i.e. the classpath root as WAR root).
|
||||||
* DefaultResourceLoader (i.e. the classpath root as WAR root).
|
* @see org.springframework.core.io.DefaultResourceLoader
|
||||||
* @see org.springframework.core.io.DefaultResourceLoader
|
*/
|
||||||
*/
|
public MockServletContext() {
|
||||||
public MockServletContext() {
|
this("", null);
|
||||||
this("", null);
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Create a new MockServletContext, using a DefaultResourceLoader.
|
||||||
* Create a new MockServletContext, using a DefaultResourceLoader.
|
* @param resourceBasePath the WAR root directory (should not end with a slash)
|
||||||
* @param resourceBasePath the WAR root directory (should not end with a slash)
|
* @see org.springframework.core.io.DefaultResourceLoader
|
||||||
* @see org.springframework.core.io.DefaultResourceLoader
|
*/
|
||||||
*/
|
public MockServletContext(String resourceBasePath) {
|
||||||
public MockServletContext(String resourceBasePath) {
|
this(resourceBasePath, null);
|
||||||
this(resourceBasePath, null);
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Create a new MockServletContext, using the specified ResourceLoader
|
||||||
* Create a new MockServletContext, using the specified ResourceLoader
|
* and no base path.
|
||||||
* and no base path.
|
* @param resourceLoader the ResourceLoader to use (or null for the default)
|
||||||
* @param resourceLoader the ResourceLoader to use (or null for the default)
|
*/
|
||||||
*/
|
public MockServletContext(ResourceLoader resourceLoader) {
|
||||||
public MockServletContext(ResourceLoader resourceLoader) {
|
this("", resourceLoader);
|
||||||
this("", resourceLoader);
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
/**
|
* Create a new MockServletContext.
|
||||||
* Create a new MockServletContext.
|
* @param resourceBasePath the WAR root directory (should not end with a slash)
|
||||||
* @param resourceBasePath the WAR root directory (should not end with a slash)
|
* @param resourceLoader the ResourceLoader to use (or null for the default)
|
||||||
* @param resourceLoader the ResourceLoader to use (or null for the default)
|
*/
|
||||||
*/
|
public MockServletContext(String resourceBasePath, ResourceLoader resourceLoader) {
|
||||||
public MockServletContext(String resourceBasePath, ResourceLoader resourceLoader) {
|
this.resourceLoader = (resourceLoader != null ? resourceLoader : new DefaultResourceLoader());
|
||||||
this.resourceLoader = (resourceLoader != null ? resourceLoader : new DefaultResourceLoader());
|
this.resourceBasePath = (resourceBasePath != null ? resourceBasePath : "");
|
||||||
this.resourceBasePath = (resourceBasePath != null ? resourceBasePath : "");
|
|
||||||
|
// Use JVM temp dir as ServletContext temp dir.
|
||||||
// Use JVM temp dir as ServletContext temp dir.
|
String tempDir = System.getProperty(TEMP_DIR_SYSTEM_PROPERTY);
|
||||||
String tempDir = System.getProperty(TEMP_DIR_SYSTEM_PROPERTY);
|
if (tempDir != null) {
|
||||||
if (tempDir != null) {
|
this.attributes.put(WebUtils.TEMP_DIR_CONTEXT_ATTRIBUTE, new File(tempDir));
|
||||||
this.attributes.put(WebUtils.TEMP_DIR_CONTEXT_ATTRIBUTE, new File(tempDir));
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
* Build a full resource location for the given path,
|
||||||
* Build a full resource location for the given path,
|
* prepending the resource base path of this MockServletContext.
|
||||||
* prepending the resource base path of this MockServletContext.
|
* @param path the path as specified
|
||||||
* @param path the path as specified
|
* @return the full resource path
|
||||||
* @return the full resource path
|
*/
|
||||||
*/
|
protected String getResourceLocation(String path) {
|
||||||
protected String getResourceLocation(String path) {
|
if (!path.startsWith("/")) {
|
||||||
if (!path.startsWith("/")) {
|
path = "/" + path;
|
||||||
path = "/" + path;
|
}
|
||||||
}
|
return this.resourceBasePath + path;
|
||||||
return this.resourceBasePath + path;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
public void setContextPath(String contextPath) {
|
||||||
public void setContextPath(String contextPath) {
|
this.contextPath = (contextPath != null ? contextPath : "");
|
||||||
this.contextPath = (contextPath != null ? contextPath : "");
|
}
|
||||||
}
|
|
||||||
|
/* This is a Servlet API 2.5 method. */
|
||||||
/* This is a Servlet API 2.5 method. */
|
public String getContextPath() {
|
||||||
public String getContextPath() {
|
return this.contextPath;
|
||||||
return this.contextPath;
|
}
|
||||||
}
|
|
||||||
|
public void registerContext(String contextPath, ServletContext context) {
|
||||||
public void registerContext(String contextPath, ServletContext context) {
|
this.contexts.put(contextPath, context);
|
||||||
this.contexts.put(contextPath, context);
|
}
|
||||||
}
|
|
||||||
|
public ServletContext getContext(String contextPath) {
|
||||||
public ServletContext getContext(String contextPath) {
|
if (this.contextPath.equals(contextPath)) {
|
||||||
if (this.contextPath.equals(contextPath)) {
|
return this;
|
||||||
return this;
|
}
|
||||||
}
|
return this.contexts.get(contextPath);
|
||||||
return (ServletContext) this.contexts.get(contextPath);
|
}
|
||||||
}
|
|
||||||
|
public int getMajorVersion() {
|
||||||
public int getMajorVersion() {
|
return 2;
|
||||||
return 2;
|
}
|
||||||
}
|
|
||||||
|
public int getMinorVersion() {
|
||||||
public int getMinorVersion() {
|
return 5;
|
||||||
return 5;
|
}
|
||||||
}
|
|
||||||
|
public String getMimeType(String filePath) {
|
||||||
public String getMimeType(String filePath) {
|
return MimeTypeResolver.getMimeType(filePath);
|
||||||
return MimeTypeResolver.getMimeType(filePath);
|
}
|
||||||
}
|
|
||||||
|
public Set<String> getResourcePaths(String path) {
|
||||||
public Set getResourcePaths(String path) {
|
String actualPath = (path.endsWith("/") ? path : path + "/");
|
||||||
String actualPath = (path.endsWith("/") ? path : path + "/");
|
Resource resource = this.resourceLoader.getResource(getResourceLocation(actualPath));
|
||||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(actualPath));
|
try {
|
||||||
try {
|
File file = resource.getFile();
|
||||||
File file = resource.getFile();
|
String[] fileList = file.list();
|
||||||
String[] fileList = file.list();
|
if (ObjectUtils.isEmpty(fileList)) {
|
||||||
if (ObjectUtils.isEmpty(fileList)) {
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
Set<String> resourcePaths = new LinkedHashSet<String>(fileList.length);
|
||||||
Set resourcePaths = new LinkedHashSet(fileList.length);
|
for (String fileEntry : fileList) {
|
||||||
for (int i = 0; i < fileList.length; i++) {
|
String resultPath = actualPath + fileEntry;
|
||||||
String resultPath = actualPath + fileList[i];
|
if (resource.createRelative(fileEntry).getFile().isDirectory()) {
|
||||||
if (resource.createRelative(fileList[i]).getFile().isDirectory()) {
|
resultPath += "/";
|
||||||
resultPath += "/";
|
}
|
||||||
}
|
resourcePaths.add(resultPath);
|
||||||
resourcePaths.add(resultPath);
|
}
|
||||||
}
|
return resourcePaths;
|
||||||
return resourcePaths;
|
}
|
||||||
}
|
catch (IOException ex) {
|
||||||
catch (IOException ex) {
|
logger.warn("Couldn't get resource paths for " + resource, ex);
|
||||||
logger.warn("Couldn't get resource paths for " + resource, ex);
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public URL getResource(String path) throws MalformedURLException {
|
||||||
public URL getResource(String path) throws MalformedURLException {
|
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
||||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
if (!resource.exists()) {
|
||||||
if (!resource.exists()) {
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
try {
|
||||||
try {
|
return resource.getURL();
|
||||||
return resource.getURL();
|
}
|
||||||
}
|
catch (MalformedURLException ex) {
|
||||||
catch (MalformedURLException ex) {
|
throw ex;
|
||||||
throw ex;
|
}
|
||||||
}
|
catch (IOException ex) {
|
||||||
catch (IOException ex) {
|
logger.warn("Couldn't get URL for " + resource, ex);
|
||||||
logger.warn("Couldn't get URL for " + resource, ex);
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public InputStream getResourceAsStream(String path) {
|
||||||
public InputStream getResourceAsStream(String path) {
|
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
||||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
if (!resource.exists()) {
|
||||||
if (!resource.exists()) {
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
try {
|
||||||
try {
|
return resource.getInputStream();
|
||||||
return resource.getInputStream();
|
}
|
||||||
}
|
catch (IOException ex) {
|
||||||
catch (IOException ex) {
|
logger.warn("Couldn't open InputStream for " + resource, ex);
|
||||||
logger.warn("Couldn't open InputStream for " + resource, ex);
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public RequestDispatcher getRequestDispatcher(String path) {
|
||||||
public RequestDispatcher getRequestDispatcher(String path) {
|
if (!path.startsWith("/")) {
|
||||||
if (!path.startsWith("/")) {
|
throw new IllegalArgumentException("RequestDispatcher path at ServletContext level must start with '/'");
|
||||||
throw new IllegalArgumentException("RequestDispatcher path at ServletContext level must start with '/'");
|
}
|
||||||
}
|
return new MockRequestDispatcher(path);
|
||||||
return new MockRequestDispatcher(path);
|
}
|
||||||
}
|
|
||||||
|
public RequestDispatcher getNamedDispatcher(String path) {
|
||||||
public RequestDispatcher getNamedDispatcher(String path) {
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
|
||||||
|
public Servlet getServlet(String name) {
|
||||||
public Servlet getServlet(String name) {
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
|
||||||
|
public Enumeration<Servlet> getServlets() {
|
||||||
public Enumeration getServlets() {
|
return Collections.enumeration(new HashSet<Servlet>());
|
||||||
return Collections.enumeration(Collections.EMPTY_SET);
|
}
|
||||||
}
|
|
||||||
|
public Enumeration<String> getServletNames() {
|
||||||
public Enumeration getServletNames() {
|
return Collections.enumeration(new HashSet<String>());
|
||||||
return Collections.enumeration(Collections.EMPTY_SET);
|
}
|
||||||
}
|
|
||||||
|
public void log(String message) {
|
||||||
public void log(String message) {
|
logger.info(message);
|
||||||
logger.info(message);
|
}
|
||||||
}
|
|
||||||
|
public void log(Exception ex, String message) {
|
||||||
public void log(Exception ex, String message) {
|
logger.info(message, ex);
|
||||||
logger.info(message, ex);
|
}
|
||||||
}
|
|
||||||
|
public void log(String message, Throwable ex) {
|
||||||
public void log(String message, Throwable ex) {
|
logger.info(message, ex);
|
||||||
logger.info(message, ex);
|
}
|
||||||
}
|
|
||||||
|
public String getRealPath(String path) {
|
||||||
public String getRealPath(String path) {
|
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
||||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path));
|
try {
|
||||||
try {
|
return resource.getFile().getAbsolutePath();
|
||||||
return resource.getFile().getAbsolutePath();
|
}
|
||||||
}
|
catch (IOException ex) {
|
||||||
catch (IOException ex) {
|
logger.warn("Couldn't determine real path of resource " + resource, ex);
|
||||||
logger.warn("Couldn't determine real path of resource " + resource, ex);
|
return null;
|
||||||
return null;
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public String getServerInfo() {
|
||||||
public String getServerInfo() {
|
return "MockServletContext";
|
||||||
return "MockServletContext";
|
}
|
||||||
}
|
|
||||||
|
public String getInitParameter(String name) {
|
||||||
public String getInitParameter(String name) {
|
Assert.notNull(name, "Parameter name must not be null");
|
||||||
Assert.notNull(name, "Parameter name must not be null");
|
return this.initParameters.get(name);
|
||||||
return this.initParameters.getProperty(name);
|
}
|
||||||
}
|
|
||||||
|
public void addInitParameter(String name, String value) {
|
||||||
public void addInitParameter(String name, String value) {
|
Assert.notNull(name, "Parameter name must not be null");
|
||||||
Assert.notNull(name, "Parameter name must not be null");
|
this.initParameters.put(name, value);
|
||||||
this.initParameters.setProperty(name, value);
|
}
|
||||||
}
|
|
||||||
|
public Enumeration<String> getInitParameterNames() {
|
||||||
public Enumeration getInitParameterNames() {
|
return Collections.enumeration(this.initParameters.keySet());
|
||||||
return this.initParameters.keys();
|
}
|
||||||
}
|
|
||||||
|
public Object getAttribute(String name) {
|
||||||
public Object getAttribute(String name) {
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
return this.attributes.get(name);
|
||||||
return this.attributes.get(name);
|
}
|
||||||
}
|
|
||||||
|
public Enumeration<String> getAttributeNames() {
|
||||||
public Enumeration getAttributeNames() {
|
return Collections.enumeration(this.attributes.keySet());
|
||||||
return this.attributes.keys();
|
}
|
||||||
}
|
|
||||||
|
public void setAttribute(String name, Object value) {
|
||||||
public void setAttribute(String name, Object value) {
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
if (value != null) {
|
||||||
if (value != null) {
|
this.attributes.put(name, value);
|
||||||
this.attributes.put(name, value);
|
}
|
||||||
}
|
else {
|
||||||
else {
|
this.attributes.remove(name);
|
||||||
this.attributes.remove(name);
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
public void removeAttribute(String name) {
|
||||||
public void removeAttribute(String name) {
|
Assert.notNull(name, "Attribute name must not be null");
|
||||||
Assert.notNull(name, "Attribute name must not be null");
|
this.attributes.remove(name);
|
||||||
this.attributes.remove(name);
|
}
|
||||||
}
|
|
||||||
|
public void setServletContextName(String servletContextName) {
|
||||||
public void setServletContextName(String servletContextName) {
|
this.servletContextName = servletContextName;
|
||||||
this.servletContextName = servletContextName;
|
}
|
||||||
}
|
|
||||||
|
public String getServletContextName() {
|
||||||
public String getServletContextName() {
|
return this.servletContextName;
|
||||||
return this.servletContextName;
|
}
|
||||||
}
|
|
||||||
|
|
||||||
|
/**
|
||||||
/**
|
* Inner factory class used to just introduce a Java Activation Framework
|
||||||
* Inner factory class used to just introduce a Java Activation Framework
|
* dependency when actually asked to resolve a MIME type.
|
||||||
* dependency when actually asked to resolve a MIME type.
|
*/
|
||||||
*/
|
private static class MimeTypeResolver {
|
||||||
private static class MimeTypeResolver {
|
|
||||||
|
public static String getMimeType(String filePath) {
|
||||||
public static String getMimeType(String filePath) {
|
return FileTypeMap.getDefaultFileTypeMap().getContentType(filePath);
|
||||||
return FileTypeMap.getDefaultFileTypeMap().getContentType(filePath);
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue