Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@559 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/head
18 changed files with 3476 additions and 3210 deletions
@ -1,67 +1,66 @@
@@ -1,67 +1,66 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
|
||||
import javax.servlet.ServletInputStream; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Delegating implementation of {@link javax.servlet.ServletInputStream}. |
||||
* |
||||
* <p>Used by {@link org.springframework.mock.web.MockHttpServletRequest}; typically not directly |
||||
* used for testing application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see org.springframework.mock.web.MockHttpServletRequest |
||||
*/ |
||||
public class DelegatingServletInputStream extends ServletInputStream { |
||||
|
||||
private final InputStream sourceStream; |
||||
|
||||
|
||||
/** |
||||
* Create a DelegatingServletInputStream for the given source stream. |
||||
* @param sourceStream the source stream (never <code>null</code>) |
||||
*/ |
||||
public DelegatingServletInputStream(InputStream sourceStream) { |
||||
Assert.notNull(sourceStream, "Source InputStream must not be null"); |
||||
this.sourceStream = sourceStream; |
||||
} |
||||
|
||||
/** |
||||
* Return the underlying source stream (never <code>null</code>). |
||||
*/ |
||||
public final InputStream getSourceStream() { |
||||
return this.sourceStream; |
||||
} |
||||
|
||||
|
||||
public int read() throws IOException { |
||||
return this.sourceStream.read(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
super.close(); |
||||
this.sourceStream.close(); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import javax.servlet.ServletInputStream; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Delegating implementation of {@link javax.servlet.ServletInputStream}. |
||||
* |
||||
* <p>Used by {@link MockHttpServletRequest}; typically not directly |
||||
* used for testing application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see MockHttpServletRequest |
||||
*/ |
||||
public class DelegatingServletInputStream extends ServletInputStream { |
||||
|
||||
private final InputStream sourceStream; |
||||
|
||||
|
||||
/** |
||||
* Create a DelegatingServletInputStream for the given source stream. |
||||
* @param sourceStream the source stream (never <code>null</code>) |
||||
*/ |
||||
public DelegatingServletInputStream(InputStream sourceStream) { |
||||
Assert.notNull(sourceStream, "Source InputStream must not be null"); |
||||
this.sourceStream = sourceStream; |
||||
} |
||||
|
||||
/** |
||||
* Return the underlying source stream (never <code>null</code>). |
||||
*/ |
||||
public final InputStream getSourceStream() { |
||||
return this.sourceStream; |
||||
} |
||||
|
||||
|
||||
public int read() throws IOException { |
||||
return this.sourceStream.read(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
super.close(); |
||||
this.sourceStream.close(); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,72 +1,71 @@
@@ -1,72 +1,71 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.OutputStream; |
||||
|
||||
import javax.servlet.ServletOutputStream; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Delegating implementation of {@link javax.servlet.ServletOutputStream}. |
||||
* |
||||
* <p>Used by {@link org.springframework.mock.web.MockHttpServletResponse}; typically not directly |
||||
* used for testing application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see org.springframework.mock.web.MockHttpServletResponse |
||||
*/ |
||||
public class DelegatingServletOutputStream extends ServletOutputStream { |
||||
|
||||
private final OutputStream targetStream; |
||||
|
||||
|
||||
/** |
||||
* Create a DelegatingServletOutputStream for the given target stream. |
||||
* @param targetStream the target stream (never <code>null</code>) |
||||
*/ |
||||
public DelegatingServletOutputStream(OutputStream targetStream) { |
||||
Assert.notNull(targetStream, "Target OutputStream must not be null"); |
||||
this.targetStream = targetStream; |
||||
} |
||||
|
||||
/** |
||||
* Return the underlying target stream (never <code>null</code>). |
||||
*/ |
||||
public final OutputStream getTargetStream() { |
||||
return this.targetStream; |
||||
} |
||||
|
||||
|
||||
public void write(int b) throws IOException { |
||||
this.targetStream.write(b); |
||||
} |
||||
|
||||
public void flush() throws IOException { |
||||
super.flush(); |
||||
this.targetStream.flush(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
super.close(); |
||||
this.targetStream.close(); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.OutputStream; |
||||
import javax.servlet.ServletOutputStream; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Delegating implementation of {@link javax.servlet.ServletOutputStream}. |
||||
* |
||||
* <p>Used by {@link MockHttpServletResponse}; typically not directly |
||||
* used for testing application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see MockHttpServletResponse |
||||
*/ |
||||
public class DelegatingServletOutputStream extends ServletOutputStream { |
||||
|
||||
private final OutputStream targetStream; |
||||
|
||||
|
||||
/** |
||||
* Create a DelegatingServletOutputStream for the given target stream. |
||||
* @param targetStream the target stream (never <code>null</code>) |
||||
*/ |
||||
public DelegatingServletOutputStream(OutputStream targetStream) { |
||||
Assert.notNull(targetStream, "Target OutputStream must not be null"); |
||||
this.targetStream = targetStream; |
||||
} |
||||
|
||||
/** |
||||
* Return the underlying target stream (never <code>null</code>). |
||||
*/ |
||||
public final OutputStream getTargetStream() { |
||||
return this.targetStream; |
||||
} |
||||
|
||||
|
||||
public void write(int b) throws IOException { |
||||
this.targetStream.write(b); |
||||
} |
||||
|
||||
public void flush() throws IOException { |
||||
super.flush(); |
||||
this.targetStream.flush(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
super.close(); |
||||
this.targetStream.close(); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,85 +1,92 @@
@@ -1,85 +1,92 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.util.Collection; |
||||
import java.util.Collections; |
||||
import java.util.Iterator; |
||||
import java.util.LinkedList; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.CollectionUtils; |
||||
|
||||
/** |
||||
* Internal helper class that serves as value holder for request headers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Rick Evans |
||||
* @since 2.0.1 |
||||
*/ |
||||
class HeaderValueHolder { |
||||
|
||||
private final List values = new LinkedList(); |
||||
|
||||
|
||||
public void setValue(Object value) { |
||||
this.values.clear(); |
||||
this.values.add(value); |
||||
} |
||||
|
||||
public void addValue(Object value) { |
||||
this.values.add(value); |
||||
} |
||||
|
||||
public void addValues(Collection values) { |
||||
this.values.addAll(values); |
||||
} |
||||
|
||||
public void addValueArray(Object values) { |
||||
CollectionUtils.mergeArrayIntoCollection(values, this.values); |
||||
} |
||||
|
||||
public List getValues() { |
||||
return Collections.unmodifiableList(this.values); |
||||
} |
||||
|
||||
public Object getValue() { |
||||
return (!this.values.isEmpty() ? this.values.get(0) : null); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Find a HeaderValueHolder by name, ignoring casing. |
||||
* @param headers the Map of header names to HeaderValueHolders |
||||
* @param name the name of the desired header |
||||
* @return the corresponding HeaderValueHolder, |
||||
* 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();) { |
||||
String headerName = (String) it.next(); |
||||
if (headerName.equalsIgnoreCase(name)) { |
||||
return (HeaderValueHolder) headers.get(headerName); |
||||
} |
||||
} |
||||
return null; |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.util.ArrayList; |
||||
import java.util.Collection; |
||||
import java.util.Collections; |
||||
import java.util.LinkedList; |
||||
import java.util.List; |
||||
import java.util.Map; |
||||
|
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.CollectionUtils; |
||||
|
||||
/** |
||||
* Internal helper class that serves as value holder for request headers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Rick Evans |
||||
* @since 2.0.1 |
||||
*/ |
||||
class HeaderValueHolder { |
||||
|
||||
private final List<Object> values = new LinkedList<Object>(); |
||||
|
||||
|
||||
public void setValue(Object value) { |
||||
this.values.clear(); |
||||
this.values.add(value); |
||||
} |
||||
|
||||
public void addValue(Object value) { |
||||
this.values.add(value); |
||||
} |
||||
|
||||
public void addValues(Collection<?> values) { |
||||
this.values.addAll(values); |
||||
} |
||||
|
||||
public void addValueArray(Object values) { |
||||
CollectionUtils.mergeArrayIntoCollection(values, this.values); |
||||
} |
||||
|
||||
public List<Object> getValues() { |
||||
return Collections.unmodifiableList(this.values); |
||||
} |
||||
|
||||
public List<String> getStringValues() { |
||||
List<String> stringList = new ArrayList<String>(this.values.size()); |
||||
for (Object value : this.values) { |
||||
stringList.add(value.toString()); |
||||
} |
||||
return Collections.unmodifiableList(stringList); |
||||
} |
||||
|
||||
public Object getValue() { |
||||
return (!this.values.isEmpty() ? this.values.get(0) : null); |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Find a HeaderValueHolder by name, ignoring casing. |
||||
* @param headers the Map of header names to HeaderValueHolders |
||||
* @param name the name of the desired header |
||||
* @return the corresponding HeaderValueHolder, |
||||
* or <code>null</code> if none found |
||||
*/ |
||||
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,198 +1,197 @@
@@ -1,198 +1,197 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.Reader; |
||||
import java.io.StringReader; |
||||
import java.io.Writer; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.jsp.JspWriter; |
||||
import javax.servlet.jsp.tagext.BodyContent; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.tagext.BodyContent} class. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 2.5 |
||||
*/ |
||||
public class MockBodyContent extends BodyContent { |
||||
|
||||
private final String content; |
||||
|
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param response the servlet response to wrap |
||||
*/ |
||||
public MockBodyContent(String content, HttpServletResponse response) { |
||||
this(content, response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockBodyContent(String content, Writer targetWriter) { |
||||
this(content, null, targetWriter); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param response the servlet response to wrap |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockBodyContent(String content, HttpServletResponse response, Writer targetWriter) { |
||||
super(adaptJspWriter(targetWriter, response)); |
||||
this.content = content; |
||||
} |
||||
|
||||
private static JspWriter adaptJspWriter(Writer targetWriter, HttpServletResponse response) { |
||||
if (targetWriter instanceof JspWriter) { |
||||
return (JspWriter) targetWriter; |
||||
} |
||||
else { |
||||
return new MockJspWriter(response, targetWriter); |
||||
} |
||||
} |
||||
|
||||
|
||||
public Reader getReader() { |
||||
return new StringReader(this.content); |
||||
} |
||||
|
||||
public String getString() { |
||||
return this.content; |
||||
} |
||||
|
||||
public void writeOut(Writer writer) throws IOException { |
||||
writer.write(this.content); |
||||
} |
||||
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// Delegating implementations of JspWriter's abstract methods
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
public void clear() throws IOException { |
||||
getEnclosingWriter().clear(); |
||||
} |
||||
|
||||
public void clearBuffer() throws IOException { |
||||
getEnclosingWriter().clearBuffer(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
getEnclosingWriter().close(); |
||||
} |
||||
|
||||
public int getRemaining() { |
||||
return getEnclosingWriter().getRemaining(); |
||||
} |
||||
|
||||
public void newLine() throws IOException { |
||||
getEnclosingWriter().println(); |
||||
} |
||||
|
||||
public void write(char value[], int offset, int length) throws IOException { |
||||
getEnclosingWriter().write(value, offset, length); |
||||
} |
||||
|
||||
public void print(boolean value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(char value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(char[] value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(double value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(float value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(int value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(long value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(Object value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(String value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void println() throws IOException { |
||||
getEnclosingWriter().println(); |
||||
} |
||||
|
||||
public void println(boolean value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(char value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(char[] value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(double value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(float value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(int value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(long value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(Object value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(String value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.Reader; |
||||
import java.io.StringReader; |
||||
import java.io.Writer; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.jsp.JspWriter; |
||||
import javax.servlet.jsp.tagext.BodyContent; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.tagext.BodyContent} class. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 2.5 |
||||
*/ |
||||
public class MockBodyContent extends BodyContent { |
||||
|
||||
private final String content; |
||||
|
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param response the servlet response to wrap |
||||
*/ |
||||
public MockBodyContent(String content, HttpServletResponse response) { |
||||
this(content, response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockBodyContent(String content, Writer targetWriter) { |
||||
this(content, null, targetWriter); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockBodyContent for the given response. |
||||
* @param content the body content to expose |
||||
* @param response the servlet response to wrap |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockBodyContent(String content, HttpServletResponse response, Writer targetWriter) { |
||||
super(adaptJspWriter(targetWriter, response)); |
||||
this.content = content; |
||||
} |
||||
|
||||
private static JspWriter adaptJspWriter(Writer targetWriter, HttpServletResponse response) { |
||||
if (targetWriter instanceof JspWriter) { |
||||
return (JspWriter) targetWriter; |
||||
} |
||||
else { |
||||
return new MockJspWriter(response, targetWriter); |
||||
} |
||||
} |
||||
|
||||
|
||||
public Reader getReader() { |
||||
return new StringReader(this.content); |
||||
} |
||||
|
||||
public String getString() { |
||||
return this.content; |
||||
} |
||||
|
||||
public void writeOut(Writer writer) throws IOException { |
||||
writer.write(this.content); |
||||
} |
||||
|
||||
|
||||
//---------------------------------------------------------------------
|
||||
// Delegating implementations of JspWriter's abstract methods
|
||||
//---------------------------------------------------------------------
|
||||
|
||||
public void clear() throws IOException { |
||||
getEnclosingWriter().clear(); |
||||
} |
||||
|
||||
public void clearBuffer() throws IOException { |
||||
getEnclosingWriter().clearBuffer(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
getEnclosingWriter().close(); |
||||
} |
||||
|
||||
public int getRemaining() { |
||||
return getEnclosingWriter().getRemaining(); |
||||
} |
||||
|
||||
public void newLine() throws IOException { |
||||
getEnclosingWriter().println(); |
||||
} |
||||
|
||||
public void write(char value[], int offset, int length) throws IOException { |
||||
getEnclosingWriter().write(value, offset, length); |
||||
} |
||||
|
||||
public void print(boolean value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(char value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(char[] value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(double value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(float value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(int value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(long value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(Object value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void print(String value) throws IOException { |
||||
getEnclosingWriter().print(value); |
||||
} |
||||
|
||||
public void println() throws IOException { |
||||
getEnclosingWriter().println(); |
||||
} |
||||
|
||||
public void println(boolean value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(char value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(char[] value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(double value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(float value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(int value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(long value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(Object value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
public void println(String value) throws IOException { |
||||
getEnclosingWriter().println(value); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,92 +1,92 @@
@@ -1,92 +1,92 @@
|
||||
/* |
||||
* Copyright 2002-2006 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import javax.servlet.jsp.JspException; |
||||
import javax.servlet.jsp.PageContext; |
||||
import javax.servlet.jsp.el.ELException; |
||||
import javax.servlet.jsp.el.Expression; |
||||
import javax.servlet.jsp.el.ExpressionEvaluator; |
||||
import javax.servlet.jsp.el.FunctionMapper; |
||||
import javax.servlet.jsp.el.VariableResolver; |
||||
|
||||
import org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager; |
||||
|
||||
/** |
||||
* Mock implementation of the JSP 2.0 {@link javax.servlet.jsp.el.ExpressionEvaluator} |
||||
* interface, delegating to the Jakarta JSTL ExpressionEvaluatorManager. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* <p>Note that the Jakarta JSTL implementation (jstl.jar, standard.jar) |
||||
* has to be available on the class path to use this expression evaluator. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.1.5 |
||||
* @see org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager |
||||
*/ |
||||
public class MockExpressionEvaluator extends ExpressionEvaluator { |
||||
|
||||
private final PageContext pageContext; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockExpressionEvaluator for the given PageContext. |
||||
* @param pageContext the JSP PageContext to run in |
||||
*/ |
||||
public MockExpressionEvaluator(PageContext pageContext) { |
||||
this.pageContext = pageContext; |
||||
} |
||||
|
||||
public Expression parseExpression( |
||||
final String expression, final Class expectedType, final FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
return new Expression() { |
||||
public Object evaluate(VariableResolver variableResolver) throws ELException { |
||||
return doEvaluate(expression, expectedType, functionMapper); |
||||
} |
||||
}; |
||||
} |
||||
|
||||
public Object evaluate( |
||||
String expression, Class expectedType, VariableResolver variableResolver, FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
if (variableResolver != null) { |
||||
throw new IllegalArgumentException("Custom VariableResolver not supported"); |
||||
} |
||||
return doEvaluate(expression, expectedType, functionMapper); |
||||
} |
||||
|
||||
protected Object doEvaluate( |
||||
String expression, Class expectedType, FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
if (functionMapper != null) { |
||||
throw new IllegalArgumentException("Custom FunctionMapper not supported"); |
||||
} |
||||
try { |
||||
return ExpressionEvaluatorManager.evaluate("JSP EL expression", expression, expectedType, this.pageContext); |
||||
} |
||||
catch (JspException ex) { |
||||
throw new ELException("Parsing of JSP EL expression \"" + expression + "\" failed", ex); |
||||
} |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import javax.servlet.jsp.JspException; |
||||
import javax.servlet.jsp.PageContext; |
||||
import javax.servlet.jsp.el.ELException; |
||||
import javax.servlet.jsp.el.Expression; |
||||
import javax.servlet.jsp.el.ExpressionEvaluator; |
||||
import javax.servlet.jsp.el.FunctionMapper; |
||||
import javax.servlet.jsp.el.VariableResolver; |
||||
|
||||
import org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager; |
||||
|
||||
/** |
||||
* Mock implementation of the JSP 2.0 {@link javax.servlet.jsp.el.ExpressionEvaluator} |
||||
* interface, delegating to the Jakarta JSTL ExpressionEvaluatorManager. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* <p>Note that the Jakarta JSTL implementation (jstl.jar, standard.jar) |
||||
* has to be available on the class path to use this expression evaluator. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.1.5 |
||||
* @see org.apache.taglibs.standard.lang.support.ExpressionEvaluatorManager |
||||
*/ |
||||
public class MockExpressionEvaluator extends ExpressionEvaluator { |
||||
|
||||
private final PageContext pageContext; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockExpressionEvaluator for the given PageContext. |
||||
* @param pageContext the JSP PageContext to run in |
||||
*/ |
||||
public MockExpressionEvaluator(PageContext pageContext) { |
||||
this.pageContext = pageContext; |
||||
} |
||||
|
||||
public Expression parseExpression( |
||||
final String expression, final Class expectedType, final FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
return new Expression() { |
||||
public Object evaluate(VariableResolver variableResolver) throws ELException { |
||||
return doEvaluate(expression, expectedType, functionMapper); |
||||
} |
||||
}; |
||||
} |
||||
|
||||
public Object evaluate( |
||||
String expression, Class expectedType, VariableResolver variableResolver, FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
if (variableResolver != null) { |
||||
throw new IllegalArgumentException("Custom VariableResolver not supported"); |
||||
} |
||||
return doEvaluate(expression, expectedType, functionMapper); |
||||
} |
||||
|
||||
protected Object doEvaluate( |
||||
String expression, Class expectedType, FunctionMapper functionMapper) |
||||
throws ELException { |
||||
|
||||
if (functionMapper != null) { |
||||
throw new IllegalArgumentException("Custom FunctionMapper not supported"); |
||||
} |
||||
try { |
||||
return ExpressionEvaluatorManager.evaluate("JSP EL expression", expression, expectedType, this.pageContext); |
||||
} |
||||
catch (JspException ex) { |
||||
throw new ELException("Parsing of JSP EL expression \"" + expression + "\" failed", ex); |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -0,0 +1,70 @@
@@ -0,0 +1,70 @@
|
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import javax.servlet.FilterChain; |
||||
import javax.servlet.ServletRequest; |
||||
import javax.servlet.ServletResponse; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.FilterConfig} interface. |
||||
* |
||||
* <p>Used for testing the web framework; also usefol for testing |
||||
* custom {@link javax.servlet.Filter} implementations. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 2.0.3 |
||||
* @see MockFilterConfig |
||||
* @see PassThroughFilterChain |
||||
*/ |
||||
public class MockFilterChain implements FilterChain { |
||||
|
||||
private ServletRequest request; |
||||
|
||||
private ServletResponse response; |
||||
|
||||
|
||||
/** |
||||
* Records the request and response. |
||||
*/ |
||||
public void doFilter(ServletRequest request, ServletResponse response) { |
||||
Assert.notNull(request, "Request must not be null"); |
||||
Assert.notNull(response, "Response must not be null"); |
||||
if (this.request != null) { |
||||
throw new IllegalStateException("This FilterChain has already been called!"); |
||||
} |
||||
this.request = request; |
||||
this.response = response; |
||||
} |
||||
|
||||
/** |
||||
* Return the request that {@link #doFilter} has been called with. |
||||
*/ |
||||
public ServletRequest getRequest() { |
||||
return this.request; |
||||
} |
||||
|
||||
/** |
||||
* Return the response that {@link #doFilter} has been called with. |
||||
*/ |
||||
public ServletResponse getResponse() { |
||||
return this.response; |
||||
} |
||||
|
||||
} |
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@ -1,245 +1,246 @@
@@ -1,245 +1,246 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Enumeration; |
||||
import java.util.HashMap; |
||||
import java.util.Hashtable; |
||||
import java.util.Iterator; |
||||
import java.util.Map; |
||||
|
||||
import javax.servlet.ServletContext; |
||||
import javax.servlet.http.HttpSession; |
||||
import javax.servlet.http.HttpSessionBindingEvent; |
||||
import javax.servlet.http.HttpSessionBindingListener; |
||||
import javax.servlet.http.HttpSessionContext; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.http.HttpSession} interface. |
||||
* Supports the Servlet 2.4 API level. |
||||
* |
||||
* <p>Used for testing the web framework; also useful for testing |
||||
* application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Rod Johnson |
||||
* @author Mark Fisher |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockHttpSession implements HttpSession { |
||||
|
||||
public static final String SESSION_COOKIE_NAME = "JSESSION"; |
||||
|
||||
private static int nextId = 1; |
||||
|
||||
|
||||
private final String id; |
||||
|
||||
private final long creationTime = System.currentTimeMillis(); |
||||
|
||||
private int maxInactiveInterval; |
||||
|
||||
private long lastAccessedTime = System.currentTimeMillis(); |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final Hashtable attributes = new Hashtable(); |
||||
|
||||
private boolean invalid = false; |
||||
|
||||
private boolean isNew = true; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockHttpSession with a default {@link org.springframework.mock.web.MockServletContext}. |
||||
* @see org.springframework.mock.web.MockServletContext |
||||
*/ |
||||
public MockHttpSession() { |
||||
this(null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockHttpSession. |
||||
* @param servletContext the ServletContext that the session runs in |
||||
*/ |
||||
public MockHttpSession(ServletContext servletContext) { |
||||
this(servletContext, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockHttpSession. |
||||
* @param servletContext the ServletContext that the session runs in |
||||
* @param id a unique identifier for this session |
||||
*/ |
||||
public MockHttpSession(ServletContext servletContext, String id) { |
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.id = (id != null ? id : Integer.toString(nextId++)); |
||||
} |
||||
|
||||
|
||||
public long getCreationTime() { |
||||
return this.creationTime; |
||||
} |
||||
|
||||
public String getId() { |
||||
return this.id; |
||||
} |
||||
|
||||
public void access() { |
||||
this.lastAccessedTime = System.currentTimeMillis(); |
||||
this.isNew = false; |
||||
} |
||||
|
||||
public long getLastAccessedTime() { |
||||
return this.lastAccessedTime; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return this.servletContext; |
||||
} |
||||
|
||||
public void setMaxInactiveInterval(int interval) { |
||||
this.maxInactiveInterval = interval; |
||||
} |
||||
|
||||
public int getMaxInactiveInterval() { |
||||
return this.maxInactiveInterval; |
||||
} |
||||
|
||||
public HttpSessionContext getSessionContext() { |
||||
throw new UnsupportedOperationException("getSessionContext"); |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Object getValue(String name) { |
||||
return getAttribute(name); |
||||
} |
||||
|
||||
public Enumeration getAttributeNames() { |
||||
return this.attributes.keys(); |
||||
} |
||||
|
||||
public String[] getValueNames() { |
||||
return (String[]) this.attributes.keySet().toArray(new String[this.attributes.size()]); |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueBound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
else { |
||||
removeAttribute(name); |
||||
} |
||||
} |
||||
|
||||
public void putValue(String name, Object value) { |
||||
setAttribute(name, value); |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
Object value = this.attributes.remove(name); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
|
||||
public void removeValue(String name) { |
||||
removeAttribute(name); |
||||
} |
||||
|
||||
/** |
||||
* Clear all of this session's attributes. |
||||
*/ |
||||
public void clearAttributes() { |
||||
for (Iterator it = this.attributes.entrySet().iterator(); it.hasNext();) { |
||||
Map.Entry entry = (Map.Entry) it.next(); |
||||
String name = (String) entry.getKey(); |
||||
Object value = entry.getValue(); |
||||
it.remove(); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public void invalidate() { |
||||
this.invalid = true; |
||||
clearAttributes(); |
||||
} |
||||
|
||||
public boolean isInvalid() { |
||||
return this.invalid; |
||||
} |
||||
|
||||
public void setNew(boolean value) { |
||||
this.isNew = value; |
||||
} |
||||
|
||||
public boolean isNew() { |
||||
return this.isNew; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Serialize the attributes of this session into an object that can |
||||
* be turned into a byte array with standard Java serialization. |
||||
* @return a representation of this session's serialized state |
||||
*/ |
||||
public Serializable serializeState() { |
||||
HashMap state = new HashMap(); |
||||
for (Iterator it = this.attributes.entrySet().iterator(); it.hasNext();) { |
||||
Map.Entry entry = (Map.Entry) it.next(); |
||||
String name = (String) entry.getKey(); |
||||
Object value = entry.getValue(); |
||||
it.remove(); |
||||
if (value instanceof Serializable) { |
||||
state.put(name, value); |
||||
} |
||||
else { |
||||
// Not serializable... Servlet containers usually automatically
|
||||
// unbind the attribute in this case.
|
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
} |
||||
return state; |
||||
} |
||||
|
||||
/** |
||||
* Deserialize the attributes of this session from a state object |
||||
* created by {@link #serializeState()}. |
||||
* @param state a representation of this session's serialized state |
||||
*/ |
||||
public void deserializeState(Serializable state) { |
||||
Assert.isTrue(state instanceof Map, "Serialized state needs to be of type [java.util.Map]"); |
||||
this.attributes.putAll((Map) state); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.Serializable; |
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.HashMap; |
||||
import java.util.Iterator; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.Map; |
||||
import javax.servlet.ServletContext; |
||||
import javax.servlet.http.HttpSession; |
||||
import javax.servlet.http.HttpSessionBindingEvent; |
||||
import javax.servlet.http.HttpSessionBindingListener; |
||||
import javax.servlet.http.HttpSessionContext; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.http.HttpSession} interface. |
||||
* Supports the Servlet 2.4 API level. |
||||
* |
||||
* <p>Used for testing the web framework; also useful for testing |
||||
* application controllers. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Rod Johnson |
||||
* @author Mark Fisher |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockHttpSession implements HttpSession { |
||||
|
||||
public static final String SESSION_COOKIE_NAME = "JSESSION"; |
||||
|
||||
private static int nextId = 1; |
||||
|
||||
|
||||
private final String id; |
||||
|
||||
private final long creationTime = System.currentTimeMillis(); |
||||
|
||||
private int maxInactiveInterval; |
||||
|
||||
private long lastAccessedTime = System.currentTimeMillis(); |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>(); |
||||
|
||||
private boolean invalid = false; |
||||
|
||||
private boolean isNew = true; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockHttpSession with a default {@link MockServletContext}. |
||||
* @see MockServletContext |
||||
*/ |
||||
public MockHttpSession() { |
||||
this(null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockHttpSession. |
||||
* @param servletContext the ServletContext that the session runs in |
||||
*/ |
||||
public MockHttpSession(ServletContext servletContext) { |
||||
this(servletContext, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockHttpSession. |
||||
* @param servletContext the ServletContext that the session runs in |
||||
* @param id a unique identifier for this session |
||||
*/ |
||||
public MockHttpSession(ServletContext servletContext, String id) { |
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.id = (id != null ? id : Integer.toString(nextId++)); |
||||
} |
||||
|
||||
|
||||
public long getCreationTime() { |
||||
return this.creationTime; |
||||
} |
||||
|
||||
public String getId() { |
||||
return this.id; |
||||
} |
||||
|
||||
public void access() { |
||||
this.lastAccessedTime = System.currentTimeMillis(); |
||||
this.isNew = false; |
||||
} |
||||
|
||||
public long getLastAccessedTime() { |
||||
return this.lastAccessedTime; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return this.servletContext; |
||||
} |
||||
|
||||
public void setMaxInactiveInterval(int interval) { |
||||
this.maxInactiveInterval = interval; |
||||
} |
||||
|
||||
public int getMaxInactiveInterval() { |
||||
return this.maxInactiveInterval; |
||||
} |
||||
|
||||
public HttpSessionContext getSessionContext() { |
||||
throw new UnsupportedOperationException("getSessionContext"); |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Object getValue(String name) { |
||||
return getAttribute(name); |
||||
} |
||||
|
||||
public Enumeration<String> getAttributeNames() { |
||||
return Collections.enumeration(this.attributes.keySet()); |
||||
} |
||||
|
||||
public String[] getValueNames() { |
||||
return this.attributes.keySet().toArray(new String[this.attributes.size()]); |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueBound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
else { |
||||
removeAttribute(name); |
||||
} |
||||
} |
||||
|
||||
public void putValue(String name, Object value) { |
||||
setAttribute(name, value); |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
Object value = this.attributes.remove(name); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
|
||||
public void removeValue(String name) { |
||||
removeAttribute(name); |
||||
} |
||||
|
||||
/** |
||||
* Clear all of this session's attributes. |
||||
*/ |
||||
public void clearAttributes() { |
||||
for (Iterator<Map.Entry<String, Object>> it = this.attributes.entrySet().iterator(); it.hasNext();) { |
||||
Map.Entry<String, Object> entry = it.next(); |
||||
String name = entry.getKey(); |
||||
Object value = entry.getValue(); |
||||
it.remove(); |
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
} |
||||
|
||||
public void invalidate() { |
||||
this.invalid = true; |
||||
clearAttributes(); |
||||
} |
||||
|
||||
public boolean isInvalid() { |
||||
return this.invalid; |
||||
} |
||||
|
||||
public void setNew(boolean value) { |
||||
this.isNew = value; |
||||
} |
||||
|
||||
public boolean isNew() { |
||||
return this.isNew; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Serialize the attributes of this session into an object that can |
||||
* be turned into a byte array with standard Java serialization. |
||||
* @return a representation of this session's serialized state |
||||
*/ |
||||
public Serializable serializeState() { |
||||
HashMap<String, Serializable> state = new HashMap<String, Serializable>(); |
||||
for (Iterator<Map.Entry<String, Object>> it = this.attributes.entrySet().iterator(); it.hasNext();) { |
||||
Map.Entry<String, Object> entry = it.next(); |
||||
String name = entry.getKey(); |
||||
Object value = entry.getValue(); |
||||
it.remove(); |
||||
if (value instanceof Serializable) { |
||||
state.put(name, (Serializable) value); |
||||
} |
||||
else { |
||||
// Not serializable... Servlet containers usually automatically
|
||||
// unbind the attribute in this case.
|
||||
if (value instanceof HttpSessionBindingListener) { |
||||
((HttpSessionBindingListener) value).valueUnbound(new HttpSessionBindingEvent(this, name, value)); |
||||
} |
||||
} |
||||
} |
||||
return state; |
||||
} |
||||
|
||||
/** |
||||
* Deserialize the attributes of this session from a state object |
||||
* created by {@link #serializeState()}. |
||||
* @param state a representation of this session's serialized state |
||||
*/ |
||||
@SuppressWarnings("unchecked") |
||||
public void deserializeState(Serializable state) { |
||||
Assert.isTrue(state instanceof Map, "Serialized state needs to be of type [java.util.Map]"); |
||||
this.attributes.putAll((Map<String, Object>) state); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,192 +1,191 @@
@@ -1,192 +1,191 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.PrintWriter; |
||||
import java.io.Writer; |
||||
|
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.jsp.JspWriter; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.JspWriter} class. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 2.5 |
||||
*/ |
||||
public class MockJspWriter extends JspWriter { |
||||
|
||||
private final HttpServletResponse response; |
||||
|
||||
private PrintWriter targetWriter; |
||||
|
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given response, |
||||
* using the response's default Writer. |
||||
* @param response the servlet response to wrap |
||||
*/ |
||||
public MockJspWriter(HttpServletResponse response) { |
||||
this(response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given plain Writer. |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockJspWriter(Writer targetWriter) { |
||||
this(null, targetWriter); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given response. |
||||
* @param response the servlet response to wrap |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockJspWriter(HttpServletResponse response, Writer targetWriter) { |
||||
super(DEFAULT_BUFFER, true); |
||||
this.response = (response != null ? response : new MockHttpServletResponse()); |
||||
if (targetWriter instanceof PrintWriter) { |
||||
this.targetWriter = (PrintWriter) targetWriter; |
||||
} |
||||
else if (targetWriter != null) { |
||||
this.targetWriter = new PrintWriter(targetWriter); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Lazily initialize the target Writer. |
||||
*/ |
||||
protected PrintWriter getTargetWriter() throws IOException { |
||||
if (this.targetWriter == null) { |
||||
this.targetWriter = this.response.getWriter(); |
||||
} |
||||
return this.targetWriter; |
||||
} |
||||
|
||||
|
||||
public void clear() throws IOException { |
||||
if (this.response.isCommitted()) { |
||||
throw new IOException("Response already committed"); |
||||
} |
||||
this.response.resetBuffer(); |
||||
} |
||||
|
||||
public void clearBuffer() throws IOException { |
||||
} |
||||
|
||||
public void flush() throws IOException { |
||||
this.response.flushBuffer(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
flush(); |
||||
} |
||||
|
||||
public int getRemaining() { |
||||
return Integer.MAX_VALUE; |
||||
} |
||||
|
||||
public void newLine() throws IOException { |
||||
getTargetWriter().println(); |
||||
} |
||||
|
||||
public void write(char value[], int offset, int length) throws IOException { |
||||
getTargetWriter().write(value, offset, length); |
||||
} |
||||
|
||||
public void print(boolean value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(char value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(char[] value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(double value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(float value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(int value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(long value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(Object value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(String value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void println() throws IOException { |
||||
getTargetWriter().println(); |
||||
} |
||||
|
||||
public void println(boolean value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(char value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(char[] value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(double value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(float value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(int value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(long value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(Object value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(String value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.io.PrintWriter; |
||||
import java.io.Writer; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.jsp.JspWriter; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.JspWriter} class. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 2.5 |
||||
*/ |
||||
public class MockJspWriter extends JspWriter { |
||||
|
||||
private final HttpServletResponse response; |
||||
|
||||
private PrintWriter targetWriter; |
||||
|
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given response, |
||||
* using the response's default Writer. |
||||
* @param response the servlet response to wrap |
||||
*/ |
||||
public MockJspWriter(HttpServletResponse response) { |
||||
this(response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given plain Writer. |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockJspWriter(Writer targetWriter) { |
||||
this(null, targetWriter); |
||||
} |
||||
|
||||
/** |
||||
* Create a MockJspWriter for the given response. |
||||
* @param response the servlet response to wrap |
||||
* @param targetWriter the target Writer to wrap |
||||
*/ |
||||
public MockJspWriter(HttpServletResponse response, Writer targetWriter) { |
||||
super(DEFAULT_BUFFER, true); |
||||
this.response = (response != null ? response : new MockHttpServletResponse()); |
||||
if (targetWriter instanceof PrintWriter) { |
||||
this.targetWriter = (PrintWriter) targetWriter; |
||||
} |
||||
else if (targetWriter != null) { |
||||
this.targetWriter = new PrintWriter(targetWriter); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Lazily initialize the target Writer. |
||||
*/ |
||||
protected PrintWriter getTargetWriter() throws IOException { |
||||
if (this.targetWriter == null) { |
||||
this.targetWriter = this.response.getWriter(); |
||||
} |
||||
return this.targetWriter; |
||||
} |
||||
|
||||
|
||||
public void clear() throws IOException { |
||||
if (this.response.isCommitted()) { |
||||
throw new IOException("Response already committed"); |
||||
} |
||||
this.response.resetBuffer(); |
||||
} |
||||
|
||||
public void clearBuffer() throws IOException { |
||||
} |
||||
|
||||
public void flush() throws IOException { |
||||
this.response.flushBuffer(); |
||||
} |
||||
|
||||
public void close() throws IOException { |
||||
flush(); |
||||
} |
||||
|
||||
public int getRemaining() { |
||||
return Integer.MAX_VALUE; |
||||
} |
||||
|
||||
public void newLine() throws IOException { |
||||
getTargetWriter().println(); |
||||
} |
||||
|
||||
public void write(char value[], int offset, int length) throws IOException { |
||||
getTargetWriter().write(value, offset, length); |
||||
} |
||||
|
||||
public void print(boolean value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(char value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(char[] value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(double value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(float value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(int value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(long value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(Object value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void print(String value) throws IOException { |
||||
getTargetWriter().print(value); |
||||
} |
||||
|
||||
public void println() throws IOException { |
||||
getTargetWriter().println(); |
||||
} |
||||
|
||||
public void println(boolean value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(char value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(char[] value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(double value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(float value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(int value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(long value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(Object value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
public void println(String value) throws IOException { |
||||
getTargetWriter().println(value); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -0,0 +1,132 @@
@@ -0,0 +1,132 @@
|
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.ByteArrayInputStream; |
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
|
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.FileCopyUtils; |
||||
import org.springframework.web.multipart.MultipartFile; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link org.springframework.web.multipart.MultipartFile} |
||||
* interface. |
||||
* |
||||
* <p>Useful in conjunction with a {@link MockMultipartHttpServletRequest} |
||||
* for testing application controllers that access multipart uploads. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Eric Crampton |
||||
* @since 2.0 |
||||
* @see MockMultipartHttpServletRequest |
||||
*/ |
||||
public class MockMultipartFile implements MultipartFile { |
||||
|
||||
private final String name; |
||||
|
||||
private String originalFilename; |
||||
|
||||
private String contentType; |
||||
|
||||
private final byte[] content; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockMultipartFile with the given content. |
||||
* @param name the name of the file |
||||
* @param content the content of the file |
||||
*/ |
||||
public MockMultipartFile(String name, byte[] content) { |
||||
this(name, "", null, content); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockMultipartFile with the given content. |
||||
* @param name the name of the file |
||||
* @param contentStream the content of the file as stream |
||||
* @throws IOException if reading from the stream failed |
||||
*/ |
||||
public MockMultipartFile(String name, InputStream contentStream) throws IOException { |
||||
this(name, "", null, FileCopyUtils.copyToByteArray(contentStream)); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockMultipartFile with the given content. |
||||
* @param name the name of the file |
||||
* @param originalFilename the original filename (as on the client's machine) |
||||
* @param contentType the content type (if known) |
||||
* @param content the content of the file |
||||
*/ |
||||
public MockMultipartFile(String name, String originalFilename, String contentType, byte[] content) { |
||||
Assert.hasLength(name, "Name must not be null"); |
||||
this.name = name; |
||||
this.originalFilename = (originalFilename != null ? originalFilename : ""); |
||||
this.contentType = contentType; |
||||
this.content = (content != null ? content : new byte[0]); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockMultipartFile with the given content. |
||||
* @param name the name of the file |
||||
* @param originalFilename the original filename (as on the client's machine) |
||||
* @param contentType the content type (if known) |
||||
* @param contentStream the content of the file as stream |
||||
* @throws IOException if reading from the stream failed |
||||
*/ |
||||
public MockMultipartFile(String name, String originalFilename, String contentType, InputStream contentStream) |
||||
throws IOException { |
||||
|
||||
this(name, originalFilename, contentType, FileCopyUtils.copyToByteArray(contentStream)); |
||||
} |
||||
|
||||
|
||||
public String getName() { |
||||
return this.name; |
||||
} |
||||
|
||||
public String getOriginalFilename() { |
||||
return this.originalFilename; |
||||
} |
||||
|
||||
public String getContentType() { |
||||
return this.contentType; |
||||
} |
||||
|
||||
public boolean isEmpty() { |
||||
return (this.content.length == 0); |
||||
} |
||||
|
||||
public long getSize() { |
||||
return this.content.length; |
||||
} |
||||
|
||||
public byte[] getBytes() throws IOException { |
||||
return this.content; |
||||
} |
||||
|
||||
public InputStream getInputStream() throws IOException { |
||||
return new ByteArrayInputStream(this.content); |
||||
} |
||||
|
||||
public void transferTo(File dest) throws IOException, IllegalStateException { |
||||
FileCopyUtils.copy(this.content, dest); |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,68 @@
@@ -0,0 +1,68 @@
|
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.util.Collections; |
||||
import java.util.Iterator; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.Map; |
||||
|
||||
import org.springframework.util.Assert; |
||||
import org.springframework.web.multipart.MultipartFile; |
||||
import org.springframework.web.multipart.MultipartHttpServletRequest; |
||||
|
||||
/** |
||||
* Mock implementation of the |
||||
* {@link org.springframework.web.multipart.MultipartHttpServletRequest} interface. |
||||
* |
||||
* <p>Useful for testing application controllers that access multipart uploads. |
||||
* The {@link MockMultipartFile} can be used to populate these mock requests |
||||
* with files. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @author Eric Crampton |
||||
* @since 2.0 |
||||
* @see MockMultipartFile |
||||
*/ |
||||
public class MockMultipartHttpServletRequest extends MockHttpServletRequest implements MultipartHttpServletRequest { |
||||
|
||||
private final Map<String, MultipartFile> multipartFiles = new LinkedHashMap<String, MultipartFile>(); |
||||
|
||||
|
||||
/** |
||||
* Add a file to this request. The parameter name from the multipart |
||||
* form is taken from the {@link MultipartFile#getName()}. |
||||
* @param file multipart file to be added |
||||
*/ |
||||
public void addFile(MultipartFile file) { |
||||
Assert.notNull(file, "MultipartFile must not be null"); |
||||
this.multipartFiles.put(file.getName(), file); |
||||
} |
||||
|
||||
public Iterator<String> getFileNames() { |
||||
return getFileMap().keySet().iterator(); |
||||
} |
||||
|
||||
public MultipartFile getFile(String name) { |
||||
return this.multipartFiles.get(name); |
||||
} |
||||
|
||||
public Map<String, MultipartFile> getFileMap() { |
||||
return Collections.unmodifiableMap(this.multipartFiles); |
||||
} |
||||
|
||||
} |
||||
@ -1,337 +1,337 @@
@@ -1,337 +1,337 @@
|
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.HashMap; |
||||
import java.util.Map; |
||||
import javax.el.ELContext; |
||||
import javax.servlet.Servlet; |
||||
import javax.servlet.ServletConfig; |
||||
import javax.servlet.ServletContext; |
||||
import javax.servlet.ServletException; |
||||
import javax.servlet.ServletRequest; |
||||
import javax.servlet.ServletResponse; |
||||
import javax.servlet.http.HttpServletRequest; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.http.HttpSession; |
||||
import javax.servlet.jsp.JspWriter; |
||||
import javax.servlet.jsp.PageContext; |
||||
import javax.servlet.jsp.el.ExpressionEvaluator; |
||||
import javax.servlet.jsp.el.VariableResolver; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.PageContext} interface. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* <p>Note: Expects initialization via the constructor rather than via the |
||||
* <code>PageContext.initialize</code> method. Does not support writing to |
||||
* a JspWriter, request dispatching, and <code>handlePageException</code> calls. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockPageContext extends PageContext { |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final HttpServletRequest request; |
||||
|
||||
private final HttpServletResponse response; |
||||
|
||||
private final ServletConfig servletConfig; |
||||
|
||||
private final Map<String, Object> attributes = new HashMap<String, Object>(); |
||||
|
||||
private JspWriter out; |
||||
|
||||
|
||||
/** |
||||
* Create new MockPageContext with a default {@link MockServletContext}, |
||||
* {@link MockHttpServletRequest}, {@link MockHttpServletResponse}, |
||||
* {@link MockServletConfig}. |
||||
*/ |
||||
public MockPageContext() { |
||||
this(null, null, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a default {@link MockHttpServletRequest}, |
||||
* {@link MockHttpServletResponse}, {@link MockServletConfig}. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* (only necessary when actually accessing the ServletContext) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext) { |
||||
this(servletContext, null, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a MockHttpServletResponse, |
||||
* MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* (only necessary when actually accessing the request) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request) { |
||||
this(servletContext, request, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* @param response the current HttpServletResponse |
||||
* (only necessary when actually writing to the response) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request, HttpServletResponse response) { |
||||
this(servletContext, request, response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* @param response the current HttpServletResponse |
||||
* @param servletConfig the ServletConfig (hardly ever accessed from within a tag) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request, |
||||
HttpServletResponse response, ServletConfig servletConfig) { |
||||
|
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.request = (request != null ? request : new MockHttpServletRequest(servletContext)); |
||||
this.response = (response != null ? response : new MockHttpServletResponse()); |
||||
this.servletConfig = (servletConfig != null ? servletConfig : new MockServletConfig(servletContext)); |
||||
} |
||||
|
||||
|
||||
public void initialize( |
||||
Servlet servlet, ServletRequest request, ServletResponse response, |
||||
String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush) { |
||||
|
||||
throw new UnsupportedOperationException("Use appropriate constructor"); |
||||
} |
||||
|
||||
public void release() { |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
} |
||||
else { |
||||
this.attributes.remove(name); |
||||
} |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
setAttribute(name, value); |
||||
break; |
||||
case REQUEST_SCOPE: |
||||
this.request.setAttribute(name, value); |
||||
break; |
||||
case SESSION_SCOPE: |
||||
this.request.getSession().setAttribute(name, value); |
||||
break; |
||||
case APPLICATION_SCOPE: |
||||
this.servletContext.setAttribute(name, value); |
||||
break; |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Object getAttribute(String name, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
return getAttribute(name); |
||||
case REQUEST_SCOPE: |
||||
return this.request.getAttribute(name); |
||||
case SESSION_SCOPE: |
||||
HttpSession session = this.request.getSession(false); |
||||
return (session != null ? session.getAttribute(name) : null); |
||||
case APPLICATION_SCOPE: |
||||
return this.servletContext.getAttribute(name); |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public Object findAttribute(String name) { |
||||
Object value = getAttribute(name); |
||||
if (value == null) { |
||||
value = getAttribute(name, REQUEST_SCOPE); |
||||
if (value == null) { |
||||
value = getAttribute(name, SESSION_SCOPE); |
||||
if (value == null) { |
||||
value = getAttribute(name, APPLICATION_SCOPE); |
||||
} |
||||
} |
||||
} |
||||
return value; |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
this.removeAttribute(name, PageContext.PAGE_SCOPE); |
||||
this.removeAttribute(name, PageContext.REQUEST_SCOPE); |
||||
this.removeAttribute(name, PageContext.SESSION_SCOPE); |
||||
this.removeAttribute(name, PageContext.APPLICATION_SCOPE); |
||||
} |
||||
|
||||
public void removeAttribute(String name, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
this.attributes.remove(name); |
||||
break; |
||||
case REQUEST_SCOPE: |
||||
this.request.removeAttribute(name); |
||||
break; |
||||
case SESSION_SCOPE: |
||||
this.request.getSession().removeAttribute(name); |
||||
break; |
||||
case APPLICATION_SCOPE: |
||||
this.servletContext.removeAttribute(name); |
||||
break; |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public int getAttributesScope(String name) { |
||||
if (getAttribute(name) != null) { |
||||
return PAGE_SCOPE; |
||||
} |
||||
else if (getAttribute(name, REQUEST_SCOPE) != null) { |
||||
return REQUEST_SCOPE; |
||||
} |
||||
else if (getAttribute(name, SESSION_SCOPE) != null) { |
||||
return SESSION_SCOPE; |
||||
} |
||||
else if (getAttribute(name, APPLICATION_SCOPE) != null) { |
||||
return APPLICATION_SCOPE; |
||||
} |
||||
else { |
||||
return 0; |
||||
} |
||||
} |
||||
|
||||
public Enumeration<String> getAttributeNames() { |
||||
return Collections.enumeration(this.attributes.keySet()); |
||||
} |
||||
|
||||
@SuppressWarnings("unchecked") |
||||
public Enumeration<String> getAttributeNamesInScope(int scope) { |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
return getAttributeNames(); |
||||
case REQUEST_SCOPE: |
||||
return this.request.getAttributeNames(); |
||||
case SESSION_SCOPE: |
||||
HttpSession session = this.request.getSession(false); |
||||
return (session != null ? session.getAttributeNames() : null); |
||||
case APPLICATION_SCOPE: |
||||
return this.servletContext.getAttributeNames(); |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public JspWriter getOut() { |
||||
if (this.out == null) { |
||||
this.out = new MockJspWriter(this.response); |
||||
} |
||||
return this.out; |
||||
} |
||||
|
||||
public ExpressionEvaluator getExpressionEvaluator() { |
||||
return new MockExpressionEvaluator(this); |
||||
} |
||||
|
||||
public ELContext getELContext() { |
||||
return null; |
||||
} |
||||
|
||||
public VariableResolver getVariableResolver() { |
||||
return null; |
||||
} |
||||
|
||||
public HttpSession getSession() { |
||||
return this.request.getSession(); |
||||
} |
||||
|
||||
public Object getPage() { |
||||
return this; |
||||
} |
||||
|
||||
public ServletRequest getRequest() { |
||||
return this.request; |
||||
} |
||||
|
||||
public ServletResponse getResponse() { |
||||
return this.response; |
||||
} |
||||
|
||||
public Exception getException() { |
||||
return null; |
||||
} |
||||
|
||||
public ServletConfig getServletConfig() { |
||||
return this.servletConfig; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return this.servletContext; |
||||
} |
||||
|
||||
public void forward(String url) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("forward"); |
||||
} |
||||
|
||||
public void include(String url) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("include"); |
||||
} |
||||
|
||||
public void include(String url, boolean flush) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("include"); |
||||
} |
||||
|
||||
public void handlePageException(Exception ex) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("handlePageException"); |
||||
} |
||||
|
||||
public void handlePageException(Throwable ex) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("handlePageException"); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.IOException; |
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.Map; |
||||
import javax.el.ELContext; |
||||
import javax.servlet.Servlet; |
||||
import javax.servlet.ServletConfig; |
||||
import javax.servlet.ServletContext; |
||||
import javax.servlet.ServletException; |
||||
import javax.servlet.ServletRequest; |
||||
import javax.servlet.ServletResponse; |
||||
import javax.servlet.http.HttpServletRequest; |
||||
import javax.servlet.http.HttpServletResponse; |
||||
import javax.servlet.http.HttpSession; |
||||
import javax.servlet.jsp.JspWriter; |
||||
import javax.servlet.jsp.PageContext; |
||||
import javax.servlet.jsp.el.ExpressionEvaluator; |
||||
import javax.servlet.jsp.el.VariableResolver; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.jsp.PageContext} interface. |
||||
* |
||||
* <p>Used for testing the web framework; only necessary for testing |
||||
* applications when testing custom JSP tags. |
||||
* |
||||
* <p>Note: Expects initialization via the constructor rather than via the |
||||
* <code>PageContext.initialize</code> method. Does not support writing to |
||||
* a JspWriter, request dispatching, and <code>handlePageException</code> calls. |
||||
* |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockPageContext extends PageContext { |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final HttpServletRequest request; |
||||
|
||||
private final HttpServletResponse response; |
||||
|
||||
private final ServletConfig servletConfig; |
||||
|
||||
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>(); |
||||
|
||||
private JspWriter out; |
||||
|
||||
|
||||
/** |
||||
* Create new MockPageContext with a default {@link MockServletContext}, |
||||
* {@link MockHttpServletRequest}, {@link MockHttpServletResponse}, |
||||
* {@link MockServletConfig}. |
||||
*/ |
||||
public MockPageContext() { |
||||
this(null, null, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a default {@link MockHttpServletRequest}, |
||||
* {@link MockHttpServletResponse}, {@link MockServletConfig}. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* (only necessary when actually accessing the ServletContext) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext) { |
||||
this(servletContext, null, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a MockHttpServletResponse, |
||||
* MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* (only necessary when actually accessing the request) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request) { |
||||
this(servletContext, request, null, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockPageContext with a MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* @param response the current HttpServletResponse |
||||
* (only necessary when actually writing to the response) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request, HttpServletResponse response) { |
||||
this(servletContext, request, response, null); |
||||
} |
||||
|
||||
/** |
||||
* Create new MockServletConfig. |
||||
* @param servletContext the ServletContext that the JSP page runs in |
||||
* @param request the current HttpServletRequest |
||||
* @param response the current HttpServletResponse |
||||
* @param servletConfig the ServletConfig (hardly ever accessed from within a tag) |
||||
*/ |
||||
public MockPageContext(ServletContext servletContext, HttpServletRequest request, |
||||
HttpServletResponse response, ServletConfig servletConfig) { |
||||
|
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.request = (request != null ? request : new MockHttpServletRequest(servletContext)); |
||||
this.response = (response != null ? response : new MockHttpServletResponse()); |
||||
this.servletConfig = (servletConfig != null ? servletConfig : new MockServletConfig(servletContext)); |
||||
} |
||||
|
||||
|
||||
public void initialize( |
||||
Servlet servlet, ServletRequest request, ServletResponse response, |
||||
String errorPageURL, boolean needsSession, int bufferSize, boolean autoFlush) { |
||||
|
||||
throw new UnsupportedOperationException("Use appropriate constructor"); |
||||
} |
||||
|
||||
public void release() { |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
} |
||||
else { |
||||
this.attributes.remove(name); |
||||
} |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
setAttribute(name, value); |
||||
break; |
||||
case REQUEST_SCOPE: |
||||
this.request.setAttribute(name, value); |
||||
break; |
||||
case SESSION_SCOPE: |
||||
this.request.getSession().setAttribute(name, value); |
||||
break; |
||||
case APPLICATION_SCOPE: |
||||
this.servletContext.setAttribute(name, value); |
||||
break; |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Object getAttribute(String name, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
return getAttribute(name); |
||||
case REQUEST_SCOPE: |
||||
return this.request.getAttribute(name); |
||||
case SESSION_SCOPE: |
||||
HttpSession session = this.request.getSession(false); |
||||
return (session != null ? session.getAttribute(name) : null); |
||||
case APPLICATION_SCOPE: |
||||
return this.servletContext.getAttribute(name); |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public Object findAttribute(String name) { |
||||
Object value = getAttribute(name); |
||||
if (value == null) { |
||||
value = getAttribute(name, REQUEST_SCOPE); |
||||
if (value == null) { |
||||
value = getAttribute(name, SESSION_SCOPE); |
||||
if (value == null) { |
||||
value = getAttribute(name, APPLICATION_SCOPE); |
||||
} |
||||
} |
||||
} |
||||
return value; |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
this.removeAttribute(name, PageContext.PAGE_SCOPE); |
||||
this.removeAttribute(name, PageContext.REQUEST_SCOPE); |
||||
this.removeAttribute(name, PageContext.SESSION_SCOPE); |
||||
this.removeAttribute(name, PageContext.APPLICATION_SCOPE); |
||||
} |
||||
|
||||
public void removeAttribute(String name, int scope) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
this.attributes.remove(name); |
||||
break; |
||||
case REQUEST_SCOPE: |
||||
this.request.removeAttribute(name); |
||||
break; |
||||
case SESSION_SCOPE: |
||||
this.request.getSession().removeAttribute(name); |
||||
break; |
||||
case APPLICATION_SCOPE: |
||||
this.servletContext.removeAttribute(name); |
||||
break; |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public int getAttributesScope(String name) { |
||||
if (getAttribute(name) != null) { |
||||
return PAGE_SCOPE; |
||||
} |
||||
else if (getAttribute(name, REQUEST_SCOPE) != null) { |
||||
return REQUEST_SCOPE; |
||||
} |
||||
else if (getAttribute(name, SESSION_SCOPE) != null) { |
||||
return SESSION_SCOPE; |
||||
} |
||||
else if (getAttribute(name, APPLICATION_SCOPE) != null) { |
||||
return APPLICATION_SCOPE; |
||||
} |
||||
else { |
||||
return 0; |
||||
} |
||||
} |
||||
|
||||
public Enumeration<String> getAttributeNames() { |
||||
return Collections.enumeration(this.attributes.keySet()); |
||||
} |
||||
|
||||
@SuppressWarnings("unchecked") |
||||
public Enumeration<String> getAttributeNamesInScope(int scope) { |
||||
switch (scope) { |
||||
case PAGE_SCOPE: |
||||
return getAttributeNames(); |
||||
case REQUEST_SCOPE: |
||||
return this.request.getAttributeNames(); |
||||
case SESSION_SCOPE: |
||||
HttpSession session = this.request.getSession(false); |
||||
return (session != null ? session.getAttributeNames() : null); |
||||
case APPLICATION_SCOPE: |
||||
return this.servletContext.getAttributeNames(); |
||||
default: |
||||
throw new IllegalArgumentException("Invalid scope: " + scope); |
||||
} |
||||
} |
||||
|
||||
public JspWriter getOut() { |
||||
if (this.out == null) { |
||||
this.out = new MockJspWriter(this.response); |
||||
} |
||||
return this.out; |
||||
} |
||||
|
||||
public ExpressionEvaluator getExpressionEvaluator() { |
||||
return new MockExpressionEvaluator(this); |
||||
} |
||||
|
||||
public ELContext getELContext() { |
||||
return null; |
||||
} |
||||
|
||||
public VariableResolver getVariableResolver() { |
||||
return null; |
||||
} |
||||
|
||||
public HttpSession getSession() { |
||||
return this.request.getSession(); |
||||
} |
||||
|
||||
public Object getPage() { |
||||
return this; |
||||
} |
||||
|
||||
public ServletRequest getRequest() { |
||||
return this.request; |
||||
} |
||||
|
||||
public ServletResponse getResponse() { |
||||
return this.response; |
||||
} |
||||
|
||||
public Exception getException() { |
||||
return null; |
||||
} |
||||
|
||||
public ServletConfig getServletConfig() { |
||||
return this.servletConfig; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return this.servletContext; |
||||
} |
||||
|
||||
public void forward(String url) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("forward"); |
||||
} |
||||
|
||||
public void include(String url) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("include"); |
||||
} |
||||
|
||||
public void include(String url, boolean flush) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("include"); |
||||
} |
||||
|
||||
public void handlePageException(Exception ex) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("handlePageException"); |
||||
} |
||||
|
||||
public void handlePageException(Throwable ex) throws ServletException, IOException { |
||||
throw new UnsupportedOperationException("handlePageException"); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,91 +1,91 @@
@@ -1,91 +1,91 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import javax.servlet.RequestDispatcher; |
||||
import javax.servlet.ServletRequest; |
||||
import javax.servlet.ServletResponse; |
||||
import javax.servlet.http.HttpServletResponseWrapper; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.RequestDispatcher} interface. |
||||
* |
||||
* <p>Used for testing the web framework; typically not necessary for |
||||
* testing application controllers. |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockRequestDispatcher implements RequestDispatcher { |
||||
|
||||
private final Log logger = LogFactory.getLog(getClass()); |
||||
|
||||
private final String url; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockRequestDispatcher for the given URL. |
||||
* @param url the URL to dispatch to. |
||||
*/ |
||||
public MockRequestDispatcher(String url) { |
||||
Assert.notNull(url, "URL must not be null"); |
||||
this.url = url; |
||||
} |
||||
|
||||
|
||||
public void forward(ServletRequest request, ServletResponse response) { |
||||
Assert.notNull(request, "Request must not be null"); |
||||
Assert.notNull(response, "Response must not be null"); |
||||
if (response.isCommitted()) { |
||||
throw new IllegalStateException("Cannot perform forward - response is already committed"); |
||||
} |
||||
getMockHttpServletResponse(response).setForwardedUrl(this.url); |
||||
if (logger.isDebugEnabled()) { |
||||
logger.debug("MockRequestDispatcher: forwarding to URL [" + this.url + "]"); |
||||
} |
||||
} |
||||
|
||||
public void include(ServletRequest request, ServletResponse response) { |
||||
Assert.notNull(request, "Request must not be null"); |
||||
Assert.notNull(response, "Response must not be null"); |
||||
getMockHttpServletResponse(response).setIncludedUrl(this.url); |
||||
if (logger.isDebugEnabled()) { |
||||
logger.debug("MockRequestDispatcher: including URL [" + this.url + "]"); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Obtain the underlying MockHttpServletResponse, |
||||
* unwrapping {@link javax.servlet.http.HttpServletResponseWrapper} decorators if necessary. |
||||
*/ |
||||
protected MockHttpServletResponse getMockHttpServletResponse(ServletResponse response) { |
||||
if (response instanceof MockHttpServletResponse) { |
||||
return (MockHttpServletResponse) response; |
||||
} |
||||
if (response instanceof HttpServletResponseWrapper) { |
||||
return getMockHttpServletResponse(((HttpServletResponseWrapper) response).getResponse()); |
||||
} |
||||
throw new IllegalArgumentException("MockRequestDispatcher requires MockHttpServletResponse"); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import javax.servlet.RequestDispatcher; |
||||
import javax.servlet.ServletRequest; |
||||
import javax.servlet.ServletResponse; |
||||
import javax.servlet.http.HttpServletResponseWrapper; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.RequestDispatcher} interface. |
||||
* |
||||
* <p>Used for testing the web framework; typically not necessary for |
||||
* testing application controllers. |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockRequestDispatcher implements RequestDispatcher { |
||||
|
||||
private final Log logger = LogFactory.getLog(getClass()); |
||||
|
||||
private final String url; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockRequestDispatcher for the given URL. |
||||
* @param url the URL to dispatch to. |
||||
*/ |
||||
public MockRequestDispatcher(String url) { |
||||
Assert.notNull(url, "URL must not be null"); |
||||
this.url = url; |
||||
} |
||||
|
||||
|
||||
public void forward(ServletRequest request, ServletResponse response) { |
||||
Assert.notNull(request, "Request must not be null"); |
||||
Assert.notNull(response, "Response must not be null"); |
||||
if (response.isCommitted()) { |
||||
throw new IllegalStateException("Cannot perform forward - response is already committed"); |
||||
} |
||||
getMockHttpServletResponse(response).setForwardedUrl(this.url); |
||||
if (logger.isDebugEnabled()) { |
||||
logger.debug("MockRequestDispatcher: forwarding to URL [" + this.url + "]"); |
||||
} |
||||
} |
||||
|
||||
public void include(ServletRequest request, ServletResponse response) { |
||||
Assert.notNull(request, "Request must not be null"); |
||||
Assert.notNull(response, "Response must not be null"); |
||||
getMockHttpServletResponse(response).setIncludedUrl(this.url); |
||||
if (logger.isDebugEnabled()) { |
||||
logger.debug("MockRequestDispatcher: including URL [" + this.url + "]"); |
||||
} |
||||
} |
||||
|
||||
/** |
||||
* Obtain the underlying MockHttpServletResponse, |
||||
* unwrapping {@link HttpServletResponseWrapper} decorators if necessary. |
||||
*/ |
||||
protected MockHttpServletResponse getMockHttpServletResponse(ServletResponse response) { |
||||
if (response instanceof MockHttpServletResponse) { |
||||
return (MockHttpServletResponse) response; |
||||
} |
||||
if (response instanceof HttpServletResponseWrapper) { |
||||
return getMockHttpServletResponse(((HttpServletResponseWrapper) response).getResponse()); |
||||
} |
||||
throw new IllegalArgumentException("MockRequestDispatcher requires MockHttpServletResponse"); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,102 +1,103 @@
@@ -1,102 +1,103 @@
|
||||
/* |
||||
* Copyright 2002-2006 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.util.Enumeration; |
||||
import java.util.Properties; |
||||
|
||||
import javax.servlet.ServletConfig; |
||||
import javax.servlet.ServletContext; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.ServletConfig} interface. |
||||
* |
||||
* <p>Used for testing the web framework; typically not necessary for |
||||
* testing application controllers. |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockServletConfig implements ServletConfig { |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final String servletName; |
||||
|
||||
private final Properties initParameters = new Properties(); |
||||
|
||||
|
||||
/** |
||||
* Create a new MockServletConfig with a default {@link org.springframework.mock.web.MockServletContext}. |
||||
*/ |
||||
public MockServletConfig() { |
||||
this(null, ""); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig with a default {@link org.springframework.mock.web.MockServletContext}. |
||||
* @param servletName the name of the servlet |
||||
*/ |
||||
public MockServletConfig(String servletName) { |
||||
this(null, servletName); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig. |
||||
* @param servletContext the ServletContext that the servlet runs in |
||||
*/ |
||||
public MockServletConfig(ServletContext servletContext) { |
||||
this(servletContext, ""); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig. |
||||
* @param servletContext the ServletContext that the servlet runs in |
||||
* @param servletName the name of the servlet |
||||
*/ |
||||
public MockServletConfig(ServletContext servletContext, String servletName) { |
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.servletName = servletName; |
||||
} |
||||
|
||||
|
||||
public String getServletName() { |
||||
return servletName; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return servletContext; |
||||
} |
||||
|
||||
public void addInitParameter(String name, String value) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
this.initParameters.setProperty(name, value); |
||||
} |
||||
|
||||
public String getInitParameter(String name) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
return this.initParameters.getProperty(name); |
||||
} |
||||
|
||||
public Enumeration getInitParameterNames() { |
||||
return this.initParameters.keys(); |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.Map; |
||||
import javax.servlet.ServletConfig; |
||||
import javax.servlet.ServletContext; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.ServletConfig} interface. |
||||
* |
||||
* <p>Used for testing the web framework; typically not necessary for |
||||
* testing application controllers. |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
*/ |
||||
public class MockServletConfig implements ServletConfig { |
||||
|
||||
private final ServletContext servletContext; |
||||
|
||||
private final String servletName; |
||||
|
||||
private final Map<String, String> initParameters = new LinkedHashMap<String, String>(); |
||||
|
||||
|
||||
/** |
||||
* Create a new MockServletConfig with a default {@link MockServletContext}. |
||||
*/ |
||||
public MockServletConfig() { |
||||
this(null, ""); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig with a default {@link MockServletContext}. |
||||
* @param servletName the name of the servlet |
||||
*/ |
||||
public MockServletConfig(String servletName) { |
||||
this(null, servletName); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig. |
||||
* @param servletContext the ServletContext that the servlet runs in |
||||
*/ |
||||
public MockServletConfig(ServletContext servletContext) { |
||||
this(servletContext, ""); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletConfig. |
||||
* @param servletContext the ServletContext that the servlet runs in |
||||
* @param servletName the name of the servlet |
||||
*/ |
||||
public MockServletConfig(ServletContext servletContext, String servletName) { |
||||
this.servletContext = (servletContext != null ? servletContext : new MockServletContext()); |
||||
this.servletName = servletName; |
||||
} |
||||
|
||||
|
||||
public String getServletName() { |
||||
return this.servletName; |
||||
} |
||||
|
||||
public ServletContext getServletContext() { |
||||
return this.servletContext; |
||||
} |
||||
|
||||
public void addInitParameter(String name, String value) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
this.initParameters.put(name, value); |
||||
} |
||||
|
||||
public String getInitParameter(String name) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
return this.initParameters.get(name); |
||||
} |
||||
|
||||
public Enumeration<String> getInitParameterNames() { |
||||
return Collections.enumeration(this.initParameters.keySet()); |
||||
} |
||||
|
||||
} |
||||
|
||||
@ -1,356 +1,355 @@
@@ -1,356 +1,355 @@
|
||||
/* |
||||
* Copyright 2002-2007 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.net.MalformedURLException; |
||||
import java.net.URL; |
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.HashMap; |
||||
import java.util.Hashtable; |
||||
import java.util.LinkedHashSet; |
||||
import java.util.Map; |
||||
import java.util.Properties; |
||||
import java.util.Set; |
||||
|
||||
import javax.activation.FileTypeMap; |
||||
import javax.servlet.RequestDispatcher; |
||||
import javax.servlet.Servlet; |
||||
import javax.servlet.ServletContext; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
|
||||
import org.springframework.core.io.DefaultResourceLoader; |
||||
import org.springframework.core.io.Resource; |
||||
import org.springframework.core.io.ResourceLoader; |
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.ObjectUtils; |
||||
import org.springframework.web.util.WebUtils; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.ServletContext} interface. |
||||
* |
||||
* <p>Used for testing the Spring web framework; only rarely necessary for testing |
||||
* application controllers. As long as application components don't explicitly |
||||
* access the ServletContext, ClassPathXmlApplicationContext or |
||||
* FileSystemXmlApplicationContext can be used to load the context files for testing, |
||||
* even for DispatcherServlet context definitions. |
||||
* |
||||
* <p>For setting up a full WebApplicationContext in a test environment, you can |
||||
* use XmlWebApplicationContext (or GenericWebApplicationContext), passing in an |
||||
* appropriate MockServletContext instance. You might want to configure your |
||||
* MockServletContext with a FileSystemResourceLoader in that case, to make your |
||||
* resource paths interpreted as relative file system locations. |
||||
* |
||||
* <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. |
||||
* 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 |
||||
* FileSystemXmlApplicationContext (which will load straight from the file system) |
||||
* and XmlWebApplicationContext with an underlying MockServletContext (as long as |
||||
* the MockServletContext has been configured with a FileSystemResourceLoader). |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see #MockServletContext(org.springframework.core.io.ResourceLoader) |
||||
* @see org.springframework.web.context.support.XmlWebApplicationContext |
||||
* @see org.springframework.web.context.support.GenericWebApplicationContext |
||||
* @see org.springframework.context.support.ClassPathXmlApplicationContext |
||||
* @see org.springframework.context.support.FileSystemXmlApplicationContext |
||||
*/ |
||||
public class MockServletContext implements ServletContext { |
||||
|
||||
private static final String TEMP_DIR_SYSTEM_PROPERTY = "java.io.tmpdir"; |
||||
|
||||
|
||||
private final Log logger = LogFactory.getLog(getClass()); |
||||
|
||||
private final ResourceLoader resourceLoader; |
||||
|
||||
private final String resourceBasePath; |
||||
|
||||
private String contextPath = ""; |
||||
|
||||
private final Map contexts = new HashMap(); |
||||
|
||||
private final Properties initParameters = new Properties(); |
||||
|
||||
private final Hashtable attributes = new Hashtable(); |
||||
|
||||
private String servletContextName = "MockServletContext"; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockServletContext, using no base path and a |
||||
* DefaultResourceLoader (i.e. the classpath root as WAR root). |
||||
* @see org.springframework.core.io.DefaultResourceLoader |
||||
*/ |
||||
public MockServletContext() { |
||||
this("", null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext, using a DefaultResourceLoader. |
||||
* @param resourceBasePath the WAR root directory (should not end with a slash) |
||||
* @see org.springframework.core.io.DefaultResourceLoader |
||||
*/ |
||||
public MockServletContext(String resourceBasePath) { |
||||
this(resourceBasePath, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext, using the specified ResourceLoader |
||||
* and no base path. |
||||
* @param resourceLoader the ResourceLoader to use (or null for the default) |
||||
*/ |
||||
public MockServletContext(ResourceLoader resourceLoader) { |
||||
this("", resourceLoader); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext. |
||||
* @param resourceBasePath the WAR root directory (should not end with a slash) |
||||
* @param resourceLoader the ResourceLoader to use (or null for the default) |
||||
*/ |
||||
public MockServletContext(String resourceBasePath, ResourceLoader resourceLoader) { |
||||
this.resourceLoader = (resourceLoader != null ? resourceLoader : new DefaultResourceLoader()); |
||||
this.resourceBasePath = (resourceBasePath != null ? resourceBasePath : ""); |
||||
|
||||
// Use JVM temp dir as ServletContext temp dir.
|
||||
String tempDir = System.getProperty(TEMP_DIR_SYSTEM_PROPERTY); |
||||
if (tempDir != null) { |
||||
this.attributes.put(WebUtils.TEMP_DIR_CONTEXT_ATTRIBUTE, new File(tempDir)); |
||||
} |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Build a full resource location for the given path, |
||||
* prepending the resource base path of this MockServletContext. |
||||
* @param path the path as specified |
||||
* @return the full resource path |
||||
*/ |
||||
protected String getResourceLocation(String path) { |
||||
if (!path.startsWith("/")) { |
||||
path = "/" + path; |
||||
} |
||||
return this.resourceBasePath + path; |
||||
} |
||||
|
||||
|
||||
public void setContextPath(String contextPath) { |
||||
this.contextPath = (contextPath != null ? contextPath : ""); |
||||
} |
||||
|
||||
/* This is a Servlet API 2.5 method. */ |
||||
public String getContextPath() { |
||||
return this.contextPath; |
||||
} |
||||
|
||||
public void registerContext(String contextPath, ServletContext context) { |
||||
this.contexts.put(contextPath, context); |
||||
} |
||||
|
||||
public ServletContext getContext(String contextPath) { |
||||
if (this.contextPath.equals(contextPath)) { |
||||
return this; |
||||
} |
||||
return (ServletContext) this.contexts.get(contextPath); |
||||
} |
||||
|
||||
public int getMajorVersion() { |
||||
return 2; |
||||
} |
||||
|
||||
public int getMinorVersion() { |
||||
return 5; |
||||
} |
||||
|
||||
public String getMimeType(String filePath) { |
||||
return MimeTypeResolver.getMimeType(filePath); |
||||
} |
||||
|
||||
public Set getResourcePaths(String path) { |
||||
String actualPath = (path.endsWith("/") ? path : path + "/"); |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(actualPath)); |
||||
try { |
||||
File file = resource.getFile(); |
||||
String[] fileList = file.list(); |
||||
if (ObjectUtils.isEmpty(fileList)) { |
||||
return null; |
||||
} |
||||
Set resourcePaths = new LinkedHashSet(fileList.length); |
||||
for (int i = 0; i < fileList.length; i++) { |
||||
String resultPath = actualPath + fileList[i]; |
||||
if (resource.createRelative(fileList[i]).getFile().isDirectory()) { |
||||
resultPath += "/"; |
||||
} |
||||
resourcePaths.add(resultPath); |
||||
} |
||||
return resourcePaths; |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't get resource paths for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public URL getResource(String path) throws MalformedURLException { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
if (!resource.exists()) { |
||||
return null; |
||||
} |
||||
try { |
||||
return resource.getURL(); |
||||
} |
||||
catch (MalformedURLException ex) { |
||||
throw ex; |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't get URL for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public InputStream getResourceAsStream(String path) { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
if (!resource.exists()) { |
||||
return null; |
||||
} |
||||
try { |
||||
return resource.getInputStream(); |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't open InputStream for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public RequestDispatcher getRequestDispatcher(String path) { |
||||
if (!path.startsWith("/")) { |
||||
throw new IllegalArgumentException("RequestDispatcher path at ServletContext level must start with '/'"); |
||||
} |
||||
return new MockRequestDispatcher(path); |
||||
} |
||||
|
||||
public RequestDispatcher getNamedDispatcher(String path) { |
||||
return null; |
||||
} |
||||
|
||||
public Servlet getServlet(String name) { |
||||
return null; |
||||
} |
||||
|
||||
public Enumeration getServlets() { |
||||
return Collections.enumeration(Collections.EMPTY_SET); |
||||
} |
||||
|
||||
public Enumeration getServletNames() { |
||||
return Collections.enumeration(Collections.EMPTY_SET); |
||||
} |
||||
|
||||
public void log(String message) { |
||||
logger.info(message); |
||||
} |
||||
|
||||
public void log(Exception ex, String message) { |
||||
logger.info(message, ex); |
||||
} |
||||
|
||||
public void log(String message, Throwable ex) { |
||||
logger.info(message, ex); |
||||
} |
||||
|
||||
public String getRealPath(String path) { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
try { |
||||
return resource.getFile().getAbsolutePath(); |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't determine real path of resource " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public String getServerInfo() { |
||||
return "MockServletContext"; |
||||
} |
||||
|
||||
public String getInitParameter(String name) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
return this.initParameters.getProperty(name); |
||||
} |
||||
|
||||
public void addInitParameter(String name, String value) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
this.initParameters.setProperty(name, value); |
||||
} |
||||
|
||||
public Enumeration getInitParameterNames() { |
||||
return this.initParameters.keys(); |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Enumeration getAttributeNames() { |
||||
return this.attributes.keys(); |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
} |
||||
else { |
||||
this.attributes.remove(name); |
||||
} |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
this.attributes.remove(name); |
||||
} |
||||
|
||||
public void setServletContextName(String servletContextName) { |
||||
this.servletContextName = servletContextName; |
||||
} |
||||
|
||||
public String getServletContextName() { |
||||
return this.servletContextName; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Inner factory class used to just introduce a Java Activation Framework |
||||
* dependency when actually asked to resolve a MIME type. |
||||
*/ |
||||
private static class MimeTypeResolver { |
||||
|
||||
public static String getMimeType(String filePath) { |
||||
return FileTypeMap.getDefaultFileTypeMap().getContentType(filePath); |
||||
} |
||||
} |
||||
|
||||
} |
||||
/* |
||||
* Copyright 2002-2009 the original author or authors. |
||||
* |
||||
* Licensed 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.springframework.mock.web; |
||||
|
||||
import java.io.File; |
||||
import java.io.IOException; |
||||
import java.io.InputStream; |
||||
import java.net.MalformedURLException; |
||||
import java.net.URL; |
||||
import java.util.Collections; |
||||
import java.util.Enumeration; |
||||
import java.util.HashMap; |
||||
import java.util.HashSet; |
||||
import java.util.LinkedHashMap; |
||||
import java.util.LinkedHashSet; |
||||
import java.util.Map; |
||||
import java.util.Set; |
||||
import javax.activation.FileTypeMap; |
||||
import javax.servlet.RequestDispatcher; |
||||
import javax.servlet.Servlet; |
||||
import javax.servlet.ServletContext; |
||||
|
||||
import org.apache.commons.logging.Log; |
||||
import org.apache.commons.logging.LogFactory; |
||||
|
||||
import org.springframework.core.io.DefaultResourceLoader; |
||||
import org.springframework.core.io.Resource; |
||||
import org.springframework.core.io.ResourceLoader; |
||||
import org.springframework.util.Assert; |
||||
import org.springframework.util.ObjectUtils; |
||||
import org.springframework.web.util.WebUtils; |
||||
|
||||
/** |
||||
* Mock implementation of the {@link javax.servlet.ServletContext} interface. |
||||
* |
||||
* <p>Used for testing the Spring web framework; only rarely necessary for testing |
||||
* application controllers. As long as application components don't explicitly |
||||
* access the ServletContext, ClassPathXmlApplicationContext or |
||||
* FileSystemXmlApplicationContext can be used to load the context files for testing, |
||||
* even for DispatcherServlet context definitions. |
||||
* |
||||
* <p>For setting up a full WebApplicationContext in a test environment, you can |
||||
* use XmlWebApplicationContext (or GenericWebApplicationContext), passing in an |
||||
* appropriate MockServletContext instance. You might want to configure your |
||||
* MockServletContext with a FileSystemResourceLoader in that case, to make your |
||||
* resource paths interpreted as relative file system locations. |
||||
* |
||||
* <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. |
||||
* 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 |
||||
* FileSystemXmlApplicationContext (which will load straight from the file system) |
||||
* and XmlWebApplicationContext with an underlying MockServletContext (as long as |
||||
* the MockServletContext has been configured with a FileSystemResourceLoader). |
||||
* |
||||
* @author Rod Johnson |
||||
* @author Juergen Hoeller |
||||
* @since 1.0.2 |
||||
* @see #MockServletContext(org.springframework.core.io.ResourceLoader) |
||||
* @see org.springframework.web.context.support.XmlWebApplicationContext |
||||
* @see org.springframework.web.context.support.GenericWebApplicationContext |
||||
* @see org.springframework.context.support.ClassPathXmlApplicationContext |
||||
* @see org.springframework.context.support.FileSystemXmlApplicationContext |
||||
*/ |
||||
public class MockServletContext implements ServletContext { |
||||
|
||||
private static final String TEMP_DIR_SYSTEM_PROPERTY = "java.io.tmpdir"; |
||||
|
||||
|
||||
private final Log logger = LogFactory.getLog(getClass()); |
||||
|
||||
private final ResourceLoader resourceLoader; |
||||
|
||||
private final String resourceBasePath; |
||||
|
||||
private String contextPath = ""; |
||||
|
||||
private final Map<String, ServletContext> contexts = new HashMap<String, ServletContext>(); |
||||
|
||||
private final Map<String, String> initParameters = new LinkedHashMap<String, String>(); |
||||
|
||||
private final Map<String, Object> attributes = new LinkedHashMap<String, Object>(); |
||||
|
||||
private String servletContextName = "MockServletContext"; |
||||
|
||||
|
||||
/** |
||||
* Create a new MockServletContext, using no base path and a |
||||
* DefaultResourceLoader (i.e. the classpath root as WAR root). |
||||
* @see org.springframework.core.io.DefaultResourceLoader |
||||
*/ |
||||
public MockServletContext() { |
||||
this("", null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext, using a DefaultResourceLoader. |
||||
* @param resourceBasePath the WAR root directory (should not end with a slash) |
||||
* @see org.springframework.core.io.DefaultResourceLoader |
||||
*/ |
||||
public MockServletContext(String resourceBasePath) { |
||||
this(resourceBasePath, null); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext, using the specified ResourceLoader |
||||
* and no base path. |
||||
* @param resourceLoader the ResourceLoader to use (or null for the default) |
||||
*/ |
||||
public MockServletContext(ResourceLoader resourceLoader) { |
||||
this("", resourceLoader); |
||||
} |
||||
|
||||
/** |
||||
* Create a new MockServletContext. |
||||
* @param resourceBasePath the WAR root directory (should not end with a slash) |
||||
* @param resourceLoader the ResourceLoader to use (or null for the default) |
||||
*/ |
||||
public MockServletContext(String resourceBasePath, ResourceLoader resourceLoader) { |
||||
this.resourceLoader = (resourceLoader != null ? resourceLoader : new DefaultResourceLoader()); |
||||
this.resourceBasePath = (resourceBasePath != null ? resourceBasePath : ""); |
||||
|
||||
// Use JVM temp dir as ServletContext temp dir.
|
||||
String tempDir = System.getProperty(TEMP_DIR_SYSTEM_PROPERTY); |
||||
if (tempDir != null) { |
||||
this.attributes.put(WebUtils.TEMP_DIR_CONTEXT_ATTRIBUTE, new File(tempDir)); |
||||
} |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Build a full resource location for the given path, |
||||
* prepending the resource base path of this MockServletContext. |
||||
* @param path the path as specified |
||||
* @return the full resource path |
||||
*/ |
||||
protected String getResourceLocation(String path) { |
||||
if (!path.startsWith("/")) { |
||||
path = "/" + path; |
||||
} |
||||
return this.resourceBasePath + path; |
||||
} |
||||
|
||||
|
||||
public void setContextPath(String contextPath) { |
||||
this.contextPath = (contextPath != null ? contextPath : ""); |
||||
} |
||||
|
||||
/* This is a Servlet API 2.5 method. */ |
||||
public String getContextPath() { |
||||
return this.contextPath; |
||||
} |
||||
|
||||
public void registerContext(String contextPath, ServletContext context) { |
||||
this.contexts.put(contextPath, context); |
||||
} |
||||
|
||||
public ServletContext getContext(String contextPath) { |
||||
if (this.contextPath.equals(contextPath)) { |
||||
return this; |
||||
} |
||||
return this.contexts.get(contextPath); |
||||
} |
||||
|
||||
public int getMajorVersion() { |
||||
return 2; |
||||
} |
||||
|
||||
public int getMinorVersion() { |
||||
return 5; |
||||
} |
||||
|
||||
public String getMimeType(String filePath) { |
||||
return MimeTypeResolver.getMimeType(filePath); |
||||
} |
||||
|
||||
public Set<String> getResourcePaths(String path) { |
||||
String actualPath = (path.endsWith("/") ? path : path + "/"); |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(actualPath)); |
||||
try { |
||||
File file = resource.getFile(); |
||||
String[] fileList = file.list(); |
||||
if (ObjectUtils.isEmpty(fileList)) { |
||||
return null; |
||||
} |
||||
Set<String> resourcePaths = new LinkedHashSet<String>(fileList.length); |
||||
for (String fileEntry : fileList) { |
||||
String resultPath = actualPath + fileEntry; |
||||
if (resource.createRelative(fileEntry).getFile().isDirectory()) { |
||||
resultPath += "/"; |
||||
} |
||||
resourcePaths.add(resultPath); |
||||
} |
||||
return resourcePaths; |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't get resource paths for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public URL getResource(String path) throws MalformedURLException { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
if (!resource.exists()) { |
||||
return null; |
||||
} |
||||
try { |
||||
return resource.getURL(); |
||||
} |
||||
catch (MalformedURLException ex) { |
||||
throw ex; |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't get URL for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public InputStream getResourceAsStream(String path) { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
if (!resource.exists()) { |
||||
return null; |
||||
} |
||||
try { |
||||
return resource.getInputStream(); |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't open InputStream for " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public RequestDispatcher getRequestDispatcher(String path) { |
||||
if (!path.startsWith("/")) { |
||||
throw new IllegalArgumentException("RequestDispatcher path at ServletContext level must start with '/'"); |
||||
} |
||||
return new MockRequestDispatcher(path); |
||||
} |
||||
|
||||
public RequestDispatcher getNamedDispatcher(String path) { |
||||
return null; |
||||
} |
||||
|
||||
public Servlet getServlet(String name) { |
||||
return null; |
||||
} |
||||
|
||||
public Enumeration<Servlet> getServlets() { |
||||
return Collections.enumeration(new HashSet<Servlet>()); |
||||
} |
||||
|
||||
public Enumeration<String> getServletNames() { |
||||
return Collections.enumeration(new HashSet<String>()); |
||||
} |
||||
|
||||
public void log(String message) { |
||||
logger.info(message); |
||||
} |
||||
|
||||
public void log(Exception ex, String message) { |
||||
logger.info(message, ex); |
||||
} |
||||
|
||||
public void log(String message, Throwable ex) { |
||||
logger.info(message, ex); |
||||
} |
||||
|
||||
public String getRealPath(String path) { |
||||
Resource resource = this.resourceLoader.getResource(getResourceLocation(path)); |
||||
try { |
||||
return resource.getFile().getAbsolutePath(); |
||||
} |
||||
catch (IOException ex) { |
||||
logger.warn("Couldn't determine real path of resource " + resource, ex); |
||||
return null; |
||||
} |
||||
} |
||||
|
||||
public String getServerInfo() { |
||||
return "MockServletContext"; |
||||
} |
||||
|
||||
public String getInitParameter(String name) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
return this.initParameters.get(name); |
||||
} |
||||
|
||||
public void addInitParameter(String name, String value) { |
||||
Assert.notNull(name, "Parameter name must not be null"); |
||||
this.initParameters.put(name, value); |
||||
} |
||||
|
||||
public Enumeration<String> getInitParameterNames() { |
||||
return Collections.enumeration(this.initParameters.keySet()); |
||||
} |
||||
|
||||
public Object getAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
return this.attributes.get(name); |
||||
} |
||||
|
||||
public Enumeration<String> getAttributeNames() { |
||||
return Collections.enumeration(this.attributes.keySet()); |
||||
} |
||||
|
||||
public void setAttribute(String name, Object value) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
if (value != null) { |
||||
this.attributes.put(name, value); |
||||
} |
||||
else { |
||||
this.attributes.remove(name); |
||||
} |
||||
} |
||||
|
||||
public void removeAttribute(String name) { |
||||
Assert.notNull(name, "Attribute name must not be null"); |
||||
this.attributes.remove(name); |
||||
} |
||||
|
||||
public void setServletContextName(String servletContextName) { |
||||
this.servletContextName = servletContextName; |
||||
} |
||||
|
||||
public String getServletContextName() { |
||||
return this.servletContextName; |
||||
} |
||||
|
||||
|
||||
/** |
||||
* Inner factory class used to just introduce a Java Activation Framework |
||||
* dependency when actually asked to resolve a MIME type. |
||||
*/ |
||||
private static class MimeTypeResolver { |
||||
|
||||
public static String getMimeType(String filePath) { |
||||
return FileTypeMap.getDefaultFileTypeMap().getContentType(filePath); |
||||
} |
||||
} |
||||
|
||||
} |
||||
|
||||
Loading…
Reference in new issue