org.springframework.oxm.jaxb.test.Flights Java Examples

The following examples show how to use org.springframework.oxm.jaxb.test.Flights. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: Jaxb2MarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
private void testSupports() throws Exception {
	assertTrue("Jaxb2Marshaller does not support Flights class", marshaller.supports(Flights.class));
	assertTrue("Jaxb2Marshaller does not support Flights generic type", marshaller.supports((Type)Flights.class));

	assertFalse("Jaxb2Marshaller supports FlightType class", marshaller.supports(FlightType.class));
	assertFalse("Jaxb2Marshaller supports FlightType type", marshaller.supports((Type)FlightType.class));

	Method method = ObjectFactory.class.getDeclaredMethod("createFlight", FlightType.class);
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>",
			marshaller.supports(method.getGenericReturnType()));

	marshaller.setSupportJaxbElementClass(true);
	JAXBElement<FlightType> flightTypeJAXBElement = new JAXBElement<>(new QName("http://springframework.org", "flight"), FlightType.class,
			new FlightType());
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>", marshaller.supports(flightTypeJAXBElement.getClass()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyRootElement.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyRootElement.class));
	method = getClass().getDeclaredMethod("createDummyRootElement");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyType.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyType.class));
	method = getClass().getDeclaredMethod("createDummyType");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	testSupportsPrimitives();
	testSupportsStandardClasses();
}
 
Example #2
Source File: Jaxb2UnmarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Test
public void unmarshalFile() throws IOException {
	Resource resource = new ClassPathResource("jaxb2.xml", getClass());
	File file = resource.getFile();

	Flights f = (Flights) unmarshaller.unmarshal(new StreamSource(file));
	testFlights(f);
}
 
Example #3
Source File: Jaxb2UnmarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Override
protected void testFlights(Object o) {
	Flights flights = (Flights) o;
	assertNotNull("Flights is null", flights);
	assertEquals("Invalid amount of flight elements", 1, flights.getFlight().size());
	testFlight(flights.getFlight().get(0));
}
 
Example #4
Source File: Jaxb2MarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
private void testSupports() throws Exception {
	assertTrue("Jaxb2Marshaller does not support Flights class", marshaller.supports(Flights.class));
	assertTrue("Jaxb2Marshaller does not support Flights generic type", marshaller.supports((Type)Flights.class));

	assertFalse("Jaxb2Marshaller supports FlightType class", marshaller.supports(FlightType.class));
	assertFalse("Jaxb2Marshaller supports FlightType type", marshaller.supports((Type)FlightType.class));

	Method method = ObjectFactory.class.getDeclaredMethod("createFlight", FlightType.class);
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>",
			marshaller.supports(method.getGenericReturnType()));

	marshaller.setSupportJaxbElementClass(true);
	JAXBElement<FlightType> flightTypeJAXBElement = new JAXBElement<FlightType>(new QName("http://springframework.org", "flight"), FlightType.class,
			new FlightType());
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>", marshaller.supports(flightTypeJAXBElement.getClass()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyRootElement.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyRootElement.class));
	method = getClass().getDeclaredMethod("createDummyRootElement");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyType.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyType.class));
	method = getClass().getDeclaredMethod("createDummyType");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	testSupportsPrimitives();
	testSupportsStandardClasses();
}
 
Example #5
Source File: Jaxb2MarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Test
public void supportsClassesToBeBound() throws Exception {
	marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(Flights.class, FlightType.class);
	marshaller.afterPropertiesSet();
	testSupports();
}
 
Example #6
Source File: Jaxb2MarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Test(expected = XmlMappingException.class)
public void marshalInvalidClass() throws Exception {
	Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(FlightType.class);
	marshaller.afterPropertiesSet();
	Result result = new StreamResult(new StringWriter());
	Flights flights = new Flights();
	marshaller.marshal(flights, result);
}
 
Example #7
Source File: Jaxb2MarshallerTests.java    From spring4-understanding with Apache License 2.0 5 votes vote down vote up
@Override
protected Object createFlights() {
	FlightType flight = new FlightType();
	flight.setNumber(42L);
	flights = new Flights();
	flights.getFlight().add(flight);
	return flights;
}
 
Example #8
Source File: Jaxb2UnmarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Test
public void unmarshalFile() throws IOException {
	Resource resource = new ClassPathResource("jaxb2.xml", getClass());
	File file = resource.getFile();

	Flights f = (Flights) unmarshaller.unmarshal(new StreamSource(file));
	testFlights(f);
}
 
Example #9
Source File: Jaxb2UnmarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Override
protected void testFlights(Object o) {
	Flights flights = (Flights) o;
	assertNotNull("Flights is null", flights);
	assertEquals("Invalid amount of flight elements", 1, flights.getFlight().size());
	testFlight(flights.getFlight().get(0));
}
 
Example #10
Source File: Jaxb2MarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Override
protected Object createFlights() {
	FlightType flight = new FlightType();
	flight.setNumber(42L);
	flights = new Flights();
	flights.getFlight().add(flight);
	return flights;
}
 
Example #11
Source File: Jaxb2MarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Test
public void supportsClassesToBeBound() throws Exception {
	marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(Flights.class, FlightType.class);
	marshaller.afterPropertiesSet();
	testSupports();
}
 
Example #12
Source File: Jaxb2MarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Test(expected = XmlMappingException.class)
public void marshalInvalidClass() throws Exception {
	Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(FlightType.class);
	marshaller.afterPropertiesSet();
	Result result = new StreamResult(new StringWriter());
	Flights flights = new Flights();
	marshaller.marshal(flights, result);
}
 
Example #13
Source File: Jaxb2MarshallerTests.java    From java-technology-stack with MIT License 5 votes vote down vote up
@Override
protected Object createFlights() {
	FlightType flight = new FlightType();
	flight.setNumber(42L);
	flights = new Flights();
	flights.getFlight().add(flight);
	return flights;
}
 
Example #14
Source File: Jaxb2UnmarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Test
public void unmarshalFile() throws IOException {
	Resource resource = new ClassPathResource("jaxb2.xml", getClass());
	File file = resource.getFile();

	Flights f = (Flights) unmarshaller.unmarshal(new StreamSource(file));
	testFlights(f);
}
 
Example #15
Source File: Jaxb2UnmarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Override
protected void testFlights(Object o) {
	Flights flights = (Flights) o;
	assertNotNull("Flights is null", flights);
	assertEquals("Invalid amount of flight elements", 1, flights.getFlight().size());
	testFlight(flights.getFlight().get(0));
}
 
Example #16
Source File: Jaxb2MarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
private void testSupports() throws Exception {
	assertTrue("Jaxb2Marshaller does not support Flights class", marshaller.supports(Flights.class));
	assertTrue("Jaxb2Marshaller does not support Flights generic type", marshaller.supports((Type)Flights.class));

	assertFalse("Jaxb2Marshaller supports FlightType class", marshaller.supports(FlightType.class));
	assertFalse("Jaxb2Marshaller supports FlightType type", marshaller.supports((Type)FlightType.class));

	Method method = ObjectFactory.class.getDeclaredMethod("createFlight", FlightType.class);
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>",
			marshaller.supports(method.getGenericReturnType()));

	marshaller.setSupportJaxbElementClass(true);
	JAXBElement<FlightType> flightTypeJAXBElement = new JAXBElement<>(new QName("https://springframework.org", "flight"), FlightType.class,
			new FlightType());
	assertTrue("Jaxb2Marshaller does not support JAXBElement<FlightsType>", marshaller.supports(flightTypeJAXBElement.getClass()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyRootElement.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyRootElement.class));
	method = getClass().getDeclaredMethod("createDummyRootElement");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	assertFalse("Jaxb2Marshaller supports class not in context path", marshaller.supports(DummyType.class));
	assertFalse("Jaxb2Marshaller supports type not in context path", marshaller.supports((Type)DummyType.class));
	method = getClass().getDeclaredMethod("createDummyType");
	assertFalse("Jaxb2Marshaller supports JAXBElement not in context path",
			marshaller.supports(method.getGenericReturnType()));

	testSupportsPrimitives();
	testSupportsStandardClasses();
}
 
Example #17
Source File: Jaxb2MarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Test
public void supportsClassesToBeBound() throws Exception {
	marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(Flights.class, FlightType.class);
	marshaller.afterPropertiesSet();
	testSupports();
}
 
Example #18
Source File: Jaxb2MarshallerTests.java    From spring-analysis-note with MIT License 5 votes vote down vote up
@Test(expected = XmlMappingException.class)
public void marshalInvalidClass() throws Exception {
	Jaxb2Marshaller marshaller = new Jaxb2Marshaller();
	marshaller.setClassesToBeBound(FlightType.class);
	marshaller.afterPropertiesSet();
	Result result = new StreamResult(new StringWriter());
	Flights flights = new Flights();
	marshaller.marshal(flights, result);
}