]> git.saurik.com Git - apple/icu.git/blobdiff - icuSources/test/cintltst/idnatest.c
ICU-400.42.tar.gz
[apple/icu.git] / icuSources / test / cintltst / idnatest.c
index c7d5c1c9f9a7221ea434c0412cc153815ebcfd20..6196523087a8a99d52feb91d346b25702a61462c 100644 (file)
@@ -1,7 +1,7 @@
 /*
  *******************************************************************************
  *
- *   Copyright (C) 2003-2004, International Business Machines
+ *   Copyright (C) 2003-2007, International Business Machines
  *   Corporation and others.  All Rights Reserved.
  *
  *******************************************************************************
@@ -34,7 +34,10 @@ static void TestIDNToUnicode(void);
 static void TestIDNToASCII(void);
 static void TestCompare(void);
 static void TestUnicode32Norm(void);
-
+static void TestJB4490(void);
+static void TestJB4475(void); 
+static void TestLength(void);
+static void TestJB5273(void);
 void addIDNATest(TestNode** root);
 
 
@@ -59,6 +62,10 @@ addIDNATest(TestNode** root)
    addTest(root, &TestIDNToASCII,   "idna/TestIDNToASCII");
    addTest(root, &TestCompare,      "idna/TestCompare");
    addTest(root, &TestUnicode32Norm,"idna/TestUnicode32Norm");
+   addTest(root, &TestJB4490,       "idna/TestJB4490");
+   addTest(root, &TestJB4475,       "idna/TestJB4475");
+   addTest(root, &TestLength,       "idna/TestLength");
+   addTest(root, &TestJB5273,       "idna/TestJB5273");
 }
 
 static void
@@ -217,7 +224,7 @@ testAPI(const UChar* src, const UChar* expected, const char* testName,
     free(tSrc);
 }
 
-static UChar unicodeIn[][41] ={
+static const UChar unicodeIn[][41] ={
     {
         0x0644, 0x064A, 0x0647, 0x0645, 0x0627, 0x0628, 0x062A, 0x0643, 0x0644,
         0x0645, 0x0648, 0x0634, 0x0639, 0x0631, 0x0628, 0x064A, 0x061F, 0x0000
@@ -331,11 +338,13 @@ static UChar unicodeIn[][41] ={
         0x043e, 0x043d, 0x0438, 0x043d, 0x0435, 0x0433, 0x043e, 0x0432,
         0x043e, 0x0440, 0x044f, 0x0442, 0x043f, 0x043e, 0x0440, 0x0443,
         0x0441, 0x0441, 0x043a, 0x0438
+    },
+    {
+        0x0054,0x0045,0x0053,0x0054
     }
-
 };
 
-static const char *asciiIn[] = {
+static const char * const asciiIn[] = {
     "xn--egbpdaj6bu4bxfgehfvwxn",
     "xn--ihqwcrb4cv8a8dqg056pqjye",
     "xn--Proprostnemluvesky-uyb24dma41a",
@@ -358,11 +367,12 @@ static const char *asciiIn[] = {
     "XN--db8CBHEJLGH4E0AL",
     "xn--hxargifdar",                       /* Greek */
     "xn--bonusaa-5bb1da",                   /* Maltese */
-    "xn--b1abfaaepdrnnbgefbadotcwatmq2g4l", /* Russian (Cyrillic)*/
+    "xn--b1abfaaepdrnnbgefbadotcwatmq2g4l",  /* Russian (Cyrillic)*/
+    "TEST"
 
 };
 
-static const char *domainNames[] = {
+static const char * const domainNames[] = {
     "slip129-37-118-146.nc.us.ibm.net",
     "saratoga.pe.utexas.edu",
     "dial-120-45.ots.utexas.edu",
@@ -410,7 +420,7 @@ static const char *domainNames[] = {
     /*"\\u00CF\\u0082.com",*/
     /*"\\u00CE\\u00B2\\u00C3\\u009Fss.com",*/
     /*"\\u00E2\\u0098\\u00BA.com",*/
-    "\\u00C3\\u00BC.com",
+    "\\u00C3\\u00BC.com"
 
 };
 
@@ -647,13 +657,221 @@ static void TestUnicode32Norm() {
         errorCode=U_ZERO_ERROR;
         length=uidna_toASCII(strings[i], -1, ascii, LENGTHOF(ascii), 0, NULL, &errorCode);
         length=uidna_toUnicode(ascii, length, unicode, LENGTHOF(unicode), 0, NULL, &errorCode);
-        if(errorCode!=U_IDNA_VERIFICATION_ERROR) {
-            log_err("string %d yields %s instead of U_IDNA_VERIFICATION_ERROR\n",
-                i, u_errorName(errorCode));
+        if(u_strncmp(ascii, unicode, length)!=0) {
+            log_err("Did not get the correct output\n");
+        }
+    }
+}
+
+static void TestJB4490(){
+    static const UChar data[][50]= {
+        {0x00F5,0x00dE,0x00dF,0x00dD, 0x0000},
+        {0xFB00,0xFB01}
+    };
+    UChar output1[40] = {0};
+    UChar output2[40] = {0};
+    int32_t i;
+    for(i=0; i< sizeof(data)/sizeof(data[0]); i++){
+        const UChar* src1 = data[i];
+        int32_t src1Len = u_strlen(src1);
+        UChar* dest1 = output1;
+        int32_t dest1Len = 40;
+        UErrorCode status = U_ZERO_ERROR;
+        UParseError ps;
+        UChar* src2 = NULL;
+        int32_t src2Len = 0;
+        UChar* dest2 = output2;
+        int32_t dest2Len = 40;
+        dest1Len = uidna_toASCII(src1, src1Len, dest1, dest1Len,UIDNA_DEFAULT, &ps, &status);
+        if(U_FAILURE(status)){
+            log_err("uidna_toUnicode failed with error %s.\n", u_errorName(status));
+        }
+        src2 = dest1;
+        src2Len = dest1Len;
+        dest2Len = uidna_toUnicode(src2, src2Len, dest2, dest2Len, UIDNA_DEFAULT, &ps, &status);
+        if(U_FAILURE(status)){
+            log_err("uidna_toUnicode failed with error %s.\n", u_errorName(status));
         }
     }
 }
 
+static void TestJB4475(){
+    
+    static const UChar input[][10] = {
+        {0x0054,0x0045,0x0053,0x0054,0x0000},/* TEST */
+        {0x0074,0x0065,0x0073,0x0074,0x0000} /* test */
+    };
+    int i;
+    UChar output[40] = {0};
+    for(i=0; i< sizeof(input)/sizeof(input[0]); i++){
+        const UChar* src = input[i];
+        int32_t srcLen = u_strlen(src);
+        UChar* dest = output;
+        int32_t destLen = 40;
+        UErrorCode status = U_ZERO_ERROR;
+        UParseError ps;
+
+        destLen = uidna_toASCII(src, srcLen, dest, destLen,UIDNA_DEFAULT, &ps, &status);
+        if(U_FAILURE(status)){
+            log_err("uidna_toASCII failed with error %s.\n", u_errorName(status));
+        } 
+        if(u_strncmp(input[i], dest, srcLen)!=0){
+            log_err("uidna_toASCII did not return the expected output.\n");
+        }
+    }
+}
+
+static void TestLength(){
+    {
+        static const char* cl = "my_very_very_very_very_very_very_very_very_very_very_very_very_very_long_and_incredibly_uncreative_domain_label";
+        UChar ul[128] = {'\0'};
+        UChar dest[256] = {'\0'};
+        /* this unicode string is longer than MAX_LABEL_BUFFER_SIZE and produces an 
+           IDNA prepared string (including xn--)that is exactly 63 bytes long */
+        UChar ul1[] = { 0xC138, 0xACC4, 0xC758, 0xBAA8, 0xB4E0, 0xC0AC, 0xB78C, 0xB4E4, 0xC774, 
+                        0xD55C, 0xAD6D, 0xC5B4, 0xB97C, 0xC774, 0x00AD, 0x034F, 0x1806, 0x180B, 
+                        0x180C, 0x180D, 0x200B, 0x200C, 0x200D, 0x2060, 0xFE00, 0xFE01, 0xFE02, 
+                        0xFE03, 0xFE04, 0xFE05, 0xFE06, 0xFE07, 0xFE08, 0xFE09, 0xFE0A, 0xFE0B, 
+                        0xFE0C, 0xFE0D, 0xFE0E, 0xFE0F, 0xFEFF, 0xD574, 0xD55C, 0xB2E4, 0xBA74, 
+                        0xC138, 0x0041, 0x00AD, 0x034F, 0x1806, 0x180B, 0x180C, 0x180D, 0x200B, 
+                        0x200C, 0x200D, 0x2060, 0xFE00, 0xFE01, 0xFE02, 0xFE03, 0xFE04, 0xFE05, 
+                        0xFE06, 0xFE07, 0xFE08, 0xFE09, 0xFE0A, 0xFE0B, 0xFE0C, 0xFE0D, 0xFE0E, 
+                        0xFE0F, 0xFEFF, 0x00AD, 0x034F, 0x1806, 0x180B, 0x180C, 0x180D, 0x200B, 
+                        0x200C, 0x200D, 0x2060, 0xFE00, 0xFE01, 0xFE02, 0xFE03, 0xFE04, 0xFE05, 
+                        0xFE06, 0xFE07, 0xFE08, 0xFE09, 0xFE0A, 0xFE0B, 0xFE0C, 0xFE0D, 0xFE0E, 
+                        0xFE0F, 0xFEFF, 0x00AD, 0x034F, 0x1806, 0x180B, 0x180C, 0x180D, 0x200B, 
+                        0x200C, 0x200D, 0x2060, 0xFE00, 0xFE01, 0xFE02, 0xFE03, 0xFE04, 0xFE05, 
+                        0xFE06, 0xFE07, 0xFE08, 0xFE09, 0xFE0A, 0xFE0B, 0xFE0C, 0xFE0D, 0xFE0E, 
+                        0xFE0F, 0xFEFF, 0x0000
+                      };
+
+        int32_t len1 = LENGTHOF(ul1)-1/*remove the null termination*/;
+        int32_t destLen = LENGTHOF(dest);
+        UErrorCode status = U_ZERO_ERROR;
+        UParseError ps;
+        int32_t len = (int32_t)strlen(cl);
+        u_charsToUChars(cl, ul, len+1);
+        destLen = uidna_toUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_ZERO_ERROR){
+            log_err("uidna_toUnicode failed with error %s.\n", u_errorName(status));
+        }
+
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = -1;
+        destLen = uidna_toUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_ZERO_ERROR){
+            log_err("uidna_toUnicode failed with error %s.\n", u_errorName(status));
+        }
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = (int32_t)strlen(cl);
+        destLen = uidna_toASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_LABEL_TOO_LONG_ERROR){
+            log_err("uidna_toASCII failed with error %s.\n", u_errorName(status));
+        }
+        
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = -1;
+        destLen = uidna_toASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_LABEL_TOO_LONG_ERROR){
+            log_err("uidna_toASCII failed with error %s.\n", u_errorName(status));
+        }
+
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        destLen = uidna_toASCII(ul1, len1, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_ZERO_ERROR){
+            log_err("uidna_toASCII failed with error %s.\n", u_errorName(status));
+        }
+        
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len1 = -1;
+        destLen = uidna_toASCII(ul1, len1, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_ZERO_ERROR){
+            log_err("uidna_toASCII failed with error %s.\n", u_errorName(status));
+        }
+    }
+    {
+        static const char* cl = "my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.my_very_very_long_and_incredibly_uncreative_domain_label.ibm.com";
+        UChar ul[400] = {'\0'};
+        UChar dest[400] = {'\0'};
+        int32_t destLen = LENGTHOF(dest);
+        UErrorCode status = U_ZERO_ERROR;
+        UParseError ps;
+        int32_t len = (int32_t)strlen(cl);
+        u_charsToUChars(cl, ul, len+1);
+        
+        destLen = uidna_IDNToUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_IDNToUnicode failed with error %s.\n", u_errorName(status));
+        }
+        
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = -1;
+        destLen = uidna_IDNToUnicode(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_IDNToUnicode failed with error %s.\n", u_errorName(status));
+        }
+        
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = (int32_t)strlen(cl);
+        destLen = uidna_IDNToASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_IDNToASCII failed with error %s.\n", u_errorName(status));
+        }
+        
+        status = U_ZERO_ERROR;
+        destLen = LENGTHOF(dest);
+        len = -1;
+        destLen = uidna_IDNToASCII(ul, len, dest, destLen, UIDNA_DEFAULT, &ps, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_IDNToASCII failed with error %s.\n", u_errorName(status));
+        }
+
+        status = U_ZERO_ERROR;
+        uidna_compare(ul, len, ul, len, UIDNA_DEFAULT, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_compare failed with error %s.\n", u_errorName(status));
+        }
+        uidna_compare(ul, -1, ul, -1, UIDNA_DEFAULT, &status);
+        if(status != U_IDNA_DOMAIN_NAME_TOO_LONG_ERROR){
+            log_err("uidna_compare failed with error %s.\n", u_errorName(status));
+        }
+    }    
+}
+static void TestJB5273(){
+    static const char INVALID_DOMAIN_NAME[] = "xn--m\\u00FCller.de";
+    UChar invalid_idn[25] = {'\0'};
+    int32_t len = u_unescape(INVALID_DOMAIN_NAME, invalid_idn, strlen(INVALID_DOMAIN_NAME));
+    UChar output[50] = {'\0'};
+    UErrorCode status = U_ZERO_ERROR;
+    UParseError prsError;
+    int32_t outLen = uidna_toUnicode(invalid_idn, len, output, 50, UIDNA_DEFAULT, &prsError, &status);
+    if(U_FAILURE(status)){
+        log_err("uidna_toUnicode failed with error: %s\n", u_errorName(status));
+    }
+    status = U_ZERO_ERROR;
+    outLen = uidna_toUnicode(invalid_idn, len, output, 50, UIDNA_USE_STD3_RULES, &prsError, &status);
+    if(U_FAILURE(status)){
+        log_err("uidna_toUnicode failed with error: %s\n", u_errorName(status));
+    }
+
+    status = U_ZERO_ERROR;
+    outLen = uidna_IDNToUnicode(invalid_idn, len, output, 50, UIDNA_DEFAULT, &prsError, &status);
+    if(U_FAILURE(status)){
+        log_err("uidna_toUnicode failed with error: %s\n", u_errorName(status));
+    }
+    status = U_ZERO_ERROR;
+    outLen = uidna_IDNToUnicode(invalid_idn, len, output, 50, UIDNA_USE_STD3_RULES, &prsError, &status);
+    if(U_FAILURE(status)){
+        log_err("uidna_toUnicode failed with error: %s\n", u_errorName(status));
+    }
+}
 #endif
 
 /*