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 2021/03/09 17:41:20 UTC

[uima-ruta] branch UIMA-6319-TextSeeder-creates-MARKUP-annotations created (now e33acaf)

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

pkluegl pushed a change to branch UIMA-6319-TextSeeder-creates-MARKUP-annotations
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git.


      at e33acaf  UIMA-6319: TextSeeder creates MARKUP annotations

This branch includes the following new commits:

     new e33acaf  UIMA-6319: TextSeeder creates MARKUP annotations

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-6319: TextSeeder creates MARKUP annotations

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

pkluegl pushed a commit to branch UIMA-6319-TextSeeder-creates-MARKUP-annotations
in repository https://gitbox.apache.org/repos/asf/uima-ruta.git

commit e33acaff285e02fb94df26a958eb57e5b7d67503
Author: Peter Klügl <pe...@averbis.com>
AuthorDate: Tue Mar 9 18:41:02 2021 +0100

    UIMA-6319: TextSeeder creates MARKUP annotations
    
    - added test
---
 .../org/apache/uima/ruta/seed/TextSeederTest.java  | 52 ++++++++++++++++++++++
 1 file changed, 52 insertions(+)

diff --git a/ruta-core/src/test/java/org/apache/uima/ruta/seed/TextSeederTest.java b/ruta-core/src/test/java/org/apache/uima/ruta/seed/TextSeederTest.java
new file mode 100644
index 0000000..4ab276c
--- /dev/null
+++ b/ruta-core/src/test/java/org/apache/uima/ruta/seed/TextSeederTest.java
@@ -0,0 +1,52 @@
+/*
+ * 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.seed;
+
+import java.util.LinkedHashMap;
+import java.util.Map;
+
+import org.apache.uima.cas.CAS;
+import org.apache.uima.ruta.engine.Ruta;
+import org.apache.uima.ruta.engine.RutaEngine;
+import org.apache.uima.ruta.engine.RutaTestUtils;
+import org.junit.Test;
+
+public class TextSeederTest {
+
+  @Test
+  public void testNoMarkupForXmlComment() throws Exception {
+
+    String document = "Text text <! some more text > text text.";
+    String script = "ALL{-> T1};\n";
+    script += "ADDRETAINTYPE(MARKUP);\n";
+    script += "ALL{-> T2};\n";
+    script += "MARKUP{-> T3};\n";
+    CAS cas = RutaTestUtils.getCAS(document);
+    Map<String, Object> params = new LinkedHashMap<>();
+    params.put(RutaEngine.PARAM_SEEDERS, new String[] { TextSeeder.class.getName() });
+    Ruta.apply(cas, script, params);
+
+    RutaTestUtils.assertAnnotationsEquals(cas, 1, 5, "Text", "text", "text", "text", ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 2, 6, "Text", "text", "<", "!", "some", "more",
+            "text", ">", "text", "text", ".");
+    RutaTestUtils.assertAnnotationsEquals(cas, 3, 0);
+  }
+
+}