blob: f0fa8e22628ae885dc699dd37760c8b6a95ba788 [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.jsefa;
import org.apache.batchee.jsefa.bean.Record;
import org.apache.batchee.jsefa.util.IOs;
import org.apache.batchee.util.Batches;
import org.testng.annotations.Test;
import jakarta.batch.api.chunk.ItemReader;
import jakarta.batch.operations.JobOperator;
import jakarta.batch.runtime.BatchRuntime;
import java.io.Serializable;
import java.util.Properties;
import static org.testng.Assert.assertEquals;
public class JSefaXmlWriterTest {
@Test
public void read() throws Exception {
final String path = "target/work/JSefaXmlWriter.txt";
final Properties jobParams = new Properties();
jobParams.setProperty("output", path);
final JobOperator jobOperator = BatchRuntime.getJobOperator();
Batches.waitForEnd(jobOperator, jobOperator.start("jsefa-xml-writer", jobParams));
final String output = IOs.slurp(path);
assertEquals(output.replace(System.getProperty("line.separator"), ""),
"<Record>" +
" <value1>v1 1</value1>" +
" <value2>v1 2</value2>" +
"</Record>" +
"<Record>" +
" <value1>v2 1</value1>" +
" <value2>v2 2</value2>" +
"</Record>");
}
public static class TwoItemsReader implements ItemReader {
private int count = 0;
@Override
public void open(final Serializable checkpoint) throws Exception {
// no-op
}
@Override
public void close() throws Exception {
// no-op
}
@Override
public Object readItem() throws Exception {
if (count++ < 2) {
return new Record("v" + count + " ");
}
return null;
}
@Override
public Serializable checkpointInfo() throws Exception {
return null;
}
}
}