/* * Copyright (C) 2015 Stratio (http://stratio.com) * * 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 com.stratio.morphlines.commons; import static org.fest.assertions.Assertions.assertThat; import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util.List; import org.apache.commons.io.IOUtils; import org.junit.Before; import org.junit.Test; import org.junit.Ignore; import org.kitesdk.morphline.api.Command; import org.kitesdk.morphline.api.MorphlineContext; import org.kitesdk.morphline.api.Record; import org.kitesdk.morphline.base.Fields; import com.google.common.base.Preconditions; import com.google.common.collect.ImmutableList; import com.google.common.collect.Lists; import com.typesafe.config.Config; @Ignore public class HeadersToBodyTest extends BaseTest{ @Before public void setUp() { } private Record record(String...args) { final Record record = new Record(); for (List<String> parts : Lists.partition(ImmutableList.copyOf(args), 2)) { record.put(parts.get(0), parts.get(1)); } return record; } @Test public void onlyIncludeNoRegex() throws IOException { final MorphlineContext context = new MorphlineContext.Builder().build(); Collector collectorParent = new Collector(); Collector collectorChild = new Collector(); final Command command = new HeadersToBodyBuilder().build( parse("/headerstobody/simple.conf").getConfigList("commands").get(0).getConfig("headersToBody"), collectorParent, collectorChild, context ); Record record = record( "field1", "value1", "field2", "value2", "field3", "value2", "_attachment_body", "asfasdfasdf" ); command.process(record); assertThat(record.getFirstValue(Fields.ATTACHMENT_BODY)).isEqualTo("{\"field3\":\"value2\",\"field1\":\"value1\"}"); collectorChild.reset(); } }