]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/intltest/ucaconf.cpp
ICU-511.32.tar.gz
[apple/icu.git] / icuSources / test / intltest / ucaconf.cpp
index 8c492c17edaefb89b4b769ecab1075fc6fc0ff88..e7bee3c5d37c489c7f9408bf91d95b7c595504c6 100644 (file)
@@ -1,6 +1,6 @@
 /********************************************************************
- * COPYRIGHT: 
- * Copyright (c) 2002-2010, International Business Machines Corporation and
+ * COPYRIGHT:
+ * Copyright (c) 2002-2012, International Business Machines Corporation and
  * others. All Rights Reserved.
  ********************************************************************/
 
@@ -16,6 +16,7 @@
 
 #include "ucaconf.h"
 #include "unicode/ustring.h"
+#include "cmemory.h"
 #include "cstring.h"
 #include "uparse.h"
 
@@ -24,9 +25,9 @@ rbUCA(NULL),
 testFile(NULL),
 status(U_ZERO_ERROR)
 {
-    UCA = ucol_open("root", &status);
+    UCA = (RuleBasedCollator *)Collator::createInstance(Locale::getRoot(), status);
     if(U_FAILURE(status)) {
-        errln("ERROR - UCAConformanceTest: Unable to open UCA collator!");
+        dataerrln("Error - UCAConformanceTest: Unable to open UCA collator! - %s", u_errorName(status));
     }
 
     const char *srcDir = IntlTest::getSourceTestData(status);
@@ -36,71 +37,69 @@ status(U_ZERO_ERROR)
     }
     uprv_strcpy(testDataPath, srcDir);
     uprv_strcat(testDataPath, "CollationTest_");
+
+    UVersionInfo uniVersion;
+    static const UVersionInfo v62 = { 6, 2, 0, 0 };
+    u_getUnicodeVersion(uniVersion);
+    isAtLeastUCA62 = uprv_memcmp(uniVersion, v62, 4) >= 0;
 }
 
 UCAConformanceTest::~UCAConformanceTest()
 {
-    ucol_close(UCA);
-    if(rbUCA) {
-        ucol_close(rbUCA);
-    }
-    if(testFile) {
+    delete UCA;
+    delete rbUCA;
+    if (testFile) {
         fclose(testFile);
     }
 }
 
 void UCAConformanceTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par */)
 {
-    if (exec) logln("TestSuite UCAConformanceTest: ");
-    if(U_SUCCESS(status)) {
-      switch (index) {
-          case 0: name = "TestTableNonIgnorable"; if (exec)   TestTableNonIgnorable(/* par */); break;
-          case 1: name = "TestTableShifted";      if (exec)   TestTableShifted(/* par */);      break;
-          case 2: name = "TestRulesNonIgnorable"; if (exec)   TestRulesNonIgnorable(/* par */); break;
-          case 3: name = "TestRulesShifted";      if (exec)   TestRulesShifted(/* par */);      break;
-          default: name = ""; break;
-      }
-    } else {
-      name = "";
+    if(exec) {
+        logln("TestSuite UCAConformanceTest: ");
     }
+    TESTCASE_AUTO_BEGIN;
+    TESTCASE_AUTO(TestTableNonIgnorable);
+    TESTCASE_AUTO(TestTableShifted);
+    TESTCASE_AUTO(TestRulesNonIgnorable);
+    TESTCASE_AUTO(TestRulesShifted);
+    TESTCASE_AUTO_END;
 }
 
 void UCAConformanceTest::initRbUCA() 
 {
     if(!rbUCA) {
-        UParseError parseError;
-        UChar      *ucarules;
-        // preflight rules
-        int32_t size = ucol_getRulesEx(UCA, UCOL_FULL_RULES, NULL, 0);
-        ucarules = (UChar *)malloc(size * sizeof(UChar));
-
-        size = ucol_getRulesEx(UCA, UCOL_FULL_RULES, ucarules, size);
-        rbUCA = ucol_openRules(ucarules, size, UCOL_DEFAULT, UCOL_TERTIARY, 
-            &parseError, &status);
-        free(ucarules);
-        if (U_FAILURE(status)) {
-            errln("Failure creating UCA rule-based collator: %s", u_errorName(status));
+        UnicodeString ucarules;
+        if (UCA) {
+            UCA->getRules(UCOL_FULL_RULES, ucarules);
+            rbUCA = new RuleBasedCollator(ucarules, status);
+            if (U_FAILURE(status)) {
+                dataerrln("Failure creating UCA rule-based collator: %s", u_errorName(status));
+                return;
+            }
+        } else {
+            dataerrln("Failure creating UCA rule-based collator: %s", u_errorName(status));
             return;
         }
     }
 }
 
-void UCAConformanceTest::setCollNonIgnorable(UCollator *coll) 
+void UCAConformanceTest::setCollNonIgnorable(Collator *coll) 
 {
-  ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
-  ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_OFF, &status);
-  ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &status);
-  ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_TERTIARY, &status);
-  ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, &status);
+    coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
+    coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
+    coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
+    coll->setAttribute(UCOL_STRENGTH, isAtLeastUCA62 ? UCOL_IDENTICAL : UCOL_TERTIARY, status);
+    coll->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_NON_IGNORABLE, status);
 }
 
-void UCAConformanceTest::setCollShifted(UCollator *coll) 
+void UCAConformanceTest::setCollShifted(Collator *coll) 
 {
-    ucol_setAttribute(coll, UCOL_NORMALIZATION_MODE, UCOL_ON, &status);
-    ucol_setAttribute(coll, UCOL_CASE_FIRST, UCOL_OFF, &status);
-    ucol_setAttribute(coll, UCOL_CASE_LEVEL, UCOL_OFF, &status);
-    ucol_setAttribute(coll, UCOL_STRENGTH, UCOL_QUATERNARY, &status);
-    ucol_setAttribute(coll, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &status);
+    coll->setAttribute(UCOL_NORMALIZATION_MODE, UCOL_ON, status);
+    coll->setAttribute(UCOL_CASE_FIRST, UCOL_OFF, status);
+    coll->setAttribute(UCOL_CASE_LEVEL, UCOL_OFF, status);
+    coll->setAttribute(UCOL_STRENGTH, isAtLeastUCA62 ? UCOL_IDENTICAL : UCOL_QUATERNARY, status);
+    coll->setAttribute(UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, status);
 }
 
 void UCAConformanceTest::openTestFile(const char *type)
@@ -149,11 +148,47 @@ void UCAConformanceTest::openTestFile(const char *type)
     }
 }
 
-void UCAConformanceTest::testConformance(UCollator *coll) 
+static const uint32_t IS_SHIFTED = 1;
+static const uint32_t FROM_RULES = 2;
+
+static UBool
+skipLineBecauseOfBug(const UChar *s, int32_t length, uint32_t flags) {
+    // TODO: Fix ICU ticket #8052
+    if(length >= 3 &&
+            (s[0] == 0xfb2 || s[0] == 0xfb3) &&
+            s[1] == 0x334 &&
+            (s[2] == 0xf73 || s[2] == 0xf75 || s[2] == 0xf81)) {
+        return TRUE;
+    }
+    // TODO: Fix ICU ticket #9361
+    if((flags & IS_SHIFTED) != 0 && length >= 2 && s[0] == 0xfffe) {
+        return TRUE;
+    }
+    // TODO: Fix tailoring builder, ICU ticket #9593.
+    UChar c;
+    if((flags & FROM_RULES) != 0 && length >= 2 && ((c = s[1]) == 0xedc || c == 0xedd)) {
+        return TRUE;
+    }
+    return FALSE;
+}
+
+static UCollationResult
+normalizeResult(int32_t result) {
+    return result<0 ? UCOL_LESS : result==0 ? UCOL_EQUAL : UCOL_GREATER;
+}
+
+void UCAConformanceTest::testConformance(const Collator *coll) 
 {
     if(testFile == 0) {
         return;
     }
+    uint32_t skipFlags = 0;
+    if(coll->getAttribute(UCOL_ALTERNATE_HANDLING, status) == UCOL_SHIFTED) {
+        skipFlags |= IS_SHIFTED;
+    }
+    if(coll == rbUCA) {
+        skipFlags |= FROM_RULES;
+    }
 
     int32_t line = 0;
 
@@ -166,73 +201,67 @@ void UCAConformanceTest::testConformance(UCollator *coll)
     uint8_t sk1[1024], sk2[1024];
     uint8_t *oldSk = NULL, *newSk = sk1;
 
-    int32_t resLen = 0, oldLen = 0;
-    int32_t buflen = 0, oldBlen = 0;
+    int32_t oldLen = 0;
+    int32_t oldBlen = 0;
     uint32_t first = 0;
-    uint32_t offset = 0;
-    UnicodeString oldS, newS;
-
 
     while (fgets(lineB, 1024, testFile) != NULL) {
         // remove trailing whitespace
         u_rtrim(lineB);
-        offset = 0;
 
         line++;
-        if(*lineB == 0 || strlen(lineB) < 3 || lineB[0] == '#') {
+        if(*lineB == 0 || lineB[0] == '#') {
             continue;
         }
-        offset = u_parseString(lineB, buffer, 1024, &first, &status);
+        int32_t buflen = u_parseString(lineB, buffer, 1024, &first, &status);
         if(U_FAILURE(status)) {
             errln("Error parsing line %ld (%s): %s\n",
                   (long)line, u_errorName(status), lineB);
             status = U_ZERO_ERROR;
         }
-        buflen = offset;
-        buffer[offset++] = 0;
+        buffer[buflen] = 0;
 
-        resLen = ucol_getSortKey(coll, buffer, buflen, newSk, 1024);
+        if(skipLineBecauseOfBug(buffer, buflen, skipFlags)) {
+            logln("Skipping line %i because of a known bug", line);
+            continue;
+        }
 
-        int32_t res = 0, cmpres = 0, cmpres2 = 0;
+        int32_t resLen = coll->getSortKey(buffer, buflen, newSk, 1024);
 
         if(oldSk != NULL) {
-            res = strcmp((char *)oldSk, (char *)newSk);
-            cmpres = ucol_strcoll(coll, oldB, oldBlen, buffer, buflen);
-            cmpres2 = ucol_strcoll(coll, buffer, buflen, oldB, oldBlen);
+            int32_t skres = strcmp((char *)oldSk, (char *)newSk);
+            int32_t cmpres = coll->compare(oldB, oldBlen, buffer, buflen, status);
+            int32_t cmpres2 = coll->compare(buffer, buflen, oldB, oldBlen, status);
 
             if(cmpres != -cmpres2) {
                 errln("Compare result not symmetrical on line %i", line);
             }
 
-            if(((res&0x80000000) != (cmpres&0x80000000)) || (res == 0 && cmpres != 0) || (res != 0 && cmpres == 0)) {
-                errln("Difference between ucol_strcoll and sortkey compare on line %i", line);
+            if(cmpres != normalizeResult(skres)) {
+                errln("Difference between coll->compare (%d) and sortkey compare (%d) on line %i",
+                      cmpres, skres, line);
                 errln("  Previous data line %s", oldLineB);
                 errln("  Current data line  %s", lineB);
             }
 
+            int32_t res = cmpres;
+            if(res == 0 && !isAtLeastUCA62) {
+                // Up to UCA 6.1, the collation test files use a custom tie-breaker,
+                // comparing the raw input strings.
+                res = u_strcmpCodePointOrder(oldB, buffer);
+                // Starting with UCA 6.2, the collation test files use the standard UCA tie-breaker,
+                // comparing the NFD versions of the input strings,
+                // which we do via setting strength=identical.
+            }
             if(res > 0) {
                 errln("Line %i is not greater or equal than previous line", line);
                 errln("  Previous data line %s", oldLineB);
                 errln("  Current data line  %s", lineB);
+                UnicodeString oldS, newS;
                 prettify(CollationKey(oldSk, oldLen), oldS);
                 prettify(CollationKey(newSk, resLen), newS);
                 errln("  Previous key: "+oldS);
                 errln("  Current key:  "+newS);
-            } else if(res == 0) { /* equal */
-                res = u_strcmpCodePointOrder(oldB, buffer);
-                if (res == 0) {
-                    errln("Probable error in test file on line %i (comparing identical strings)", line);
-                    errln("  Data line %s", lineB);
-                }
-                /*
-                 * UCA 6.0 test files can have lines that compare == if they are
-                 * different strings but canonically equivalent.
-                else if (res > 0) {
-                    errln("Sortkeys are identical, but code point compare gives >0 on line %i", line);
-                    errln("  Previous data line %s", oldLineB);
-                    errln("  Current data line  %s", lineB);
-                }
-                 */
             }
         }
 
@@ -255,12 +284,20 @@ void UCAConformanceTest::testConformance(UCollator *coll)
 }
 
 void UCAConformanceTest::TestTableNonIgnorable(/* par */) {
+    if (U_FAILURE(status)) {
+        dataerrln("Error running UCA Conformance Test: %s", u_errorName(status));
+        return;
+    }
     setCollNonIgnorable(UCA);
     openTestFile("NON_IGNORABLE");
     testConformance(UCA);
 }
 
 void UCAConformanceTest::TestTableShifted(/* par */) {
+    if (U_FAILURE(status)) {
+        dataerrln("Error running UCA Conformance Test: %s", u_errorName(status));
+        return;
+    }
     setCollShifted(UCA);
     openTestFile("SHIFTED");
     testConformance(UCA);