2 *******************************************************************************
4 * Copyright (C) 2003, International Business Machines
5 * Corporation and others. All Rights Reserved.
7 *******************************************************************************
8 * file name: testidn.cpp
10 * tab size: 8 (not used)
13 * created on: 2003-02-06
14 * created by: Ram Viswanadha
16 * This program reads the rfc3454_*.txt files,
17 * parses them, and extracts the data for Nameprep conformance.
18 * It then preprocesses it and writes a binary file for efficient use
19 * in various IDNA conversion processes.
24 #include "unicode/utypes.h"
26 #if !UCONFIG_NO_IDNA && !UCONFIG_NO_TRANSLITERATION
28 #define USPREP_TYPE_NAMES_ARRAY
30 #include "unicode/uchar.h"
31 #include "unicode/putil.h"
34 #include "unicode/udata.h"
44 UBool beVerbose
=FALSE
, haveCopyright
=TRUE
;
46 /* prototypes --------------------------------------------------------------- */
50 parseMappings(const char *filename
, UBool reportError
,TestIDNA
& test
, UErrorCode
*pErrorCode
);
53 compareMapping(uint32_t codepoint
, uint32_t* mapping
, int32_t mapLength
,
54 UStringPrepType option
);
57 compareFlagsForRange(uint32_t start
, uint32_t end
,UStringPrepType option
);
60 testAllCodepoints(TestIDNA
& test
);
62 static TestIDNA
* pTestIDNA
=NULL
;
64 static const char* fileNames
[] = {
67 static UStringPrepProfile
*profile
= NULL
;
68 static const UTrie
*idnTrie
= NULL
;
69 static const int32_t *indexes
= NULL
;
70 static const uint16_t *mappingData
= NULL
;
71 /* -------------------------------------------------------------------------- */
73 /* file definitions */
74 #define DATA_NAME "uidna"
75 #define DATA_TYPE "icu"
77 #define MISC_DIR "misc"
80 testData(TestIDNA
& test
) {
81 char* filename
= (char*) malloc(strlen(IntlTest::pathToDataDirectory())*5555);
82 //TODO get the srcDir dynamically
83 const char *srcDir
=IntlTest::pathToDataDirectory();
85 UErrorCode errorCode
=U_ZERO_ERROR
;
86 char *saveBasename
=NULL
;
88 profile
= usprep_open(NULL
, DATA_NAME
, &errorCode
);
89 if(U_FAILURE(errorCode
)){
90 test
.errln("Failed to load IDNA data file. " + UnicodeString(u_errorName(errorCode
)));
94 idnTrie
= &profile
->sprepTrie
;
95 indexes
= profile
->indexes
;
96 mappingData
= profile
->mappingData
;
101 /* prepare the filename beginning with the source dir */
102 if(uprv_strchr(srcDir
,U_FILE_SEP_CHAR
) == NULL
){
104 filename
[1] = U_FILE_SEP_CHAR
;
105 uprv_strcpy(filename
+2,srcDir
);
107 uprv_strcpy(filename
, srcDir
);
109 basename
=filename
+uprv_strlen(filename
);
110 if(basename
>filename
&& *(basename
-1)!=U_FILE_SEP_CHAR
) {
111 *basename
++=U_FILE_SEP_CHAR
;
114 /* process unassigned */
115 basename
=filename
+uprv_strlen(filename
);
116 if(basename
>filename
&& *(basename
-1)!=U_FILE_SEP_CHAR
) {
117 *basename
++=U_FILE_SEP_CHAR
;
120 /* first copy misc directory */
121 saveBasename
= basename
;
122 uprv_strcpy(basename
,MISC_DIR
);
123 basename
= basename
+ uprv_strlen(MISC_DIR
);
124 *basename
++=U_FILE_SEP_CHAR
;
126 /* process unassigned */
127 uprv_strcpy(basename
,fileNames
[0]);
128 parseMappings(filename
,TRUE
, test
,&errorCode
);
129 if(U_FAILURE(errorCode
)) {
130 test
.errln( "Could not open file %s for reading \n", filename
);
134 testAllCodepoints(test
);
136 usprep_close(profile
);
143 static void U_CALLCONV
144 strprepProfileLineFn(void * /*context*/,
145 char *fields
[][2], int32_t fieldCount
,
146 UErrorCode
*pErrorCode
) {
147 uint32_t mapping
[40];
151 /*UBool* mapWithNorm = (UBool*) context;*/
152 const char* typeName
;
153 uint32_t rangeStart
=0,rangeEnd
=0;
156 *pErrorCode
= U_INVALID_FORMAT_ERROR
;
160 typeName
= fields
[2][0];
163 if(uprv_strstr(typeName
, usprepTypeNames
[USPREP_UNASSIGNED
])!=NULL
){
165 u_parseCodePointRange(fields
[0][0], &rangeStart
,&rangeEnd
, pErrorCode
);
167 /* store the range */
168 compareFlagsForRange(rangeStart
,rangeEnd
,USPREP_UNASSIGNED
);
170 }else if(uprv_strstr(typeName
, usprepTypeNames
[USPREP_PROHIBITED
])!=NULL
){
172 u_parseCodePointRange(fields
[0][0], &rangeStart
,&rangeEnd
, pErrorCode
);
174 /* store the range */
175 compareFlagsForRange(rangeStart
,rangeEnd
,USPREP_PROHIBITED
);
177 }else if(uprv_strstr(typeName
, usprepTypeNames
[USPREP_MAP
])!=NULL
){
178 /* get the character code, field 0 */
179 code
=(uint32_t)uprv_strtoul(fields
[0][0], &end
, 16);
181 /* parse the mapping string */
182 length
=u_parseCodePoints(map
, mapping
, sizeof(mapping
)/4, pErrorCode
);
184 /* store the mapping */
185 compareMapping(code
,mapping
, length
,USPREP_MAP
);
188 *pErrorCode
= U_INVALID_FORMAT_ERROR
;
196 parseMappings(const char *filename
,UBool reportError
, TestIDNA
& test
, UErrorCode
*pErrorCode
) {
199 if(pErrorCode
==NULL
|| U_FAILURE(*pErrorCode
)) {
203 u_parseDelimitedFile(filename
, ';', fields
, 3, strprepProfileLineFn
, (void*)filename
, pErrorCode
);
205 //fprintf(stdout,"Number of code points that have mappings with length >1 : %i\n",len);
207 if(U_FAILURE(*pErrorCode
) && (reportError
|| *pErrorCode
!=U_FILE_ACCESS_ERROR
)) {
208 test
.errln( "testidn error: u_parseDelimitedFile(\"%s\") failed - %s\n", filename
, u_errorName(*pErrorCode
));
213 static inline UStringPrepType
214 getValues(uint32_t result
, int32_t& value
, UBool
& isIndex
){
216 UStringPrepType type
;
220 * Initial value stored in the mapping table
221 * just return USPREP_TYPE_LIMIT .. so that
222 * the source codepoint is copied to the destination
224 type
= USPREP_TYPE_LIMIT
;
225 }else if(result
>= _SPREP_TYPE_THRESHOLD
){
226 type
= (UStringPrepType
) (result
- _SPREP_TYPE_THRESHOLD
);
230 /* ascertain if the value is index or delta */
233 value
= result
>> 2; //mask off the lower 2 bits and shift
237 value
= (int16_t)result
;
238 value
= (value
>> 2);
241 if((result
>>2) == _SPREP_MAX_INDEX_VALUE
){
242 type
= USPREP_DELETE
;
253 testAllCodepoints(TestIDNA
& test
){
257 0xC138, 0xACC4, 0xC758, 0xBAA8, 0xB4E0, 0xC0AC, 0xB78C, 0xB4E4, 0xC774,
259 0xD55C, 0xAD6D, 0xC5B4, 0xB97C, 0xC774, 0xD574, 0xD55C, 0xB2E4, 0xBA74
261 uint32_t in[19] = {0};
262 UErrorCode status = U_ZERO_ERROR;
263 int32_t inLength=0, outLength=100;
264 char output[100] = {0};
265 punycode_status error;
266 u_strToUTF32((UChar32*)in,19,&inLength,str,19,&status);
268 error= punycode_encode(inLength, in, NULL, (uint32_t*)&outLength, output);
275 int32_t unassigned
= 0;
276 int32_t prohibited
= 0;
277 int32_t mappedWithNorm
= 0;
279 int32_t noValueInTrie
= 0;
281 UStringPrepType type
;
283 UBool isIndex
= FALSE
;
285 for(i
=0;i
<=0x10FFFF;i
++){
287 UTRIE_GET16(idnTrie
,i
, result
);
288 type
= getValues(result
,value
, isIndex
);
289 if(type
!= USPREP_TYPE_LIMIT
){
290 if(type
== USPREP_UNASSIGNED
){
293 if(type
== USPREP_PROHIBITED
){
296 if(type
== USPREP_MAP
){
302 test
.errln("The return value for 0x%06X is wrong. %i\n",i
,result
);
307 test
.logln("Number of Unassinged code points : %i \n",unassigned
);
308 test
.logln("Number of Prohibited code points : %i \n",prohibited
);
309 test
.logln("Number of Mapped code points : %i \n",mapped
);
310 test
.logln("Number of Mapped with NFKC code points : %i \n",mappedWithNorm
);
311 test
.logln("Number of code points that have no value in Trie: %i \n",noValueInTrie
);
317 compareMapping(uint32_t codepoint
, uint32_t* mapping
,int32_t mapLength
,
318 UStringPrepType type
){
320 UTRIE_GET16(idnTrie
,codepoint
, result
);
324 UStringPrepType retType
;
325 int32_t value
, index
=0, delta
=0;
327 retType
= getValues(result
,value
,isIndex
);
330 if(type
!= retType
&& retType
!= USPREP_DELETE
){
332 pTestIDNA
->errln( "Did not get the assigned type for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint
, USPREP_MAP
, type
);
338 if(index
>= indexes
[_SPREP_ONE_UCHAR_MAPPING_INDEX_START
] &&
339 index
< indexes
[_SPREP_TWO_UCHARS_MAPPING_INDEX_START
]){
341 }else if(index
>= indexes
[_SPREP_TWO_UCHARS_MAPPING_INDEX_START
] &&
342 index
< indexes
[_SPREP_THREE_UCHARS_MAPPING_INDEX_START
]){
344 }else if(index
>= indexes
[_SPREP_THREE_UCHARS_MAPPING_INDEX_START
] &&
345 index
< indexes
[_SPREP_FOUR_UCHARS_MAPPING_INDEX_START
]){
348 length
= mappingData
[index
++];
352 length
= (retType
== USPREP_DELETE
)? 0 : 1;
355 int32_t realLength
=0;
356 /* figure out the real length */
357 for(int32_t j
=0; j
<mapLength
; j
++){
358 if(mapping
[j
] > 0xFFFF){
365 if(realLength
!= length
){
366 pTestIDNA
->errln( "Did not get the expected length. Expected: %i Got: %i\n", mapLength
, length
);
370 for(int8_t i
=0; i
< mapLength
; i
++){
371 if(mapping
[i
] <= 0xFFFF){
372 if(mappingData
[index
+i
] != (uint16_t)mapping
[i
]){
373 pTestIDNA
->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping
[i
], mappingData
[index
+i
]);
376 UChar lead
= UTF16_LEAD(mapping
[i
]);
377 UChar trail
= UTF16_TRAIL(mapping
[i
]);
378 if(mappingData
[index
+i
] != lead
||
379 mappingData
[index
+i
+1] != trail
){
380 pTestIDNA
->errln( "Did not get the expected result. Expected: 0x%04X 0x%04X Got: 0x%04X 0x%04X", lead
, trail
, mappingData
[index
+i
], mappingData
[index
+i
+1]);
385 if(retType
!=USPREP_DELETE
&& (codepoint
-delta
) != (uint16_t)mapping
[0]){
386 pTestIDNA
->errln("Did not get the expected result. Expected: 0x%04X Got: 0x%04X \n", mapping
[0],(codepoint
-delta
));
393 compareFlagsForRange(uint32_t start
, uint32_t end
,
394 UStringPrepType type
){
397 UStringPrepType retType
;
401 // supplementary code point
402 UChar __lead16=UTF16_LEAD(0x2323E);
405 // get data for lead surrogate
406 (result)=_UTRIE_GET_RAW((&idnTrie), index, 0, (__lead16));
407 __offset=(&idnTrie)->getFoldingOffset(result);
409 // get the real data from the folded lead/trail units
411 (result)=_UTRIE_GET_RAW((&idnTrie), index, __offset, (0x2323E)&0x3ff);
413 (result)=(uint32_t)((&idnTrie)->initialValue);
416 UTRIE_GET16(&idnTrie,0x2323E, result);
418 while(start
< end
+1){
419 UTRIE_GET16(idnTrie
,start
, result
);
420 retType
= getValues(result
,value
,isIndex
);
421 if(result
> _SPREP_TYPE_THRESHOLD
){
423 pTestIDNA
->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start
,usprepTypeNames
[type
], usprepTypeNames
[retType
]);
426 if(type
== USPREP_PROHIBITED
&& ((result
& 0x01) != 0x01)){
427 pTestIDNA
->errln( "FAIL: Did not get the expected type for 0x%06X. Expected: %s Got: %s\n",start
,usprepTypeNames
[type
], usprepTypeNames
[retType
]);
437 #endif /* #if !UCONFIG_NO_IDNA */
440 * Hey, Emacs, please set the following:
443 * indent-tabs-mode: nil