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

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

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.DOCContentTransformer;

public class DOCContentTransformerTest extends TestCase {

  CRResolvableBean bean;
  GenericConfiguration config;

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

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

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

  public void testTransformer() throws Exception {
    ContentTransformer t = new DOCContentTransformer(config);
    t.processBean(bean);
    String s = (String) bean.get("binarycontent");
    String ls = System.getProperty("line.separator");
    assertEquals("testtext" + ls + ls, s);
  }

  @After
  public void tearDown() throws Exception {

  }
}
TOP

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

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.