Merge branch 'icu_refactor' into yaz4
[yaz-moved-to-github.git] / test / tst_icu_I18N.c
index 07aab52..bbdc993 100644 (file)
@@ -1,23 +1,7 @@
-/* $Id: tst_icu_I18N.c,v 1.10 2007-10-29 10:22:23 marc Exp $
-   Copyright (c) 2006-2007, Index Data.
-
-   This file is part of Pazpar2.
-
-   Pazpar2 is free software; you can redistribute it and/or modify it under
-   the terms of the GNU General Public License as published by the Free
-   Software Foundation; either version 2, or (at your option) any later
-   version.
-
-   Pazpar2 is distributed in the hope that it will be useful, but WITHOUT ANY
-   WARRANTY; without even the implied warranty of MERCHANTABILITY or
-   FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
-   for more details.
-
-   You should have received a copy of the GNU General Public License
-   along with Pazpar2; see the file LICENSE.  If not, write to the
-   Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA
-   02111-1307, USA.
-*/
+/* This file is part of the YAZ toolkit.
+ * Copyright (C) 1995-2009 Index Data
+ * See the file LICENSE for details.
+ */
 
 /* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
  
 
 #include <yaz/test.h>
 
-#if HAVE_ICU
+#if YAZ_HAVE_ICU
 #include <yaz/icu_I18N.h>
 
 #include <string.h>
 #include <stdlib.h>
 
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
-
 #define MAX_KEY_SIZE 256
 struct icu_termmap
 {
@@ -50,7 +31,6 @@ struct icu_termmap
 };
 
 
-
 int icu_termmap_cmp(const void *vp1, const void *vp2)
 {
     struct icu_termmap *itmp1 = *(struct icu_termmap **) vp1;
@@ -61,9 +41,7 @@ int icu_termmap_cmp(const void *vp1, const void *vp2)
     cmp = strcmp((const char *)itmp1->sort_key, 
                  (const char *)itmp2->sort_key);
     return cmp;
-};
-
-
+}
 
 
 int test_icu_casemap(const char * locale, char action,
@@ -89,9 +67,7 @@ int test_icu_casemap(const char * locale, char action,
   
     /* converting to UTF8 */
     icu_utf16_to_utf8(dest8, dest16, &status);
-      
 
-  
     /* determine success */
     if (dest8->utf8 
         && (dest8->utf8_len == strlen(chk8cstr))
@@ -114,18 +90,12 @@ int test_icu_casemap(const char * locale, char action,
     icu_buf_utf8_destroy(dest8);
     icu_buf_utf16_destroy(src16);
     icu_buf_utf16_destroy(dest16);
-  
-  
+    
     return success;
 }
 
-
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
 void test_icu_I18N_casemap(int argc, char **argv)
 {
-
     /* Locale 'en' */
 
     /* successful tests */
@@ -145,7 +115,6 @@ void test_icu_I18N_casemap(int argc, char **argv)
                                "A ReD fOx hunTS sQUirriLs", 
                                "A Red Fox Hunts Squirrils"));
     
-
     /* Locale 'da' */
 
     /* success expected */
@@ -186,9 +155,6 @@ void test_icu_I18N_casemap(int argc, char **argv)
 
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
 int test_icu_sortmap(const char * locale, int src_list_len,
                      const char ** src_list, const char ** chk_list)
 {
@@ -210,39 +176,39 @@ int test_icu_sortmap(const char * locale, int src_list_len,
         return 0;
 
     /* assigning display terms and sort keys using buf 8 and buf16 */
-    for( i = 0; i < src_list_len; i++) 
-        {
+    for (i = 0; i < src_list_len; i++) 
+    {
 
-            list[i] = (struct icu_termmap *) malloc(sizeof(struct icu_termmap));
+        list[i] = (struct icu_termmap *) malloc(sizeof(struct icu_termmap));
 
-            /* copy display term */
-            strcpy(list[i]->disp_term, src_list[i]);    
+        /* copy display term */
+        strcpy(list[i]->disp_term, src_list[i]);    
 
-            /* transforming to UTF16 */
-            icu_utf16_from_utf8_cstr(buf16, list[i]->disp_term, &status);
-            icu_check_status(status);
+        /* transforming to UTF16 */
+        icu_utf16_from_utf8_cstr(buf16, list[i]->disp_term, &status);
+        icu_check_status(status);
 
-            /* computing sortkeys */
-            icu_sortkey8_from_utf16(coll, buf8, buf16, &status);
-            icu_check_status(status);
+        /* computing sortkeys */
+        icu_sortkey8_from_utf16(coll, buf8, buf16, &status);
+        icu_check_status(status);
     
-            /* assigning sortkeys */
-            memcpy(list[i]->sort_key, buf8->utf8, buf8->utf8_len);    
-        } 
-
+        /* assigning sortkeys */
+        memcpy(list[i]->sort_key, buf8->utf8, buf8->utf8_len);    
+    } 
 
     /* do the sorting */
-    qsort(list, src_list_len, 
-          sizeof(struct icu_termmap *), icu_termmap_cmp);
+    qsort(list, src_list_len, sizeof(struct icu_termmap *), icu_termmap_cmp);
 
     /* checking correct sorting */
-    for (i = 0; i < src_list_len; i++){
+    for (i = 0; i < src_list_len; i++)
+    {
         if (0 != strcmp(list[i]->disp_term, chk_list[i])){
             success = 0;
         }
     }
 
-    if(!success){
+    if (!success)
+    {
         printf("\nERROR\n"); 
         printf("Input str: '%s' : ", locale); 
         for (i = 0; i < src_list_len; i++) {
@@ -261,12 +227,9 @@ int test_icu_sortmap(const char * locale, int src_list_len,
         printf("\n"); 
     }
   
-
-
-    for( i = 0; i < src_list_len; i++)
+    for (i = 0; i < src_list_len; i++)
         free(list[i]);
-        
-    
+   
     ucol_close(coll);
 
     icu_buf_utf8_destroy(buf8);
@@ -275,12 +238,8 @@ int test_icu_sortmap(const char * locale, int src_list_len,
     return success;  
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
 void test_icu_I18N_sortmap(int argc, char **argv)
 {
-
     /* successful tests */
     size_t en_1_len = 6;
     const char * en_1_src[6] = {"z", "K", "a", "A", "Z", "k"};
@@ -311,15 +270,9 @@ void test_icu_I18N_sortmap(int argc, char **argv)
     
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
-
-
-
 int test_icu_normalizer(const char * rules8cstr,
-                            const char * src8cstr,
-                            const char * chk8cstr)
+                        const char * src8cstr,
+                        const char * chk8cstr)
 {
     int success = 0;
     
@@ -328,14 +281,14 @@ int test_icu_normalizer(const char * rules8cstr,
     struct icu_buf_utf16 * src16 = icu_buf_utf16_create(0);
     struct icu_buf_utf16 * dest16 = icu_buf_utf16_create(0);
     struct icu_buf_utf8 * dest8 = icu_buf_utf8_create(0);
-    struct icu_normalizer * normalizer
-        = icu_normalizer_create(rules8cstr, 'f', &status);
+    struct icu_transform * transform
+        = icu_transform_create(rules8cstr, 'f', 0, &status);
     icu_check_status(status);
     
     icu_utf16_from_utf8_cstr(src16, src8cstr, &status);
     icu_check_status(status);
 
-    icu_normalizer_normalize(normalizer, dest16, src16, &status);
+    icu_transform_trans(transform, dest16, src16, &status);
     icu_check_status(status);
 
     icu_utf16_to_utf8(dest8, dest16, &status);
@@ -345,7 +298,8 @@ int test_icu_normalizer(const char * rules8cstr,
     if(!strcmp((const char *) dest8->utf8, 
                (const char *) chk8cstr))
         success = 1;
-    else {
+    else
+    {
         success = 0;
         printf("Normalization\n");
         printf("Rules:      '%s'\n", rules8cstr);
@@ -353,22 +307,17 @@ int test_icu_normalizer(const char * rules8cstr,
         printf("Normalized: '%s'\n", dest8->utf8);
         printf("Expected:   '%s'\n", chk8cstr);
     }
-    
 
-    icu_normalizer_destroy(normalizer);
+    icu_transform_destroy(transform);
     icu_buf_utf16_destroy(src16);
     icu_buf_utf16_destroy(dest16);
     icu_buf_utf8_destroy(dest8);
 
     return success;
-};
-
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
+}
 
 void test_icu_I18N_normalizer(int argc, char **argv)
 {
-
     YAZ_CHECK(test_icu_normalizer("[:Punctuation:] Any-Remove",
                                   "Don't shoot!",
                                   "Dont shoot"));
@@ -394,18 +343,13 @@ void test_icu_I18N_normalizer(int argc, char **argv)
                                   " word4you? ",
                                   "word4you"));
 
-
     YAZ_CHECK(test_icu_normalizer("NFD; [:Nonspacing Mark:] Remove; NFC",
                                   "à côté de l'alcôve ovoïde",
                                   "a cote de l'alcove ovoide"));
-
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
 int test_icu_tokenizer(const char * locale, char action,
-                     const char * src8cstr, int count)
+                       const char * src8cstr, int count)
 {
     int success = 1;
 
@@ -453,13 +397,8 @@ int test_icu_tokenizer(const char * locale, char action,
     return success;
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
 void test_icu_I18N_tokenizer(int argc, char **argv)
 {
-
-
     const char * en_str 
         = "O Romeo, Romeo! wherefore art thou Romeo?";
     
@@ -468,8 +407,6 @@ void test_icu_I18N_tokenizer(int argc, char **argv)
     YAZ_CHECK(test_icu_tokenizer("en", 'w', en_str, 16));
     YAZ_CHECK(test_icu_tokenizer("en", 'c', en_str, 41));
 
-
-
     {
         const char * da_str 
             = "Blåbærtærte. Denne kage stammer fra Finland. "
@@ -480,10 +417,8 @@ void test_icu_I18N_tokenizer(int argc, char **argv)
         YAZ_CHECK(test_icu_tokenizer("da", 'w', da_str, 37));
         YAZ_CHECK(test_icu_tokenizer("da", 'c', da_str, 110));
     }
-
 }
 
-
 void test_icu_I18N_chain(int argc, char **argv)
 {
     const char * en_str 
@@ -492,11 +427,10 @@ void test_icu_I18N_chain(int argc, char **argv)
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
     
-
-    const char * xml_str = "<icu>"
-        "<normalize rule=\"[:Control:] Any-Remove\"/>"
+    const char * xml_str = "<icu locale=\"en\">"
+        "<transform rule=\"[:Control:] Any-Remove\"/>"
         "<tokenize rule=\"l\"/>"
-        "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
+        "<transform rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
         "<display/>"
         "<casemap rule=\"l\"/>"
         "</icu>";
@@ -506,22 +440,20 @@ void test_icu_I18N_chain(int argc, char **argv)
     xmlNode *xml_node = xmlDocGetRootElement(doc);
     YAZ_CHECK(xml_node);
 
-    // printf("ICU chain:\ninput: '%s'\n", en_str);
-
-
-    chain = icu_chain_xml_config(xml_node, (uint8_t *) "en", 0, &status);
+    chain = icu_chain_xml_config(xml_node, 0, &status);
 
     xmlFreeDoc(doc);
     YAZ_CHECK(chain);
 
     YAZ_CHECK(icu_chain_assign_cstr(chain, en_str, &status));
 
-    while (icu_chain_next_token(chain, &status)){
+    while (icu_chain_next_token(chain, &status))
+    {
         ;
-        // printf("%d '%s' '%s'\n",
-        //       icu_chain_token_number(chain),
-        //       icu_chain_token_norm(chain),
-        //       icu_chain_token_display(chain));
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
 
     YAZ_CHECK_EQ(icu_chain_token_number(chain), 7);
@@ -529,12 +461,13 @@ void test_icu_I18N_chain(int argc, char **argv)
 
     YAZ_CHECK(icu_chain_assign_cstr(chain, "what is this?", &status));
 
-    while (icu_chain_next_token(chain, &status)){
+    while (icu_chain_next_token(chain, &status))
+    {
         ;
-        //printf("%d '%s' '%s'\n",
-        //       icu_chain_token_number(chain),
-        //       icu_chain_token_norm(chain),
-        //       icu_chain_token_display(chain));
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
 
 
@@ -549,14 +482,14 @@ void test_bug_1140(void)
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
     
-    const char * xml_str = "<icu>"
+    const char * xml_str = "<icu locale=\"en\">"
 
         /* if the first rule is normalize instead. Then it works */
 #if 0
-        "<normalize rule=\"[:Control:] Any-Remove\"/>"
+        "<transform rule=\"[:Control:] Any-Remove\"/>"
 #endif
         "<tokenize rule=\"l\"/>"
-        "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
+        "<transform rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
         "<display/>"
         "<casemap rule=\"l\"/>"
         "</icu>";
@@ -566,7 +499,7 @@ void test_bug_1140(void)
     xmlNode *xml_node = xmlDocGetRootElement(doc);
     YAZ_CHECK(xml_node);
 
-    chain = icu_chain_xml_config(xml_node, (uint8_t *) "en", 0, &status);
+    chain = icu_chain_xml_config(xml_node, 0, &status);
 
     xmlFreeDoc(doc);
     YAZ_CHECK(chain);
@@ -575,13 +508,13 @@ void test_bug_1140(void)
                   chain,  "O Romeo, Romeo! wherefore art thou\t Romeo?",
                   &status));
 
-    while (icu_chain_next_token(chain, &status)){    
+    while (icu_chain_next_token(chain, &status))
+    {
         ;
-        //printf("%d '%s' '%s'\n",
-        //       icu_chain_token_number(chain),
-        //       icu_chain_token_norm(chain),
-        //       icu_chain_token_display(chain));
-
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
     
 
@@ -589,12 +522,13 @@ void test_bug_1140(void)
 
     YAZ_CHECK(icu_chain_assign_cstr(chain, "what is this?", &status));
 
-    while (icu_chain_next_token(chain, &status)){
-       ;
-       //printf("%d '%s' '%s'\n",
-       //        icu_chain_token_number(chain),
-       //        icu_chain_token_norm(chain),
-       //        icu_chain_token_display(chain));
+    while (icu_chain_next_token(chain, &status))
+    {
+        ;
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
 
     /* we expect 'what' 'is' 'this', i.e. 3 tokens */
@@ -604,39 +538,39 @@ void test_bug_1140(void)
 }
 
 
-
 void test_chain_empty_token(void)
 {
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
 
-    const char * xml_str = "<icu>"
+    const char * xml_str = "<icu locale=\"en\">"
         "<tokenize rule=\"w\"/>"
-        "<normalize rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
+        "<transform rule=\"[[:WhiteSpace:][:Punctuation:]] Remove\"/>"
         "</icu>";
     
     xmlDoc *doc = xmlParseMemory(xml_str, strlen(xml_str));
     xmlNode *xml_node = xmlDocGetRootElement(doc);
     YAZ_CHECK(xml_node);
 
-    chain = icu_chain_xml_config(xml_node, (uint8_t *) "en", 0, &status);
+    chain = icu_chain_xml_config(xml_node, 0, &status);
 
     xmlFreeDoc(doc);
     YAZ_CHECK(chain);
     
     YAZ_CHECK(icu_chain_assign_cstr(
-                  chain,  "a string with 15 wordbreaks and 8 tokens",
+                  chain,  "a string with 15 tokenss and 8 displays",
                   &status));
 
-    while (icu_chain_next_token(chain, &status)){
+    while (icu_chain_next_token(chain, &status))
+    {
         ;
-        //printf("%d '%s' '%s'\n",
-        //       icu_chain_token_number(chain),
-        //       icu_chain_token_norm(chain),
-        //       icu_chain_token_display(chain));
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
 
-    YAZ_CHECK_EQ(icu_chain_token_number(chain), 8);
+    YAZ_CHECK_EQ(icu_chain_token_number(chain), 15);
 
     icu_chain_destroy(chain);
 }
@@ -646,7 +580,7 @@ void test_chain_empty_chain(void)
     UErrorCode status = U_ZERO_ERROR;
     struct icu_chain * chain = 0;
 
-    const char * xml_str = "<icu>"
+    const char * xml_str = "<icu locale=\"en\">"
         "</icu>";
     
     const char * src8 = "some 5487 weired !¤%&(/& sTuFf";
@@ -656,7 +590,7 @@ void test_chain_empty_chain(void)
     xmlNode *xml_node = xmlDocGetRootElement(doc);
     YAZ_CHECK(xml_node);
 
-    chain = icu_chain_xml_config(xml_node, (uint8_t *) "en", 0, &status);
+    chain = icu_chain_xml_config(xml_node, 0, &status);
 
     xmlFreeDoc(doc);
     YAZ_CHECK(chain);
@@ -665,34 +599,31 @@ void test_chain_empty_chain(void)
                   chain,  src8,
                   &status));
 
-    while (icu_chain_next_token(chain, &status)){
+    while (icu_chain_next_token(chain, &status))
+    {
         ;
-        //printf("%d '%s' '%s'\n",
-        //       icu_chain_token_number(chain),
-        //       icu_chain_token_norm(chain),
-        //       icu_chain_token_display(chain));
+        /* printf("%d '%s' '%s'\n",
+           icu_chain_token_number(chain),
+           icu_chain_token_norm(chain),
+           icu_chain_token_display(chain)); */
     }
 
     YAZ_CHECK_EQ(icu_chain_token_number(chain), 1);
 
-    dest8 = icu_chain_token_norm(chain);
+    dest8 = (char *) icu_chain_token_norm(chain);
     YAZ_CHECK_EQ(strcmp(src8, dest8), 0);
     
-
     icu_chain_destroy(chain);
 }
 
-#endif // HAVE_ICU
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
+#endif /* YAZ_HAVE_ICU */
 
 int main(int argc, char **argv)
 {
-
     YAZ_CHECK_INIT(argc, argv); 
     YAZ_CHECK_LOG();
 
-#if HAVE_ICU
+#if YAZ_HAVE_ICU
 
     test_icu_I18N_casemap(argc, argv);
     test_icu_I18N_sortmap(argc, argv);
@@ -703,26 +634,23 @@ int main(int argc, char **argv)
     test_chain_empty_chain();
     test_bug_1140();
 
-#else /* HAVE_ICU */
+#else /* YAZ_HAVE_ICU */
 
     printf("ICU unit tests omitted.\n"
            "Please install libicu36-dev and icu-doc or similar\n");
     YAZ_CHECK(0 == 0);
 
-#endif /* HAVE_ICU */
+#endif /* YAZ_HAVE_ICU */
    
     YAZ_CHECK_TERM;
 }
 
-
-/* DO NOT EDIT THIS FILE IF YOUR EDITOR DOES NOT SUPPORT UTF-8 */
-
-
-
 /*
  * Local variables:
  * c-basic-offset: 4
+ * c-file-style: "Stroustrup"
  * indent-tabs-mode: nil
  * End:
  * vim: shiftwidth=4 tabstop=8 expandtab
  */
+