Package com.gentics.cr.lucene.indexer.transformer.doc.test

Source Code of com.gentics.cr.lucene.indexer.transformer.doc.test.RTFContentTransformerTest

package com.gentics.cr.lucene.indexer.transformer.doc.test;

import java.io.InputStream;

import junit.framework.TestCase;

import org.apache.poi.util.IOUtils;
import org.junit.After;
import org.junit.Before;

import com.gentics.cr.CRResolvableBean;
import com.gentics.cr.configuration.GenericConfiguration;
import com.gentics.cr.lucene.indexer.transformer.ContentTransformer;
import com.gentics.cr.lucene.indexer.transformer.doc.RTFContentTransformer;

public class RTFContentTransformerTest extends TestCase {

  CRResolvableBean bean;
  GenericConfiguration config;

  @Before
  public void setUp() throws Exception {
    bean = new CRResolvableBean();

    InputStream stream = RTFContentTransformerTest.class.getResourceAsStream("testdoc.rtf");
    byte[] arr = IOUtils.toByteArray(stream);
    bean.set("binarycontent", arr);

    config = new GenericConfiguration();
    config.set("attribute", "binarycontent");
  }

  public void testTransformer() throws Exception {
    ContentTransformer t = new RTFContentTransformer(config);
    t.processBean(bean);
    String s = (String) bean.get("binarycontent");

    assertTrue("testtext\n".equals(s));
  }

  @After
  public void tearDown() throws Exception {

  }
}
TOP

Related Classes of com.gentics.cr.lucene.indexer.transformer.doc.test.RTFContentTransformerTest

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.