MarshallingView unwraps JAXBElement value for Marshaller.supports(Class) check

Issue: SPR-11827
This commit is contained in:
Juergen Hoeller
2014-05-30 17:27:34 +02:00
parent 4e17685008
commit e4aabd5288
2 changed files with 53 additions and 11 deletions

View File

@@ -19,6 +19,8 @@ package org.springframework.web.servlet.view.xml;
import java.util.HashMap;
import java.util.LinkedHashMap;
import java.util.Map;
import javax.xml.bind.JAXBElement;
import javax.xml.namespace.QName;
import javax.xml.transform.stream.StreamResult;
import org.junit.Before;
@@ -35,6 +37,7 @@ import static org.mockito.BDDMockito.*;
/**
* @author Arjen Poutsma
* @author Juergen Hoeller
*/
public class MarshallingViewTests {
@@ -84,6 +87,25 @@ public class MarshallingViewTests {
assertEquals("Invalid content length", 0, response.getContentLength());
}
@Test
public void renderModelKeyWithJaxbElement() throws Exception {
String toBeMarshalled = "value";
String modelKey = "key";
view.setModelKey(modelKey);
Map<String, Object> model = new HashMap<String, Object>();
model.put(modelKey, new JAXBElement<String>(new QName("model"), String.class, toBeMarshalled));
MockHttpServletRequest request = new MockHttpServletRequest();
MockHttpServletResponse response = new MockHttpServletResponse();
given(marshallerMock.supports(String.class)).willReturn(true);
marshallerMock.marshal(eq(toBeMarshalled), isA(StreamResult.class));
view.render(model, request, response);
assertEquals("Invalid content type", "application/xml", response.getContentType());
assertEquals("Invalid content length", 0, response.getContentLength());
}
@Test
public void renderInvalidModelKey() throws Exception {
Object toBeMarshalled = new Object();