Browse Source
git-svn-id: https://src.springframework.org/svn/spring-framework/trunk@4713 50f2f4bb-b051-0410-bef5-90022cba6387pull/1/merge
26 changed files with 958 additions and 193 deletions
@ -0,0 +1,139 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2011 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.IOException; |
||||||
|
import java.io.InputStream; |
||||||
|
import java.util.Collection; |
||||||
|
import java.util.Collections; |
||||||
|
|
||||||
|
import javax.servlet.http.Part; |
||||||
|
|
||||||
|
import org.springframework.util.Assert; |
||||||
|
import org.springframework.util.FileCopyUtils; |
||||||
|
|
||||||
|
/** |
||||||
|
* Mock implementation of the {@link Part} interface. |
||||||
|
* |
||||||
|
* @author Rossen Stoyanchev |
||||||
|
* @since 3.1 |
||||||
|
* @see MockHttpServletRequest |
||||||
|
*/ |
||||||
|
public class MockPart implements Part { |
||||||
|
|
||||||
|
private static final String CONTENT_TYPE = "Content-Type"; |
||||||
|
|
||||||
|
private final String name; |
||||||
|
|
||||||
|
private String contentType; |
||||||
|
|
||||||
|
private final byte[] content; |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the part |
||||||
|
* @param content the content for the part |
||||||
|
*/ |
||||||
|
public MockPart(String name, byte[] content) { |
||||||
|
this(name, "", content); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the part |
||||||
|
* @param contentStream the content of the part as stream |
||||||
|
* @throws IOException if reading from the stream failed |
||||||
|
*/ |
||||||
|
public MockPart(String name, InputStream contentStream) throws IOException { |
||||||
|
this(name, "", FileCopyUtils.copyToByteArray(contentStream)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the file |
||||||
|
* @param contentType the content type (if known) |
||||||
|
* @param content the content of the file |
||||||
|
*/ |
||||||
|
public MockPart(String name, String contentType, byte[] content) { |
||||||
|
Assert.hasLength(name, "Name must not be null"); |
||||||
|
this.name = name; |
||||||
|
this.contentType = contentType; |
||||||
|
this.content = (content != null ? content : new byte[0]); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the file |
||||||
|
* @param contentType the content type (if known) |
||||||
|
* @param contentStream the content of the part as stream |
||||||
|
* @throws IOException if reading from the stream failed |
||||||
|
*/ |
||||||
|
public MockPart(String name, String contentType, InputStream contentStream) |
||||||
|
throws IOException { |
||||||
|
|
||||||
|
this(name, contentType, FileCopyUtils.copyToByteArray(contentStream)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
|
||||||
|
public String getContentType() { |
||||||
|
return this.contentType; |
||||||
|
} |
||||||
|
|
||||||
|
public long getSize() { |
||||||
|
return this.content.length; |
||||||
|
} |
||||||
|
|
||||||
|
public InputStream getInputStream() throws IOException { |
||||||
|
return new ByteArrayInputStream(this.content); |
||||||
|
} |
||||||
|
|
||||||
|
public String getHeader(String name) { |
||||||
|
if (CONTENT_TYPE.equalsIgnoreCase(name)) { |
||||||
|
return this.contentType; |
||||||
|
} |
||||||
|
else { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public Collection<String> getHeaders(String name) { |
||||||
|
if (CONTENT_TYPE.equalsIgnoreCase(name)) { |
||||||
|
return Collections.singleton(this.contentType); |
||||||
|
} |
||||||
|
else { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public Collection<String> getHeaderNames() { |
||||||
|
return Collections.singleton(CONTENT_TYPE); |
||||||
|
} |
||||||
|
|
||||||
|
public void write(String fileName) throws IOException { |
||||||
|
throw new UnsupportedOperationException(); |
||||||
|
} |
||||||
|
|
||||||
|
public void delete() throws IOException { |
||||||
|
throw new UnsupportedOperationException(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
@ -0,0 +1,139 @@ |
|||||||
|
/* |
||||||
|
* Copyright 2002-2011 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.IOException; |
||||||
|
import java.io.InputStream; |
||||||
|
import java.util.Collection; |
||||||
|
import java.util.Collections; |
||||||
|
|
||||||
|
import javax.servlet.http.Part; |
||||||
|
|
||||||
|
import org.springframework.util.Assert; |
||||||
|
import org.springframework.util.FileCopyUtils; |
||||||
|
|
||||||
|
/** |
||||||
|
* Mock implementation of the {@link Part} interface. |
||||||
|
* |
||||||
|
* @author Rossen Stoyanchev |
||||||
|
* @since 3.1 |
||||||
|
* @see MockHttpServletRequest |
||||||
|
*/ |
||||||
|
public class MockPart implements Part { |
||||||
|
|
||||||
|
private static final String CONTENT_TYPE = "Content-Type"; |
||||||
|
|
||||||
|
private final String name; |
||||||
|
|
||||||
|
private String contentType; |
||||||
|
|
||||||
|
private final byte[] content; |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the part |
||||||
|
* @param content the content for the part |
||||||
|
*/ |
||||||
|
public MockPart(String name, byte[] content) { |
||||||
|
this(name, "", content); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the part |
||||||
|
* @param contentStream the content of the part as stream |
||||||
|
* @throws IOException if reading from the stream failed |
||||||
|
*/ |
||||||
|
public MockPart(String name, InputStream contentStream) throws IOException { |
||||||
|
this(name, "", FileCopyUtils.copyToByteArray(contentStream)); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the file |
||||||
|
* @param contentType the content type (if known) |
||||||
|
* @param content the content of the file |
||||||
|
*/ |
||||||
|
public MockPart(String name, String contentType, byte[] content) { |
||||||
|
Assert.hasLength(name, "Name must not be null"); |
||||||
|
this.name = name; |
||||||
|
this.contentType = contentType; |
||||||
|
this.content = (content != null ? content : new byte[0]); |
||||||
|
} |
||||||
|
|
||||||
|
/** |
||||||
|
* Create a new MockPart with the given content. |
||||||
|
* @param name the name of the file |
||||||
|
* @param contentType the content type (if known) |
||||||
|
* @param contentStream the content of the part as stream |
||||||
|
* @throws IOException if reading from the stream failed |
||||||
|
*/ |
||||||
|
public MockPart(String name, String contentType, InputStream contentStream) |
||||||
|
throws IOException { |
||||||
|
|
||||||
|
this(name, contentType, FileCopyUtils.copyToByteArray(contentStream)); |
||||||
|
} |
||||||
|
|
||||||
|
|
||||||
|
public String getName() { |
||||||
|
return this.name; |
||||||
|
} |
||||||
|
|
||||||
|
public String getContentType() { |
||||||
|
return this.contentType; |
||||||
|
} |
||||||
|
|
||||||
|
public long getSize() { |
||||||
|
return this.content.length; |
||||||
|
} |
||||||
|
|
||||||
|
public InputStream getInputStream() throws IOException { |
||||||
|
return new ByteArrayInputStream(this.content); |
||||||
|
} |
||||||
|
|
||||||
|
public String getHeader(String name) { |
||||||
|
if (CONTENT_TYPE.equalsIgnoreCase(name)) { |
||||||
|
return this.contentType; |
||||||
|
} |
||||||
|
else { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public Collection<String> getHeaders(String name) { |
||||||
|
if (CONTENT_TYPE.equalsIgnoreCase(name)) { |
||||||
|
return Collections.singleton(this.contentType); |
||||||
|
} |
||||||
|
else { |
||||||
|
return null; |
||||||
|
} |
||||||
|
} |
||||||
|
|
||||||
|
public Collection<String> getHeaderNames() { |
||||||
|
return Collections.singleton(CONTENT_TYPE); |
||||||
|
} |
||||||
|
|
||||||
|
public void write(String fileName) throws IOException { |
||||||
|
throw new UnsupportedOperationException(); |
||||||
|
} |
||||||
|
|
||||||
|
public void delete() throws IOException { |
||||||
|
throw new UnsupportedOperationException(); |
||||||
|
} |
||||||
|
|
||||||
|
} |
||||||
Loading…
Reference in new issue