blob: f33e2bb524f5f6c0571e304da86a1254ddc5103d [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.batchee.extras;
import org.apache.batchee.util.Batches;
import org.apache.batchee.extras.util.IOs;
import org.testng.annotations.Test;
import javax.batch.api.chunk.ItemReader;
import javax.batch.operations.JobOperator;
import javax.batch.runtime.BatchRuntime;
import java.io.Serializable;
import java.util.Properties;
import static org.testng.Assert.assertTrue;
public class FlatFileItemWriterTest {
@Test
public void write() throws Exception {
final String path = "target/work/FlatFileItemWriter.txt";
final Properties jobParams = new Properties();
jobParams.setProperty("output", path);
final JobOperator jobOperator = BatchRuntime.getJobOperator();
Batches.waitForEnd(jobOperator, jobOperator.start("flat-file-writer", jobParams));
final String output = IOs.slurp(path);
assertTrue(output.contains("line 1"));
assertTrue(output.contains("line 2"));
}
public static class TwoItemsReader implements ItemReader {
private int count = 0;
@Override
public void open(Serializable checkpoint) throws Exception {
// no-op
}
@Override
public void close() throws Exception {
// no-op
}
@Override
public Object readItem() throws Exception {
if (count++ < 2) {
return "line " + count;
}
return null;
}
@Override
public Serializable checkpointInfo() throws Exception {
return null;
}
}
}