mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-05 21:45:37 +00:00
ICU-2194 Add test for bug found after after demo
X-SVN-Rev: 11287
This commit is contained in:
parent
f0e57dd303
commit
a204c3713f
2 changed files with 11 additions and 4 deletions
|
@ -325,7 +325,7 @@ static inline void getValues(uint32_t result, int8_t& flag,
|
|||
flag = (int8_t) (result & 0x07);
|
||||
/* next 2 bits contain the length */
|
||||
length = (int8_t) ((result>>3) & 0x03);
|
||||
/* next 10 bits contain the index */
|
||||
/* next 11 bits contain the index */
|
||||
index = (result>> 5);
|
||||
}
|
||||
|
||||
|
@ -346,7 +346,7 @@ compareMapping(uint32_t codepoint, uint32_t* mapping,int32_t mapLength,
|
|||
pTestIDNA->errln( "Did not get the assigned flag for codepoint 0x%08X. Expected: %i Got: %i\n",codepoint, UIDNA_MAP_NFKC, flag);
|
||||
}
|
||||
}else{
|
||||
if(flag=UIDNA_NO_VALUE || flag == UIDNA_PROHIBITED){
|
||||
if(flag==UIDNA_NO_VALUE || flag == UIDNA_PROHIBITED){
|
||||
if(index != _IDNA_MAP_TO_NOTHING ){
|
||||
pTestIDNA->errln( "Did not get the assigned flag for codepoint 0x%08X. Expected: %i Got: %i\n", codepoint, _IDNA_MAP_TO_NOTHING, index);
|
||||
}
|
||||
|
|
|
@ -344,8 +344,12 @@ void TestIDNA::testAPI(const UChar* src, const UChar* expected, const char* test
|
|||
}
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
int32_t tSrcLen = u_strlen(src);
|
||||
UChar* tSrc = (UChar*) uprv_malloc( U_SIZEOF_UCHAR * tSrcLen );
|
||||
uprv_memcpy(tSrc,src,tSrcLen * U_SIZEOF_UCHAR);
|
||||
|
||||
// test source with lengthand return value of number of UChars required
|
||||
destLen = func(src, u_strlen(src),dest,0,options, &parseError, &status);
|
||||
destLen = func(tSrc, tSrcLen, dest,0,options, &parseError, &status);
|
||||
if(status == U_BUFFER_OVERFLOW_ERROR){
|
||||
status = U_ZERO_ERROR; // reset error code
|
||||
if(destLen+1 < MAX_DEST_SIZE){
|
||||
|
@ -365,7 +369,8 @@ void TestIDNA::testAPI(const UChar* src, const UChar* expected, const char* test
|
|||
}
|
||||
|
||||
status = U_ZERO_ERROR;
|
||||
destLen = func(src,u_strlen(src),dest,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
|
||||
|
||||
destLen = func(tSrc,tSrcLen,dest,0,options | UIDNA_ALLOW_UNASSIGNED, &parseError, &status);
|
||||
|
||||
if(status == U_BUFFER_OVERFLOW_ERROR){
|
||||
status = U_ZERO_ERROR; // reset error code
|
||||
|
@ -384,6 +389,8 @@ void TestIDNA::testAPI(const UChar* src, const UChar* expected, const char* test
|
|||
if(status != expectedStatus && expectedStatus != U_IDNA_UNASSIGNED_CODEPOINT_FOUND_ERROR){
|
||||
errln( "Did not get the expected error for %s with source length and options set. Expected: %s Got: %s\n",testName, u_errorName(expectedStatus), u_errorName(status));
|
||||
}
|
||||
|
||||
uprv_free(tSrc);
|
||||
}
|
||||
|
||||
void TestIDNA::testCompare(const UChar* s1, int32_t s1Len,
|
||||
|
|
Loading…
Add table
Reference in a new issue