blob: c4f0748c402004b12bacb07d592232fd64d5ad20 [file] [log] [blame]
/**
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You 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.apache.camel.issues;
import org.xml.sax.InputSource;
import org.apache.camel.ContextTestSupport;
import org.apache.camel.Exchange;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import static org.apache.camel.builder.xml.XPathBuilder.xpath;
/**
* @version
*/
public class XPathSplitStreamTest extends ContextTestSupport {
private static int size = 100;
@Override
protected void setUp() throws Exception {
deleteDirectory("target/file/xpathsplit");
super.setUp();
StringBuilder sb = new StringBuilder();
sb.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
sb.append("\n<persons>");
for (int i = 0; i < size; i++) {
sb.append("\n<person><id>" + i + "</id><name>John Doe</name></person>");
}
sb.append("\n</persons>");
template.sendBodyAndHeader("file://target/file/xpathsplit", sb.toString(), Exchange.FILE_NAME, "bigfile.xml");
}
public void testXPathSplitStream() throws Exception {
MockEndpoint mock = getMockEndpoint("mock:splitted");
mock.expectedMessageCount(size);
mock.expectsNoDuplicates().body();
assertMockEndpointsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() throws Exception {
return new RouteBuilder() {
@Override
public void configure() throws Exception {
// START SNIPPET: e1
from("file://target/file/xpathsplit")
// set documentType to org.xml.sax.InputSource then Camel will use SAX to split the file
.split(xpath("/persons/person").documentType(InputSource.class)).streaming()
.to("mock:splitted");
// END SNIPPET: e1
}
};
}
}