blob: 613231a0e62a8a1bb94029676c6a3b7a0b0241ed [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.component.file;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
import org.apache.camel.ContextTestSupport;
import org.apache.camel.builder.RouteBuilder;
import org.apache.camel.component.mock.MockEndpoint;
import org.junit.BeforeClass;
import org.junit.Test;
public class FileSplitXPathCharsetTest extends ContextTestSupport {
private static final String TEST_DIR = "target/data/file-split-xpath-charset";
private static Path inputCsv = Paths.get(TEST_DIR, "input.csv");
private static Path inputXml = Paths.get(TEST_DIR, "input.xml");
@BeforeClass
public static void clearInputFiles() throws IOException {
deleteDirectory(TEST_DIR);
}
@Test
public void testCsv() throws Exception {
MockEndpoint out = getMockEndpoint("mock:result");
out.expectedMessageCount(3);
out.expectedBodiesReceived("abc", "xyz", "åäö");
Files.write(inputCsv, "abc,xyz,åäö".getBytes(StandardCharsets.ISO_8859_1));
out.assertIsSatisfied();
}
@Test
public void testXml() throws Exception {
MockEndpoint out = getMockEndpoint("mock:result");
out.expectedMessageCount(3);
out.expectedBodiesReceived("abc", "xyz", "åäö");
Files.copy(getClass().getResourceAsStream("FileSplitXPathCharsetTest-input.xml"), inputXml);
out.assertIsSatisfied();
}
@Override
protected RouteBuilder createRouteBuilder() {
return new RouteBuilder() {
@Override
public void configure() {
// input: *.csv
fromF("file:%s?charset=ISO-8859-1&include=.*\\.csv", TEST_DIR).split().tokenize(",").to("mock:result");
// input: *.xml
fromF("file:%s?charset=ISO-8859-1&include=.*\\.xml", TEST_DIR).split().xpath("/foo/bar/text()").to("mock:result");
}
};
}
}