有没有办法在 Camel Junit 中比较 XML 消息?
我正在使用以下代码:
@RunWith(CamelSpringJUnit4ClassRunner.class)
@ContextConfiguration(locations = { "classpath:camel-context-test.xml" })
@DirtiesContext(classMode = ClassMode.AFTER_EACH_TEST_METHOD)
@MockEndpoints("*")
public class CamelRoutesTest/* extends XMLTestCase */{
private static final Log LOG = LogFactory.getLog(CamelRoutesTest.class);
@Autowired
protected CamelContext camelContext;
@EndpointInject(uri = "mock:d2")
protected MockEndpoint direct1;
@Produce(uri = "direct:d1")
protected ProducerTemplate d1;
@Test
public void test1() throws Exception {
LOG.info("Starting testTradeSaveToPL test");
//node1 comes BEFORE node2
String sendMsg = "<test><node1>1</node1><node2>2</node2></test>";
//node1 comes AFTER node2
String valMsg1 = "<test><node2>2</node2><node1>1</node1></test>";
direct1.expectedBodiesReceivedInAnyOrder(valMsg1);
d1.sendBody(sendMsg);
direct1.assertIsSatisfied(camelContext);
}
}
我的问题是,在我发送到路由的 XML 消息中,node1 在 node2 之前,而在回复中 node2 在 node1 之前。
通过查看,我知道两个 XML 都是相等的,但是由于代码进行了字符串比较,所以它失败了。
我知道 XMLJUnit 比较工具,但是如何将它集成到给定的测试用例中?