You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@uima.apache.org by pk...@apache.org on 2015/10/15 18:01:38 UTC

svn commit: r1708841 - in /uima/ruta/trunk/ruta-core/src: main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java test/java/org/apache/uima/ruta/WildCardInWindowTest.java

Author: pkluegl
Date: Thu Oct 15 16:01:38 2015
New Revision: 1708841

URL: http://svn.apache.org/viewvc?rev=1708841&view=rev
Log:
UIMA-4620
- commented reset
- added test

Added:
    uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java   (with props)
Modified:
    uima/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java

Modified: uima/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java?rev=1708841&r1=1708840&r2=1708841&view=diff
==============================================================================
--- uima/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java (original)
+++ uima/ruta/trunk/ruta-core/src/main/java/org/apache/uima/ruta/rule/WildCardRuleElement.java Thu Oct 15 16:01:38 2015
@@ -379,6 +379,7 @@ public class WildCardRuleElement extends
   private FSIterator<AnnotationFS> getIteratorOfType(boolean after, Type type,
           AnnotationFS annotation, RutaStream stream) {
     CAS cas = stream.getCas();
+    // TODO adapt logic to changes in UIMA iterator behavior!
     FSIterator<AnnotationFS> result = null;
     if (stream.getDocumentAnnotation().equals(cas.getDocumentAnnotation())) {
       // no windowing needed
@@ -389,8 +390,9 @@ public class WildCardRuleElement extends
         result = cas.getAnnotationIndex(type).iterator(pointer);
         if (!result.isValid()) {
           if (after) {
-            result.moveToFirst();
+            //result.moveToFirst();
           } else {
+            // HOTFIX caused by type priorities
             result.moveToLast();
           }
         } else {
@@ -431,8 +433,9 @@ public class WildCardRuleElement extends
         result.moveTo(pointer);
         if (!result.isValid()) {
           if (after) {
-            result.moveToFirst();
+//            result.moveToFirst();
           } else {
+            // TODO due to type priorities: RutaBasic is last -> moveTo will not work
             result.moveToLast();
           }
         } else {

Added: uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java
URL: http://svn.apache.org/viewvc/uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java?rev=1708841&view=auto
==============================================================================
--- uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java (added)
+++ uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java Thu Oct 15 16:01:38 2015
@@ -0,0 +1,98 @@
+/*
+ * 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.ruta;
+
+import org.apache.uima.cas.CAS;
+import org.apache.uima.ruta.engine.Ruta;
+import org.apache.uima.ruta.engine.RutaTestUtils;
+import org.junit.Test;
+
+public class WildCardInWindowTest {
+
+  @Test
+  public void testSingleBothDirections() {
+    String document = ". a 1 b . c 1 D . e 1 1 1 f . g 1 1 1 H .";
+    String script = "";
+    script += "PERIOD #{-> T1} PERIOD;";
+    script += "T1 -> { SW #{-> T2} SW{-> T3};};";
+    script += "T1 -> { SW #{-> T4} @SW{-> T5};};";
+    CAS cas = null;
+    try {
+      cas = RutaTestUtils.getCAS(document);
+      Ruta.apply(cas, script);
+    } catch (Exception e) {
+      e.printStackTrace();
+    }
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 2, 2, "1", "1 1 1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 3, 2, "b", "f");
+    RutaTestUtils.assertAnnotationsEquals(cas, 4, 2, "1", "1 1 1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 5, 2, "b", "f");
+
+    cas.release();
+  }
+
+  @Test
+  public void testMultiMidOut() {
+    String document = ". A x 1 1 : x 2 % 3 x ; . A x B 1 C 1 : x 4 % 5 x ; .";
+    String script = "";
+    script += "PERIOD #{-> T1} PERIOD;";
+    script += "T1 -> {CW{-> T4} # @COLON # NUM{-> T2} SPECIAL NUM{-> T3} # SEMICOLON;};";
+    CAS cas = null;
+    try {
+      cas = RutaTestUtils.getCAS(document);
+      Ruta.apply(cas, script);
+    } catch (Exception e) {
+      e.printStackTrace();
+    }
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 2, 2, "2", "4");
+    RutaTestUtils.assertAnnotationsEquals(cas, 3, 2, "3", "5");
+    RutaTestUtils.assertAnnotationsEquals(cas, 4, 2, "A", "C");
+
+    cas.release();
+  }
+
+  @Test
+  public void testCombiMidOut() {
+    String document = ". some text. some A.B text C.D text. some text .";
+    String script = "";
+
+    script += "(CW PERIOD CW) {-> T1};";
+    script += "PERIOD{-PARTOF(T1)} #{-> T2} PERIOD{-PARTOF(T1)};";
+    script += "T2<-{CW PERIOD CW;}->{#{-> T3} @PERIOD #{-> T3};};";
+    script += "T3<-{CW PERIOD CW;}->{#{-> T4} @PERIOD #{-> T4};};";
+    CAS cas = null;
+    try {
+      cas = RutaTestUtils.getCAS(document);
+      Ruta.apply(cas, script);
+    } catch (Exception e) {
+      e.printStackTrace();
+    }
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 3, 4, "some A.B text C", "some A",
+            "B text C.D text", "D text");
+    RutaTestUtils.assertAnnotationsEquals(cas, 4, 4, "some A", "B text C", "B text C",
+            "D text");
+
+    cas.release();
+  }
+
+}

Propchange: uima/ruta/trunk/ruta-core/src/test/java/org/apache/uima/ruta/WildCardInWindowTest.java
------------------------------------------------------------------------------
    svn:eol-style = native