blob: 454711cc783bf03211cc7b2f3e0c4bc38ffea482 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF 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. 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 org.apache.uima.examples.cpm.sofa;
import junit.framework.Assert;
import org.apache.uima.cas.CAS;
import org.apache.uima.cas.FSIndex;
import org.apache.uima.cas.FSIterator;
import org.apache.uima.cas.Feature;
import org.apache.uima.cas.Type;
import org.apache.uima.cas.text.AnnotationFS;
import org.apache.uima.collection.CasConsumer_ImplBase;
import org.apache.uima.resource.ResourceProcessException;
/**
* CAS Consumer for Sofa test cases. Checks that CAS contains the SourceDocument and
* TranslatedDocument views and that they have the expected contents.
*/
public class SofaCasConsumer extends CasConsumer_ImplBase {
/*
* (non-Javadoc)
*
* @see org.apache.uima.collection.base_cpm.CasObjectProcessor#processCas(org.apache.uima.cas.CAS)
*/
public void processCas(CAS cas) throws ResourceProcessException {
// print out annotations of the Source SofA
CAS englishView = cas.getView("SourceDocument");
Assert.assertNotNull(englishView);
Assert.assertEquals("this beer is good", englishView.getDocumentText());
FSIndex anIndex = englishView.getAnnotationIndex();
FSIterator anIter = anIndex.iterator();
Assert.assertEquals("this beer is good", ((AnnotationFS) anIter.next()).getCoveredText());
Assert.assertEquals("this", ((AnnotationFS) anIter.next()).getCoveredText());
if ("this".equals(((AnnotationFS) anIter.get()).getCoveredText()))
anIter.moveToNext(); // because sometimes the test case runs 2 copies of the TransAnnotator
Assert.assertEquals("beer", ((AnnotationFS) anIter.next()).getCoveredText());
if ("beer".equals(((AnnotationFS) anIter.get()).getCoveredText()))
anIter.moveToNext();
Assert.assertEquals("is", ((AnnotationFS) anIter.next()).getCoveredText());
if ("is".equals(((AnnotationFS) anIter.get()).getCoveredText()))
anIter.moveToNext();
Assert.assertEquals("good", ((AnnotationFS) anIter.next()).getCoveredText());
if (anIter.isValid() && "good".equals(((AnnotationFS) anIter.get()).getCoveredText()))
anIter.moveToNext();
Assert.assertFalse(anIter.hasNext());
// print out annotations of the transalation SofA
// System.out.println("\n----------------\n");
CAS germanView = cas.getView("TranslatedDocument");
Assert.assertNotNull(germanView);
Assert.assertEquals("das bier ist gut", germanView.getDocumentText());
Type cross = cas.getTypeSystem().getType("sofa.test.CrossAnnotation");
Feature other = cross.getFeatureByBaseName("otherAnnotation");
anIndex = germanView.getAnnotationIndex(cross);
anIter = anIndex.iterator();
AnnotationFS annot = (AnnotationFS) anIter.next();
Assert.assertEquals("das", annot.getCoveredText());
AnnotationFS crossAnnot = (AnnotationFS) annot.getFeatureValue(other);
Assert.assertEquals("this", crossAnnot.getCoveredText());
annot = (AnnotationFS) anIter.next();
Assert.assertEquals("bier", annot.getCoveredText());
crossAnnot = (AnnotationFS) annot.getFeatureValue(other);
Assert.assertEquals("beer", crossAnnot.getCoveredText());
annot = (AnnotationFS) anIter.next();
Assert.assertEquals("ist", annot.getCoveredText());
crossAnnot = (AnnotationFS) annot.getFeatureValue(other);
Assert.assertEquals("is", crossAnnot.getCoveredText());
annot = (AnnotationFS) anIter.next();
Assert.assertEquals("gut", annot.getCoveredText());
crossAnnot = (AnnotationFS) annot.getFeatureValue(other);
Assert.assertEquals("good", crossAnnot.getCoveredText());
Assert.assertFalse(anIter.hasNext());
}
}