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 2020/10/01 14:54:39 UTC

[uima-ruta] branch UIMA-6268-internal-indexing created (now 8d986c0)

This is an automated email from the ASF dual-hosted git repository.

pkluegl pushed a change to branch UIMA-6268-internal-indexing
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git.


      at 8d986c0  UIMA-6268: Ruta: internal indexing not robust concerning modifications in pipeline

This branch includes the following new commits:

     new 8d986c0  UIMA-6268: Ruta: internal indexing not robust concerning modifications in pipeline

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[uima-ruta] 01/01: UIMA-6268: Ruta: internal indexing not robust concerning modifications in pipeline

Posted by pk...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

pkluegl pushed a commit to branch UIMA-6268-internal-indexing
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit 8d986c093f58d49a4cd3d941c683182588f3f708
Author: Peter Klügl <pe...@averbis.com>
AuthorDate: Thu Oct 1 16:54:11 2020 +0200

    UIMA-6268: Ruta: internal indexing not robust concerning modifications in pipeline
    
    - added test
---
 .../uima/ruta/engine/RutaBasicIndexingTest.java    | 119 +++++++++++++++++++++
 1 file changed, 119 insertions(+)

diff --git a/ruta-core/src/test/java/org/apache/uima/ruta/engine/RutaBasicIndexingTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/engine/RutaBasicIndexingTest.java
new file mode 100644
index 0000000..ac9955f
--- /dev/null
+++ b/ruta-core/src/test/java/org/apache/uima/ruta/engine/RutaBasicIndexingTest.java
@@ -0,0 +1,119 @@
+/*
+ * 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.engine;
+
+import org.apache.uima.cas.CAS;
+import org.apache.uima.cas.text.AnnotationFS;
+import org.apache.uima.fit.util.CasUtil;
+import org.junit.Test;
+
+public class RutaBasicIndexingTest {
+
+  @Test
+  public void testModificatonsInPipeline() throws Exception {
+
+    CAS cas = RutaTestUtils.getCAS("This is 1 TEST.");
+
+    // initial indexing and create some annotations
+    Ruta.apply(cas, "NUM{-> T1}; CAP{-> T2};");
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 1, 1, "1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 2, 1, "TEST");
+
+    // add T1 on CW, remove T2 on CAP
+    AnnotationFS at3 = cas.createAnnotation(RutaTestUtils.getTestType(cas, 3), 0, 4);
+    cas.addFsToIndexes(at3);
+    CasUtil.select(cas, RutaTestUtils.getTestType(cas, 2)).forEach(a -> cas.removeFsFromIndexes(a));
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 1, 1, "1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 2, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 3, 1, "This");
+
+    // apply rules on modifications, 1x partof, 2x startswith, 3x endswith
+    Ruta.apply(cas, "ANY{PARTOF(T1)->T11};ANY{PARTOF(T2)->T12};ANY{PARTOF(T3)->T13};");
+    Ruta.apply(cas, "ANY{STARTSWITH(T1)->T21};ANY{STARTSWITH(T2)->T22};ANY{STARTSWITH(T3)->T23};");
+    Ruta.apply(cas, "ANY{ENDSWITH(T1)->T31};ANY{ENDSWITH(T2)->T32};ANY{ENDSWITH(T3)->T33};");
+
+    // partof
+    RutaTestUtils.assertAnnotationsEquals(cas, 11, 1, "1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 12, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 13, 1, "This");
+
+    // startswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 21, 1, "1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 22, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 23, 1, "This");
+
+    // endswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 31, 1, "1");
+    RutaTestUtils.assertAnnotationsEquals(cas, 32, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 33, 1, "This");
+
+    // new round with multiple overlapping annotations
+    Ruta.apply(cas, "PERIOD{-> T4}; SW{-> T5};");
+    Ruta.apply(cas, "PERIOD{-> T4};");
+
+    // remove one T4, add another T5
+    AnnotationFS at4 = CasUtil.select(cas, RutaTestUtils.getTestType(cas, 2)).iterator().next();
+    cas.removeFsFromIndexes(at4);
+    AnnotationFS at5 = cas.createAnnotation(RutaTestUtils.getTestType(cas, 5), 5, 7);
+    cas.addFsToIndexes(at5);
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 4, 1, ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 5, 2, "is", "is");
+
+    // apply rules on modifications, 1x partof, 2x startswith, 3x endswith
+    Ruta.apply(cas, "ANY{PARTOF(T4)->T14};ANY{PARTOF(T5)->T15};");
+    Ruta.apply(cas, "ANY{STARTSWITH(T4)->T24};ANY{STARTSWITH(T5)->T25};");
+    Ruta.apply(cas, "ANY{ENDSWITH(T4)->T34};ANY{ENDSWITH(T5)->T35};");
+
+    // partof
+    RutaTestUtils.assertAnnotationsEquals(cas, 14, 1, ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 15, 2, "is", "is");
+
+    // startswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 24, 1, ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 25, 2, "is", "is");
+
+    // endswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 34, 1, ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 35, 2, "is", "is");
+
+    // further modify in ruta, remove T4 completly, remove one T5
+    Ruta.apply(cas, "t4:T4 -> UNMARK(t4)};");
+    Ruta.apply(cas, "t5:T5{CONTAINS(T5,2,10) -> UNMARK(t5)};");
+    // T4 -> Tx6, T5 -> Tx7
+    Ruta.apply(cas, "ANY{PARTOF(T4)->T16};ANY{PARTOF(T5)->T17};");
+    Ruta.apply(cas, "ANY{STARTSWITH(T4)->T26};ANY{STARTSWITH(T5)->T27};");
+    Ruta.apply(cas, "ANY{ENDSWITH(T4)->T36};ANY{ENDSWITH(T5)->T37};");
+
+    // partof
+    RutaTestUtils.assertAnnotationsEquals(cas, 16, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 17, 2, "is");
+
+    // startswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 26, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 27, 1, "is");
+
+    // endswith
+    RutaTestUtils.assertAnnotationsEquals(cas, 36, 0);
+    RutaTestUtils.assertAnnotationsEquals(cas, 37, 1, "is");
+  }
+
+}