To all,
I fear that this is a bit of a newbie question, but I hope to find some answers here nevertheless.
What I would like to do: have a custom object that I would like to marshall to CSV, and later on perform the process in the opositie direction. I have got it working for XML using JaxB, now I would like to do the same for CSV
Note; we are in a bit of a strict environment here, it would probably be possible to use Bindy, but that will take some time, so I am looking for a solution without Bindy (if possible).
Here is my code:
public class CSVMarshallingTest extends CamelTestSupport {
@EndpointInject(uri = "mock:marshall")
private MockEndpoint mockMarshall;
@EndpointInject(uri = "mock:unmarshall")
private MockEndpoint mockUnmarshall;
@Test
public void testMarshallFromObjectToCSV() throws Exception {
mockMarshall.expectedMessageCount(1);
String expected = "00000000123,12300000000,20121212";
Map<String, ResponseStructure> firstLine = new HashMap<String, ResponseStructure> ();
firstLine.put("1", new ResponseStructure ("00000000123", "12300000000", "20121212"));
List<Map<String, ResponseStructure>> input = new ArrayList<Map<String, ResponseStructure>> ();
input.add(firstLine);
template.sendBody("direct:marshall", input);
mockMarshall.expectedBodiesReceived(expected);
assertMockEndpointsSatisfied();
String payload = mockMarshall.getExchanges().get(0).getIn().getBody(String.class);
log.info(payload);
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
CsvDataFormat csv = new CsvDataFormat();
csv.setDelimiter(";");
from("direct:marshall")
.marshal(csv)
.wireTap("log:test")
.to("mock:marshall");
from("direct:unmarshall")
.unmarshal().csv()
.wireTap("log:test")
.to("mock:unmarshall");
}
};
}
Obviously, the Class ReponseStructure has three fields, all Strings
My problem is that the 'rows' are not marshalled like I expect, this is what the wiretap outputs:
413 [Camel (camel-1) thread #0 - WireTap] INFO test - Exchange[ExchangePattern:InOnly, BodyType:byte[], Body:be.smals.dp.processor.ResponseStructure@b02928
]
And the assertion fails with the following message:
java.lang.AssertionError: mock://marshall Body of message: 0. Expected: <00000000123,12300000000,20121212> but was: <null>
Any help appreciated, Barrel