/* * Licensed to the Technische Universität Darmstadt under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The Technische Universität Darmstadt * 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. * * 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.dkpro.core.io.lxf; import static de.tudarmstadt.ukp.dkpro.core.testing.AssertAnnotations.assertDependencies; import static de.tudarmstadt.ukp.dkpro.core.testing.AssertAnnotations.assertPOS; import static de.tudarmstadt.ukp.dkpro.core.testing.AssertAnnotations.assertSentence; import static de.tudarmstadt.ukp.dkpro.core.testing.AssertAnnotations.assertToken; import static org.apache.uima.fit.factory.CollectionReaderFactory.createReaderDescription; import static org.apache.uima.fit.util.JCasUtil.select; import static org.junit.Assert.assertEquals; import org.apache.uima.collection.CollectionReaderDescription; import org.apache.uima.fit.pipeline.JCasIterable; import org.apache.uima.jcas.JCas; import org.dkpro.core.io.lxf.LxfReader; import org.junit.Test; import de.tudarmstadt.ukp.dkpro.core.api.lexmorph.type.pos.POS; import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Sentence; import de.tudarmstadt.ukp.dkpro.core.api.segmentation.type.Token; import de.tudarmstadt.ukp.dkpro.core.api.syntax.type.dependency.Dependency; public class LxfReaderTest { @Test public void testText() throws Exception { CollectionReaderDescription reader = createReaderDescription( LxfReader.class, LxfReader.PARAM_SOURCE_LOCATION, "src/test/resources/lxf/text/orig.lxf"); JCas jcas = new JCasIterable(reader).iterator().next(); assertEquals("This is a test. And here is another one.\n", jcas.getDocumentText()); } @Test public void testTokenizerRepp() throws Exception { CollectionReaderDescription reader = createReaderDescription( LxfReader.class, LxfReader.PARAM_SOURCE_LOCATION, "src/test/resources/lxf/repp/orig.lxf"); JCas jcas = new JCasIterable(reader).iterator().next(); String[] sentences = { "This is a test.", "And here is another one." }; String[] tokens = { "This", "is", "a", "test", ".", "And", "here", "is", "another", "one", "." }; assertSentence(sentences, select(jcas, Sentence.class)); assertToken(tokens, select(jcas, Token.class)); } @Test public void testTokenizerReppHunpos() throws Exception { CollectionReaderDescription reader = createReaderDescription( LxfReader.class, LxfReader.PARAM_SOURCE_LOCATION, "src/test/resources/lxf/hunpos/orig.lxf"); JCas jcas = new JCasIterable(reader).iterator().next(); String[] sentences = { "This is a test.", "And here is another one." }; String[] tokens = { "This", "is", "a", "test", ".", "And", "here", "is", "another", "one", "." }; String[] pos = { "DT", "VBZ", "DT", "NN", ".", "CC", "RB", "VBZ", "DT", "NN", "." }; String[] posMapped = { "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS" }; assertSentence(sentences, select(jcas, Sentence.class)); assertToken(tokens, select(jcas, Token.class)); assertPOS(posMapped, pos, select(jcas, POS.class)); } @Test public void testTokenizerReppHunposBn() throws Exception { CollectionReaderDescription reader = createReaderDescription( LxfReader.class, LxfReader.PARAM_SOURCE_LOCATION, "src/test/resources/lxf/maltparser/orig.lxf"); JCas jcas = new JCasIterable(reader).iterator().next(); String[] sentences = { "This is a test.", "And here is another one." }; String[] tokens = { "This", "is", "a", "test", ".", "And", "here", "is", "another", "one", "." }; String[] pos = { "DT", "VBZ", "DT", "NN", ".", "CC", "RB", "VBZ", "DT", "NN", "." }; String[] posMapped = { "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS", "POS" }; String[] dependencies = { "[ 0, 4]Dependency(nsubj,basic) D[0,4](This) G[10,14](test)", "[ 5, 7]Dependency(cop,basic) D[5,7](is) G[10,14](test)", "[ 8, 9]Dependency(det,basic) D[8,9](a) G[10,14](test)", "[ 10, 14]ROOT(ROOT,basic) D[10,14](test) G[10,14](test)", "[ 14, 15]Dependency(punct,basic) D[14,15](.) G[10,14](test)", "[ 16, 19]Dependency(cc,basic) D[16,19](And) G[36,39](one)", "[ 20, 24]Dependency(advmod,basic) D[20,24](here) G[36,39](one)", "[ 25, 27]Dependency(cop,basic) D[25,27](is) G[36,39](one)", "[ 28, 35]Dependency(det,basic) D[28,35](another) G[36,39](one)", "[ 36, 39]ROOT(ROOT,basic) D[36,39](one) G[36,39](one)", "[ 39, 40]Dependency(punct,basic) D[39,40](.) G[36,39](one)" }; assertSentence(sentences, select(jcas, Sentence.class)); assertToken(tokens, select(jcas, Token.class)); assertPOS(posMapped, pos, select(jcas, POS.class)); assertDependencies(dependencies, select(jcas, Dependency.class)); } }