use of com.airhacks.enhydrator.transform.SkipFirstRow in project enhydrator by AdamBien.
the class ParentTest method copy.
/**
* Name;Size;Folder
*/
@Test
public void copy() {
Source source = new CSVFileSource("./src/test/files/files.csv", ";", "UTF-8", true);
VirtualSinkSource vss = new VirtualSinkSource();
Pump pump = new Pump.Engine().from(source).startWith(new SkipFirstRow()).startWith(new NonRecursiveTree("Name", "Folder")).to(vss).to(new LogSink()).build();
pump.start();
System.out.println(vss.getRows());
int numberOfRows = vss.getNumberOfRows();
assertThat(numberOfRows, is(2));
Row parentWithChildren = vss.getRow(0);
assertNotNull(parentWithChildren);
assertThat(parentWithChildren.getNumberOfColumns(), is(3));
List<Row> children = parentWithChildren.getChildren();
assertThat(children.size(), is(2));
children.forEach(e -> assertThat(e.getNumberOfColumns(), is(2)));
}
use of com.airhacks.enhydrator.transform.SkipFirstRow in project enhydrator by AdamBien.
the class PipelineTest method getJDBCPipeline.
public static Pipeline getJDBCPipeline() {
DestinationMapper mapper = new DestinationMapper();
mapper.addMapping(0, new TargetMapping("*", "*"));
JDBCSource source = JDBCSourceIT.getSource();
NamedSink logSink = new LogSink();
NamedSink jdbcSink = JDBCSinkTest.getSink();
ColumnTransformation e1 = new ColumnTransformation("name", "convert", true);
ColumnTransformation e2 = new ColumnTransformation(42, "compress", true);
Pipeline origin = new Pipeline("jdbc", "src/test/scripts", "select * from Coffee where name like ? and strength = ?", source);
origin.addSink(logSink);
origin.addSink(jdbcSink);
origin.addQueryParam("arabica");
origin.addQueryParam(2);
origin.addEntryTransformation(e1);
origin.addEntryTransformation(e2);
origin.addPreRowTransformation(mapper);
origin.addPostRowTransformation(new SkipFirstRow());
origin.addPreRowTransformation(new NashornRowTransformer("src/test/scripts", "encrypt"));
origin.addPostRowTransformation(new NashornRowTransformer("src/test/scripts", "compress"));
Map<String, ColumnCopier.NameList> mappings = new HashMap<>();
mappings.put("duke", new ColumnCopier.NameList(Arrays.asList("java", "javaee")));
origin.addPostRowTransformation(new ColumnCopier(mappings));
origin.addFilter("true");
origin.addExpression("print($ROW); $ROW");
return origin;
}
use of com.airhacks.enhydrator.transform.SkipFirstRow in project enhydrator by AdamBien.
the class SkipFirstRowTest method skipFirstRow.
@Test
public void skipFirstRow() {
SkipFirstRow cut = new SkipFirstRow();
Row actual = cut.execute(new Row());
assertNull(actual);
actual = cut.execute(new Row());
assertNotNull(actual);
}
use of com.airhacks.enhydrator.transform.SkipFirstRow in project enhydrator by AdamBien.
the class ReadJDKVersionsTest method readFromCSV.
@Test
public void readFromCSV() {
Source input = new CSVFileSource("./src/test/files/jdk-dates.csv", ";", "UTF-8", true);
VirtualSinkSource output = new VirtualSinkSource();
Pump pump = new Pump.Engine().from(input).startWith(new SkipFirstRow()).startWith(new DatatypeNameMapper().addMapping("Year", Datatype.INTEGER)).filter("$ROW.getColumnValue('Year') > 2000").to(new LogSink()).to(output).build();
Memory memory = pump.start();
Assert.assertFalse(memory.areErrorsOccured());
List<Row> rows = output.getRows();
assertFalse(rows.isEmpty());
Row first = rows.get(1);
Object year = first.getColumnValue("Year");
System.out.println("The year is: " + year);
}
Aggregations