/**
* Copyright 2011 Michael R. Lange <michael.r.lange@langmi.de>.
*
* Licensed 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 de.langmi.spring.batch.examples.readers.file.flatfileitemreader;
import static org.junit.Assert.*;
import org.junit.Test;
import org.springframework.batch.item.file.FlatFileItemReader;
import org.springframework.batch.item.file.mapping.PassThroughLineMapper;
import org.springframework.batch.test.MetaDataInstanceFactory;
import org.springframework.core.io.FileSystemResource;
/**
* Tests the FlatFileItemReader from Spring Batch without Application Context.
*
* @author Michael R. Lange <michael.r.lange@langmi.de>
*/
public class FlatFileItemReaderTest {
/** Reader under test. */
private FlatFileItemReader<String> reader = new FlatFileItemReader<String>();
private static final String INPUT_FILE = "src/test/resources/input/file/simple/input.txt";
private static final int EXPECTED_COUNT = 20;
/**
* Test should read succesfully.
*
* @throws Exception
*/
@Test
public void testSuccessfulReading() throws Exception {
// init reader
reader.setLineMapper(new PassThroughLineMapper());
reader.setResource(new FileSystemResource(INPUT_FILE));
// open, provide "mock" ExecutionContext
reader.open(MetaDataInstanceFactory.createStepExecution().getExecutionContext());
// read
try {
int count = 0;
String line;
while ((line = reader.read()) != null) {
assertEquals(String.valueOf(count), line);
count++;
}
assertEquals(EXPECTED_COUNT, count);
} catch (Exception e) {
throw e;
} finally {
reader.close();
}
}
}