/********************************************************************
* COPYRIGHT:
- * Copyright (c) 2001-2004, International Business Machines Corporation and
+ * Copyright (c) 2001-2016, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
/********************************************************************************
#include <stdlib.h>
#include <stdio.h>
+#include <string.h>
#include "unicode/utypes.h"
#include "unicode/ustring.h"
#include "unicode/ures.h"
#include "ustr_imp.h"
#include "cintltst.h"
+#include "cmemory.h"
+#include "cstring.h"
#include "cwchar.h"
-#define LENGTHOF(array) (int32_t)(sizeof(array)/sizeof((array)[0]))
-
void addUCharTransformTest(TestNode** root);
-static void Test_UChar_UTF32_API(void);
+static void Test_strToUTF32(void);
+static void Test_strToUTF32_surrogates(void);
+static void Test_strFromUTF32(void);
+static void Test_strFromUTF32_surrogates(void);
static void Test_UChar_UTF8_API(void);
+static void Test_FromUTF8(void);
+static void Test_FromUTF8Lenient(void);
static void Test_UChar_WCHART_API(void);
static void Test_widestrs(void);
static void Test_WCHART_LongString(void);
+static void Test_strToJavaModifiedUTF8(void);
+static void Test_strFromJavaModifiedUTF8(void);
+static void TestNullEmptySource(void);
void
addUCharTransformTest(TestNode** root)
{
- addTest(root, &Test_UChar_UTF32_API, "custrtrn/Test_UChar_UTF32_API");
+ addTest(root, &Test_strToUTF32, "custrtrn/Test_strToUTF32");
+ addTest(root, &Test_strToUTF32_surrogates, "custrtrn/Test_strToUTF32_surrogates");
+ addTest(root, &Test_strFromUTF32, "custrtrn/Test_strFromUTF32");
+ addTest(root, &Test_strFromUTF32_surrogates, "custrtrn/Test_strFromUTF32_surrogates");
addTest(root, &Test_UChar_UTF8_API, "custrtrn/Test_UChar_UTF8_API");
+ addTest(root, &Test_FromUTF8, "custrtrn/Test_FromUTF8");
+ addTest(root, &Test_FromUTF8Lenient, "custrtrn/Test_FromUTF8Lenient");
addTest(root, &Test_UChar_WCHART_API, "custrtrn/Test_UChar_WCHART_API");
addTest(root, &Test_widestrs, "custrtrn/Test_widestrs");
+#if !UCONFIG_NO_FILE_IO && !UCONFIG_NO_LEGACY_CONVERSION
addTest(root, &Test_WCHART_LongString, "custrtrn/Test_WCHART_LongString");
+#endif
+ addTest(root, &Test_strToJavaModifiedUTF8, "custrtrn/Test_strToJavaModifiedUTF8");
+ addTest(root, &Test_strFromJavaModifiedUTF8, "custrtrn/Test_strFromJavaModifiedUTF8");
+ addTest(root, &TestNullEmptySource, "custrtrn/TestNullEmptySource");
}
static const UChar32 src32[]={
};
-static void Test_UChar_UTF32_API(void){
-
+static void Test_strToUTF32(void){
UErrorCode err = U_ZERO_ERROR;
- UChar uTemp[1];
- UChar32 u32Temp[1];
- UChar* uTarget=uTemp;
- const UChar32* u32Src = src32;
- int32_t u32SrcLen = sizeof(src32)/4;
- int32_t uTargetLength = 0;
- int32_t uDestLen=0;
- const UChar* uSrc = src16;
- int32_t uSrcLen = sizeof(src16)/2;
- UChar32* u32Target = u32Temp;
- uint32_t u32TargetLength =0;
- int32_t u32DestLen =0;
- UBool failed = FALSE;
+ UChar32 u32Target[400];
+ int32_t u32DestLen;
int i= 0;
- {
- /* preflight */
- u_strToUTF32(u32Target,u32TargetLength, &u32DestLen, uSrc, uSrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
- err = U_ZERO_ERROR;
- u32Target = (UChar32*) malloc (sizeof(uint32_t) * (u32DestLen+1));
- u32TargetLength = u32DestLen+1;
-
- u_strToUTF32(u32Target,u32TargetLength, &u32DestLen, uSrc, uSrcLen,&err);
- }
- else {
- log_err("Should have gotten U_BUFFER_OVERFLOW_ERROR");
+
+ /* first with length */
+ u32DestLen = -2;
+ u_strToUTF32(u32Target, 0, &u32DestLen, src16, UPRV_LENGTHOF(src16),&err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != UPRV_LENGTHOF(src32)) {
+ log_err("u_strToUTF32(preflight with length): "
+ "length %ld != %ld and %s != U_BUFFER_OVERFLOW_ERROR\n",
+ (long)u32DestLen, (long)UPRV_LENGTHOF(src32), u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ u32DestLen = -2;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(src32)+1, &u32DestLen, src16, UPRV_LENGTHOF(src16),&err);
+ if(err != U_ZERO_ERROR || u32DestLen != UPRV_LENGTHOF(src32)) {
+ log_err("u_strToUTF32(with length): "
+ "length %ld != %ld and %s != U_ZERO_ERROR\n",
+ (long)u32DestLen, (long)UPRV_LENGTHOF(src32), u_errorName(err));
+ return;
+ }
+ /*for(i=0; i< u32DestLen; i++){
+ printf("0x%08X, ",uTarget[i]);
+ if(i%10==0){
+ printf("\n");
}
- failed = FALSE;
- /*for(i=0; i< u32DestLen; i++){
- printf("0x%08X, ",uTarget[i]);
- if(i%10==0){
- printf("\n");
- }
- }*/
- for(i=0; i< u32SrcLen; i++){
- if(u32Target[i] != src32[i]){
- log_verbose("u_strToUTF32() failed expected: \\U%08X got: \\U%08X at index: %i \n", src32[i], u32Target[i],i);
- failed =TRUE;
- }
+ }*/
+ for(i=0; i< UPRV_LENGTHOF(src32); i++){
+ if(u32Target[i] != src32[i]){
+ log_verbose("u_strToUTF32(with length) failed expected: %04X got: %04X at index: %i \n", src32[i], u32Target[i],i);
}
- if(failed){
- log_err("u_strToUTF32() failed \n");
+ }
+ if(u32Target[i] != 0){
+ log_verbose("u_strToUTF32(with length) failed expected: %04X got: %04X at index: %i \n", 0, u32Target[i],i);
+ }
+
+ /* now NUL-terminated */
+ u32DestLen = -2;
+ u_strToUTF32(NULL,0, &u32DestLen, src16, -1,&err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != UPRV_LENGTHOF(src32)-1) {
+ log_err("u_strToUTF32(preflight with NUL-termination): "
+ "length %ld != %ld and %s != U_BUFFER_OVERFLOW_ERROR\n",
+ (long)u32DestLen, (long)UPRV_LENGTHOF(src32)-1, u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ u32DestLen = -2;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(src32), &u32DestLen, src16, -1,&err);
+ if(err != U_ZERO_ERROR || u32DestLen != UPRV_LENGTHOF(src32)-1) {
+ log_err("u_strToUTF32(with NUL-termination): "
+ "length %ld != %ld and %s != U_ZERO_ERROR\n",
+ (long)u32DestLen, (long)UPRV_LENGTHOF(src32)-1, u_errorName(err));
+ return;
+ }
+
+ for(i=0; i< UPRV_LENGTHOF(src32); i++){
+ if(u32Target[i] != src32[i]){
+ log_verbose("u_strToUTF32(NUL-termination) failed expected: %04X got: %04X \n", src32[i], u32Target[i]);
}
+ }
+}
- /* preflight */
- u_strFromUTF32(uTarget,uTargetLength,&uDestLen,u32Src,u32SrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
- err = U_ZERO_ERROR;
- uTarget = (UChar*) malloc( sizeof(UChar) * (uDestLen+1));
- uTargetLength = uDestLen+1;
- u_strFromUTF32(uTarget,uTargetLength,&uDestLen,u32Src,u32SrcLen,&err);
+/* test unpaired surrogates */
+static void Test_strToUTF32_surrogates() {
+ UErrorCode err = U_ZERO_ERROR;
+ UChar32 u32Target[400];
+ int32_t len16, u32DestLen;
+ int32_t numSubstitutions;
+ int i;
+
+ static const UChar surr16[] = { 0x41, 0xd900, 0x61, 0xdc00, 0x5a, 0xd900, 0xdc00, 0x7a, 0 };
+ static const UChar32 expected[] = { 0x5a, 0x50000, 0x7a, 0 };
+ static const UChar32 expected_FFFD[] = { 0x41, 0xfffd, 0x61, 0xfffd, 0x5a, 0x50000, 0x7a, 0 };
+ static const UChar32 expected_12345[] = { 0x41, 0x12345, 0x61, 0x12345, 0x5a, 0x50000, 0x7a, 0 };
+ len16 = UPRV_LENGTHOF(surr16);
+ for(i = 0; i < 4; ++i) {
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, 0, &u32DestLen, surr16+i, len16-i, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strToUTF32(preflight surr16+%ld) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16+i, len16-i, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strToUTF32(surr16+%ld) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
- /*for(i=0; i< uDestLen; i++){
- printf("0x%04X, ",uTarget[i]);
- if(i%10==0){
- printf("\n");
- }
- }*/
-
- for(i=0; i< uDestLen; i++){
- if(uTarget[i] != src16[i]){
- log_verbose("u_strFromUTF32() failed expected: \\U%08X got: \\U%08X at index: %i \n", src16[i] ,uTarget[i],i);
- failed =TRUE;
- }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32(NULL, 0, &u32DestLen, surr16+i, -1, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strToUTF32(preflight surr16+%ld/NUL) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
- if(failed){
- log_err("u_strToUTF32() failed \n");
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16+i, -1, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strToUTF32(surr16+%ld/NUL) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
+ }
- free(u32Target);
- free(uTarget);
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, 0, &u32DestLen, surr16+4, len16-4-1, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != 3) {
+ log_err("u_strToUTF32(preflight surr16+4) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
}
- {
- u32SrcLen = -1;
- uTargetLength = 0;
- uSrcLen =-1;
- u32TargetLength=0;
- failed = FALSE;
- /* preflight */
- u_strToUTF32(NULL,u32TargetLength, &u32DestLen, uSrc, uSrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
- err = U_ZERO_ERROR;
- u32Target = (UChar32*) malloc (sizeof(uint32_t) * (u32DestLen+1));
- u32TargetLength = u32DestLen+1;
-
- u_strToUTF32(u32Target,u32TargetLength, &u32DestLen, uSrc, uSrcLen,&err);
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16+4, len16-4-1, &err);
+ if(err != U_ZERO_ERROR || u32DestLen != 3 || uprv_memcmp(u32Target, expected, 4*4)) {
+ log_err("u_strToUTF32(surr16+4) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32(NULL, 0, &u32DestLen, surr16+4, -1, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != 3) {
+ log_err("u_strToUTF32(preflight surr16+4/NUL) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16+4, -1, &err);
+ if(err != U_ZERO_ERROR || u32DestLen != 3 || uprv_memcmp(u32Target, expected, 4*4)) {
+ log_err("u_strToUTF32(surr16+4/NUL) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+
+ /* with substitution character */
+ numSubstitutions = -1;
+ err = U_ZERO_ERROR;
+ u_strToUTF32WithSub(u32Target, 0, &u32DestLen, surr16, len16-1, 0xfffd, &numSubstitutions, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != 7 || numSubstitutions != 2) {
+ log_err("u_strToUTF32WithSub(preflight surr16) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32WithSub(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16, len16-1, 0xfffd, &numSubstitutions, &err);
+ if(err != U_ZERO_ERROR || u32DestLen != 7 || numSubstitutions != 2 || uprv_memcmp(u32Target, expected_FFFD, 8*4)) {
+ log_err("u_strToUTF32WithSub(surr16) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32WithSub(NULL, 0, &u32DestLen, surr16, -1, 0x12345, &numSubstitutions, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || u32DestLen != 7 || numSubstitutions != 2) {
+ log_err("u_strToUTF32WithSub(preflight surr16/NUL) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strToUTF32WithSub(u32Target, UPRV_LENGTHOF(u32Target), &u32DestLen, surr16, -1, 0x12345, &numSubstitutions, &err);
+ if(err != U_ZERO_ERROR || u32DestLen != 7 || numSubstitutions != 2 || uprv_memcmp(u32Target, expected_12345, 8*4)) {
+ log_err("u_strToUTF32WithSub(surr16/NUL) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+}
+
+static void Test_strFromUTF32(void){
+ UErrorCode err = U_ZERO_ERROR;
+ UChar uTarget[400];
+ int32_t uDestLen;
+ int i= 0;
+
+ /* first with length */
+ uDestLen = -2;
+ u_strFromUTF32(uTarget,0,&uDestLen,src32,UPRV_LENGTHOF(src32),&err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != UPRV_LENGTHOF(src16)) {
+ log_err("u_strFromUTF32(preflight with length): "
+ "length %ld != %ld and %s != U_BUFFER_OVERFLOW_ERROR\n",
+ (long)uDestLen, (long)UPRV_LENGTHOF(src16), u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ uDestLen = -2;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(src16)+1,&uDestLen,src32,UPRV_LENGTHOF(src32),&err);
+ if(err != U_ZERO_ERROR || uDestLen != UPRV_LENGTHOF(src16)) {
+ log_err("u_strFromUTF32(with length): "
+ "length %ld != %ld and %s != U_ZERO_ERROR\n",
+ (long)uDestLen, (long)UPRV_LENGTHOF(src16), u_errorName(err));
+ return;
+ }
+ /*for(i=0; i< uDestLen; i++){
+ printf("0x%04X, ",uTarget[i]);
+ if(i%10==0){
+ printf("\n");
}
- else {
- log_err("Should have gotten U_BUFFER_OVERFLOW_ERROR");
+ }*/
+
+ for(i=0; i< uDestLen; i++){
+ if(uTarget[i] != src16[i]){
+ log_verbose("u_strFromUTF32(with length) failed expected: %04X got: %04X at index: %i \n", src16[i] ,uTarget[i],i);
}
- failed = FALSE;
+ }
+ if(uTarget[i] != 0){
+ log_verbose("u_strFromUTF32(with length) failed expected: %04X got: %04X at index: %i \n", 0,uTarget[i],i);
+ }
- for(i=0; i< u32SrcLen; i++){
- if(u32Target[i] != src32[i]){
- log_verbose("u_strToUTF32() failed expected: \\U%08X got: \\U%08X \n", src32[i], u32Target[i]);
- failed =TRUE;
- }
- }
- if(failed){
- log_err("u_strToUTF32() failed \n");
+ /* now NUL-terminated */
+ uDestLen = -2;
+ u_strFromUTF32(NULL,0,&uDestLen,src32,-1,&err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != UPRV_LENGTHOF(src16)-1) {
+ log_err("u_strFromUTF32(preflight with NUL-termination): "
+ "length %ld != %ld and %s != U_BUFFER_OVERFLOW_ERROR\n",
+ (long)uDestLen, (long)UPRV_LENGTHOF(src16)-1, u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ uDestLen = -2;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(src16),&uDestLen,src32,-1,&err);
+ if(err != U_ZERO_ERROR || uDestLen != UPRV_LENGTHOF(src16)-1) {
+ log_err("u_strFromUTF32(with NUL-termination): "
+ "length %ld != %ld and %s != U_ZERO_ERROR\n",
+ (long)uDestLen, (long)UPRV_LENGTHOF(src16)-1, u_errorName(err));
+ return;
+ }
+
+ for(i=0; i< uDestLen; i++){
+ if(uTarget[i] != src16[i]){
+ log_verbose("u_strFromUTF32(with NUL-termination) failed expected: %04X got: %04X \n", src16[i] ,uTarget[i]);
}
+ }
+}
- /* preflight */
- u_strFromUTF32(NULL,uTargetLength,&uDestLen,u32Src,u32SrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
- err = U_ZERO_ERROR;
- uTarget = (UChar*) malloc( sizeof(UChar) * (uDestLen+1));
- uTargetLength = uDestLen+1;
- u_strFromUTF32(uTarget,uTargetLength,&uDestLen,u32Src,u32SrcLen,&err);
+/* test surrogate code points */
+static void Test_strFromUTF32_surrogates() {
+ UErrorCode err = U_ZERO_ERROR;
+ UChar uTarget[400];
+ int32_t len32, uDestLen;
+ int32_t numSubstitutions;
+ int i;
+
+ static const UChar32 surr32[] = { 0x41, 0xd900, 0x61, 0xdc00, -1, 0x110000, 0x5a, 0x50000, 0x7a, 0 };
+ static const UChar expected[] = { 0x5a, 0xd900, 0xdc00, 0x7a, 0 };
+ static const UChar expected_FFFD[] = { 0x41, 0xfffd, 0x61, 0xfffd, 0xfffd, 0xfffd, 0x5a, 0xd900, 0xdc00, 0x7a, 0 };
+ static const UChar expected_12345[] = { 0x41, 0xd808, 0xdf45, 0x61, 0xd808, 0xdf45, 0xd808, 0xdf45, 0xd808, 0xdf45,
+ 0x5a, 0xd900, 0xdc00, 0x7a, 0 };
+ len32 = UPRV_LENGTHOF(surr32);
+ for(i = 0; i < 6; ++i) {
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, 0, &uDestLen, surr32+i, len32-i, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strFromUTF32(preflight surr32+%ld) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
+ }
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32+i, len32-i, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strFromUTF32(surr32+%ld) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
-
- for(i=0; i< uDestLen; i++){
- if(uTarget[i] != src16[i]){
- log_verbose("u_strFromUTF32() failed expected: \\U%08X got: \\U%08X \n", src16[i] ,uTarget[i]);
- failed =TRUE;
- }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(NULL, 0, &uDestLen, surr32+i, -1, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strFromUTF32(preflight surr32+%ld/NUL) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
- if(failed){
- log_err("u_strToUTF32() failed \n");
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32+i, -1, &err);
+ if(err != U_INVALID_CHAR_FOUND) {
+ log_err("u_strFromUTF32(surr32+%ld/NUL) sets %s != U_INVALID_CHAR_FOUND\n",
+ (long)i, u_errorName(err));
+ return;
}
+ }
- free(u32Target);
- free(uTarget);
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, 0, &uDestLen, surr32+6, len32-6-1, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != 4) {
+ log_err("u_strFromUTF32(preflight surr32+6) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32+6, len32-6-1, &err);
+ if(err != U_ZERO_ERROR || uDestLen != 4 || u_memcmp(uTarget, expected, 5)) {
+ log_err("u_strFromUTF32(surr32+6) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
}
-}
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(NULL, 0, &uDestLen, surr32+6, -1, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != 4) {
+ log_err("u_strFromUTF32(preflight surr32+6/NUL) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32+6, -1, &err);
+ if(err != U_ZERO_ERROR || uDestLen != 4 || u_memcmp(uTarget, expected, 5)) {
+ log_err("u_strFromUTF32(surr32+6/NUL) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+
+ /* with substitution character */
+ numSubstitutions = -1;
+ err = U_ZERO_ERROR;
+ u_strFromUTF32WithSub(uTarget, 0, &uDestLen, surr32, len32-1, 0xfffd, &numSubstitutions, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != 10 || numSubstitutions != 4) {
+ log_err("u_strFromUTF32WithSub(preflight surr32) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32WithSub(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32, len32-1, 0xfffd, &numSubstitutions, &err);
+ if(err != U_ZERO_ERROR || uDestLen != 10 || numSubstitutions != 4 || u_memcmp(uTarget, expected_FFFD, 11)) {
+ log_err("u_strFromUTF32WithSub(surr32) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32WithSub(NULL, 0, &uDestLen, surr32, -1, 0x12345, &numSubstitutions, &err);
+ if(err != U_BUFFER_OVERFLOW_ERROR || uDestLen != 14 || numSubstitutions != 4) {
+ log_err("u_strFromUTF32WithSub(preflight surr32/NUL) sets %s != U_BUFFER_OVERFLOW_ERROR or an unexpected length\n",
+ u_errorName(err));
+ return;
+ }
+
+ err = U_ZERO_ERROR;
+ u_strFromUTF32WithSub(uTarget, UPRV_LENGTHOF(uTarget), &uDestLen, surr32, -1, 0x12345, &numSubstitutions, &err);
+ if(err != U_ZERO_ERROR || uDestLen != 14 || numSubstitutions != 4 || u_memcmp(uTarget, expected_12345, 15)) {
+ log_err("u_strFromUTF32WithSub(surr32/NUL) sets %s != U_ZERO_ERROR or does not produce the expected string\n",
+ u_errorName(err));
+ return;
+ }
+}
static void Test_UChar_UTF8_API(void){
int32_t u8DestLen =0;
UBool failed = FALSE;
int i= 0;
+ int32_t numSubstitutions;
+
{
/* preflight */
+ u8Temp[0] = 0x12;
u_strToUTF8(u8Target,u8TargetLength, &u8DestLen, uSrc, uSrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
+ if(err == U_BUFFER_OVERFLOW_ERROR && u8Temp[0] == 0x12){
err = U_ZERO_ERROR;
u8Target = (char*) malloc (sizeof(uint8_t) * (u8DestLen+1));
u8TargetLength = u8DestLen;
-
+
+ u8Target[u8TargetLength] = (char)0xfe;
+ u8DestLen = -1;
u_strToUTF8(u8Target,u8TargetLength, &u8DestLen, uSrc, uSrcLen,&err);
- if(U_FAILURE(err)){
+ if(U_FAILURE(err) || u8DestLen != u8TargetLength || u8Target[u8TargetLength] != (char)0xfe){
log_err("u_strToUTF8 failed after preflight. Error: %s\n", u_errorName(err));
return;
}
}*/
/*for(i=0; i< u8DestLen; i++){
if(u8Target[i] != src8[i]){
- log_verbose("u_strToUTF8() failed expected: \\U%08X got: \\U%08X \n", src8[i], u8Target[i]);
+ log_verbose("u_strToUTF8() failed expected: %04X got: %04X \n", src8[i], u8Target[i]);
failed =TRUE;
}
}
u8SrcLen = u8DestLen;
/* preflight */
+ uTemp[0] = 0x1234;
u_strFromUTF8(uTarget,uTargetLength,&uDestLen,u8Src,u8SrcLen,&err);
- if(err == U_BUFFER_OVERFLOW_ERROR){
+ if(err == U_BUFFER_OVERFLOW_ERROR && uTemp[0] == 0x1234){
err = U_ZERO_ERROR;
uTarget = (UChar*) malloc( sizeof(UChar) * (uDestLen+1));
uTargetLength = uDestLen;
+ uTarget[uTargetLength] = 0xfff0;
+ uDestLen = -1;
u_strFromUTF8(uTarget,uTargetLength,&uDestLen,u8Src,u8SrcLen,&err);
}
else {
- log_err("Should have gotten U_BUFFER_OVERFLOW_ERROR");
+ log_err("error: u_strFromUTF8(preflight) should have gotten U_BUFFER_OVERFLOW_ERROR\n");
}
/*for(i=0; i< uDestLen; i++){
printf("0x%04X, ",uTarget[i]);
printf("\n");
}
}*/
-
+
+ if(U_FAILURE(err) || uDestLen != uTargetLength || uTarget[uTargetLength] != 0xfff0) {
+ failed = TRUE;
+ }
for(i=0; i< uSrcLen; i++){
if(uTarget[i] != src16[i]){
log_verbose("u_strFromUTF8() failed expected: \\u%04X got: \\u%04X at index: %i \n", src16[i] ,uTarget[i],i);
}
}
if(failed){
- log_err("u_strToUTF8() failed \n");
+ log_err("error: u_strFromUTF8(after preflighting) failed\n");
}
free(u8Target);
}*/
/*for(i=0; i< u8DestLen; i++){
if(u8Target[i] != src8[i]){
- log_verbose("u_strToUTF8() failed expected: \\U%08X got: \\U%08X \n", src8[i], u8Target[i]);
+ log_verbose("u_strToUTF8() failed expected: %04X got: %04X \n", src8[i], u8Target[i]);
failed =TRUE;
}
}
{
static const UChar
withLead16[]={ 0x1800, 0xd89a, 0x0061 },
- withTrail16[]={ 0x1800, 0xdcba, 0x0061, 0 };
+ withTrail16[]={ 0x1800, 0xdcba, 0x0061, 0 },
+ withTrail16SubFFFD[]={ 0x1800, 0xfffd, 0x0061, 0 }, /* sub==U+FFFD */
+ withTrail16Sub50005[]={ 0x1800, 0xd900, 0xdc05, 0x0061, 0 }; /* sub==U+50005 */
static const uint8_t
withLead8[]={ 0xe1, 0xa0, 0x80, 0xed, 0xa2, 0x9a, 0x61 },
- withTrail8[]={ 0xe1, 0xa0, 0x80, 0xed, 0xb2, 0xba, 0x61 };
+ withTrail8[]={ 0xe1, 0xa0, 0x80, 0xed, 0xb2, 0xba, 0x61, 0 },
+ withTrail8Sub1A[]={ 0xe1, 0xa0, 0x80, 0x1a, 0x61, 0 }, /* sub==U+001A */
+ withTrail8SubFFFD[]={ 0xe1, 0xa0, 0x80, 0xef, 0xbf, 0xbd, 0x61, 0 }; /* sub==U+FFFD */
UChar out16[10];
char out8[10];
if(
- (err=U_ZERO_ERROR, u_strToUTF8(out8, LENGTHOF(out8), NULL, withLead16, LENGTHOF(withLead16), &err), err!=U_INVALID_CHAR_FOUND) ||
- (err=U_ZERO_ERROR, u_strToUTF8(out8, LENGTHOF(out8), NULL, withTrail16, -1, &err), err!=U_INVALID_CHAR_FOUND) ||
- (err=U_ZERO_ERROR, u_strFromUTF8(out16, LENGTHOF(out16), NULL, (const char *)withLead8, LENGTHOF(withLead8), &err), err!=U_INVALID_CHAR_FOUND) ||
- (err=U_ZERO_ERROR, u_strFromUTF8(out16, LENGTHOF(out16), NULL, (const char *)withTrail8, -1, &err), err!=U_INVALID_CHAR_FOUND)
+ (err=U_ZERO_ERROR, u_strToUTF8(out8, UPRV_LENGTHOF(out8), NULL, withLead16, UPRV_LENGTHOF(withLead16), &err), err!=U_INVALID_CHAR_FOUND) ||
+ (err=U_ZERO_ERROR, u_strToUTF8(out8, UPRV_LENGTHOF(out8), NULL, withTrail16, -1, &err), err!=U_INVALID_CHAR_FOUND) ||
+ (err=U_ZERO_ERROR, u_strFromUTF8(out16, UPRV_LENGTHOF(out16), NULL, (const char *)withLead8, UPRV_LENGTHOF(withLead8), &err), err!=U_INVALID_CHAR_FOUND) ||
+ (err=U_ZERO_ERROR, u_strFromUTF8(out16, UPRV_LENGTHOF(out16), NULL, (const char *)withTrail8, -1, &err), err!=U_INVALID_CHAR_FOUND)
) {
log_err("error: u_strTo/FromUTF8(string with single surrogate) fails to report error\n");
}
+
+ /* test error handling with substitution characters */
+
+ /* from UTF-8 with length */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out16[0]=0x55aa;
+ uDestLen=0;
+ u_strFromUTF8WithSub(out16, UPRV_LENGTHOF(out16), &uDestLen,
+ (const char *)withTrail8, uprv_strlen((const char *)withTrail8),
+ 0x50005, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || uDestLen!=u_strlen(withTrail16Sub50005) ||
+ 0!=u_memcmp(withTrail16Sub50005, out16, uDestLen+1) ||
+ numSubstitutions!=1) {
+ log_err("error: u_strFromUTF8WithSub(length) failed\n");
+ }
+
+ /* from UTF-8 with NUL termination */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out16[0]=0x55aa;
+ uDestLen=0;
+ u_strFromUTF8WithSub(out16, UPRV_LENGTHOF(out16), &uDestLen,
+ (const char *)withTrail8, -1,
+ 0xfffd, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || uDestLen!=u_strlen(withTrail16SubFFFD) ||
+ 0!=u_memcmp(withTrail16SubFFFD, out16, uDestLen+1) ||
+ numSubstitutions!=1) {
+ log_err("error: u_strFromUTF8WithSub(NUL termination) failed\n");
+ }
+
+ /* preflight from UTF-8 with NUL termination */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out16[0]=0x55aa;
+ uDestLen=0;
+ u_strFromUTF8WithSub(out16, 1, &uDestLen,
+ (const char *)withTrail8, -1,
+ 0x50005, &numSubstitutions,
+ &err);
+ if(err!=U_BUFFER_OVERFLOW_ERROR || uDestLen!=u_strlen(withTrail16Sub50005) || numSubstitutions!=1) {
+ log_err("error: u_strFromUTF8WithSub(preflight/NUL termination) failed\n");
+ }
+
+ /* to UTF-8 with length */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out8[0]=(char)0xf5;
+ u8DestLen=0;
+ u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen,
+ withTrail16, u_strlen(withTrail16),
+ 0xfffd, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || u8DestLen!=uprv_strlen((const char *)withTrail8SubFFFD) ||
+ 0!=uprv_memcmp((const char *)withTrail8SubFFFD, out8, u8DestLen+1) ||
+ numSubstitutions!=1) {
+ log_err("error: u_strToUTF8WithSub(length) failed\n");
+ }
+
+ /* to UTF-8 with NUL termination */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out8[0]=(char)0xf5;
+ u8DestLen=0;
+ u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen,
+ withTrail16, -1,
+ 0x1a, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || u8DestLen!=uprv_strlen((const char *)withTrail8Sub1A) ||
+ 0!=uprv_memcmp((const char *)withTrail8Sub1A, out8, u8DestLen+1) ||
+ numSubstitutions!=1) {
+ log_err("error: u_strToUTF8WithSub(NUL termination) failed\n");
+ }
+
+ /* preflight to UTF-8 with NUL termination */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out8[0]=(char)0xf5;
+ u8DestLen=0;
+ u_strToUTF8WithSub(out8, 1, &u8DestLen,
+ withTrail16, -1,
+ 0xfffd, &numSubstitutions,
+ &err);
+ if(err!=U_BUFFER_OVERFLOW_ERROR || u8DestLen!=uprv_strlen((const char *)withTrail8SubFFFD) ||
+ numSubstitutions!=1) {
+ log_err("error: u_strToUTF8WithSub(preflight/NUL termination) failed\n");
+ }
+
+ /* test that numSubstitutions==0 if there are no substitutions */
+
+ /* from UTF-8 with length (just first 3 bytes which are valid) */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out16[0]=0x55aa;
+ uDestLen=0;
+ u_strFromUTF8WithSub(out16, UPRV_LENGTHOF(out16), &uDestLen,
+ (const char *)withTrail8, 3,
+ 0x50005, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || uDestLen!=1 ||
+ 0!=u_memcmp(withTrail16Sub50005, out16, uDestLen) ||
+ numSubstitutions!=0) {
+ log_err("error: u_strFromUTF8WithSub(no subs) failed\n");
+ }
+
+ /* to UTF-8 with length (just first UChar which is valid) */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out8[0]=(char)0xf5;
+ u8DestLen=0;
+ u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen,
+ withTrail16, 1,
+ 0xfffd, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || u8DestLen!=3 ||
+ 0!=uprv_memcmp((const char *)withTrail8SubFFFD, out8, u8DestLen) ||
+ numSubstitutions!=0) {
+ log_err("error: u_strToUTF8WithSub(no subs) failed\n");
+ }
+
+ /* test that numSubstitutions==0 if subchar==U_SENTINEL (no subchar) */
+
+ /* from UTF-8 with length (just first 3 bytes which are valid) */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out16[0]=0x55aa;
+ uDestLen=0;
+ u_strFromUTF8WithSub(out16, UPRV_LENGTHOF(out16), &uDestLen,
+ (const char *)withTrail8, 3,
+ U_SENTINEL, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || uDestLen!=1 ||
+ 0!=u_memcmp(withTrail16Sub50005, out16, uDestLen) ||
+ numSubstitutions!=0) {
+ log_err("error: u_strFromUTF8WithSub(no subchar) failed\n");
+ }
+
+ /* to UTF-8 with length (just first UChar which is valid) */
+ err=U_ZERO_ERROR;
+ numSubstitutions=-1;
+ out8[0]=(char)0xf5;
+ u8DestLen=0;
+ u_strToUTF8WithSub(out8, UPRV_LENGTHOF(out8), &u8DestLen,
+ withTrail16, 1,
+ U_SENTINEL, &numSubstitutions,
+ &err);
+ if(U_FAILURE(err) || u8DestLen!=3 ||
+ 0!=uprv_memcmp((const char *)withTrail8SubFFFD, out8, u8DestLen) ||
+ numSubstitutions!=0) {
+ log_err("error: u_strToUTF8WithSub(no subchar) failed\n");
+ }
+ }
+ {
+ /*
+ * Test with an illegal lead byte that would be followed by more than 3 trail bytes.
+ * See ticket #10371.
+ */
+ static const char src[1]={ (char)0xf8 };
+ UChar out16[10];
+ err=U_ZERO_ERROR;
+ u_strFromUTF8(out16, UPRV_LENGTHOF(out16), NULL, src, 1, &err);
+ if(err!=U_INVALID_CHAR_FOUND) {
+ log_err("error: u_strFromUTF8(5-byte lead byte) failed\n");
+ }
}
}
+
+/* compare if two strings are equal, but match 0xfffd in the second string with anything in the first */
+static UBool
+equalAnyFFFD(const UChar *s, const UChar *t, int32_t length) {
+ UChar c1, c2;
+
+ while(length>0) {
+ c1=*s++;
+ c2=*t++;
+ if(c1!=c2 && c2!=0xfffd) {
+ return FALSE;
+ }
+ --length;
+ }
+ return TRUE;
+}
+
+/* test u_strFromUTF8Lenient() */
+static void
+Test_FromUTF8(void) {
+ /*
+ * Test case from icu-support list 20071130 "u_strFromUTF8() returns U_INVALID_CHAR_FOUND(10)"
+ */
+ static const uint8_t bytes[]={ 0xe0, 0xa5, 0x9c, 0 };
+ UChar dest[64];
+ UChar *destPointer;
+ int32_t destLength;
+ UErrorCode errorCode;
+
+ /* 3 bytes input, one UChar output (U+095C) */
+ errorCode=U_ZERO_ERROR;
+ destLength=-99;
+ destPointer=u_strFromUTF8(NULL, 0, &destLength, (const char *)bytes, 3, &errorCode);
+ if(errorCode!=U_BUFFER_OVERFLOW_ERROR || destPointer!=NULL || destLength!=1) {
+ log_err("error: u_strFromUTF8(preflight srcLength=3) fails: destLength=%ld - %s\n",
+ (long)destLength, u_errorName(errorCode));
+ }
+
+ /* 4 bytes input, two UChars output (U+095C U+0000) */
+ errorCode=U_ZERO_ERROR;
+ destLength=-99;
+ destPointer=u_strFromUTF8(NULL, 0, &destLength, (const char *)bytes, 4, &errorCode);
+ if(errorCode!=U_BUFFER_OVERFLOW_ERROR || destPointer!=NULL || destLength!=2) {
+ log_err("error: u_strFromUTF8(preflight srcLength=4) fails: destLength=%ld - %s\n",
+ (long)destLength, u_errorName(errorCode));
+ }
+
+ /* NUL-terminated 3 bytes input, one UChar output (U+095C) */
+ errorCode=U_ZERO_ERROR;
+ destLength=-99;
+ destPointer=u_strFromUTF8(NULL, 0, &destLength, (const char *)bytes, -1, &errorCode);
+ if(errorCode!=U_BUFFER_OVERFLOW_ERROR || destPointer!=NULL || destLength!=1) {
+ log_err("error: u_strFromUTF8(preflight srcLength=-1) fails: destLength=%ld - %s\n",
+ (long)destLength, u_errorName(errorCode));
+ }
+
+ /* 3 bytes input, one UChar output (U+095C), transform not just preflight */
+ errorCode=U_ZERO_ERROR;
+ dest[0]=dest[1]=99;
+ destLength=-99;
+ destPointer=u_strFromUTF8(dest, UPRV_LENGTHOF(dest), &destLength, (const char *)bytes, 3, &errorCode);
+ if(U_FAILURE(errorCode) || destPointer!=dest || destLength!=1 || dest[0]!=0x95c || dest[1]!=0) {
+ log_err("error: u_strFromUTF8(transform srcLength=3) fails: destLength=%ld - %s\n",
+ (long)destLength, u_errorName(errorCode));
+ }
+}
+
+/* test u_strFromUTF8Lenient() */
+static void
+Test_FromUTF8Lenient(void) {
+ /*
+ * Multiple input strings, each NUL-terminated.
+ * Terminate with a string starting with 0xff.
+ */
+ static const uint8_t bytes[]={
+ /* well-formed UTF-8 */
+ 0x61, 0xc3, 0x9f, 0xe0, 0xa0, 0x80, 0xf0, 0xa0, 0x80, 0x80,
+ 0x62, 0xc3, 0xa0, 0xe0, 0xa0, 0x81, 0xf0, 0xa0, 0x80, 0x81, 0,
+
+ /* various malformed sequences */
+ 0xc3, 0xc3, 0x9f, 0xc3, 0xa0, 0xe0, 0x80, 0x8a, 0xf0, 0x41, 0x42, 0x43, 0,
+
+ /* truncated input */
+ 0xc3, 0,
+ 0xe0, 0,
+ 0xe0, 0xa0, 0,
+ 0xf0, 0,
+ 0xf0, 0x90, 0,
+ 0xf0, 0x90, 0x80, 0,
+
+ /* non-ASCII characters in the last few bytes */
+ 0x61, 0xc3, 0x9f, 0xe0, 0xa0, 0x80, 0,
+ 0x61, 0xe0, 0xa0, 0x80, 0xc3, 0x9f, 0,
+
+ /* empty string */
+ 0,
+
+ /* finish */
+ 0xff, 0
+ };
+
+ /* Multiple output strings, each NUL-terminated. 0xfffd matches anything. */
+ static const UChar uchars[]={
+ 0x61, 0xdf, 0x800, 0xd840, 0xdc00,
+ 0x62, 0xe0, 0x801, 0xd840, 0xdc01, 0,
+
+ 0xfffd, 0x9f, 0xe0, 0xa, 0xfffd, 0xfffd, 0,
+
+ 0xfffd, 0,
+ 0xfffd, 0,
+ 0xfffd, 0,
+ 0xfffd, 0,
+ 0xfffd, 0,
+ 0xfffd, 0,
+
+ 0x61, 0xdf, 0x800, 0,
+ 0x61, 0x800, 0xdf, 0,
+
+ 0,
+
+ 0
+ };
+
+ UChar dest[64];
+ const char *pb;
+ const UChar *pu, *pDest;
+ int32_t srcLength, destLength0, destLength;
+ int number;
+ UErrorCode errorCode;
+
+ /* verify checking for some illegal arguments */
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, 1, &destLength, NULL, -1, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0x1234) {
+ log_err("u_strFromUTF8Lenient(src=NULL) failed\n");
+ }
+
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(NULL, 1, &destLength, (const char *)bytes, -1, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR) {
+ log_err("u_strFromUTF8Lenient(dest=NULL[1]) failed\n");
+ }
+
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_MEMORY_ALLOCATION_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, &errorCode);
+ if(errorCode!=U_MEMORY_ALLOCATION_ERROR || dest[0]!=0x1234) {
+ log_err("u_strFromUTF8Lenient(U_MEMORY_ALLOCATION_ERROR) failed\n");
+ }
+
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_MEMORY_ALLOCATION_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, 1, &destLength, (const char *)bytes, -1, NULL);
+ if(dest[0]!=0x1234) {
+ log_err("u_strFromUTF8Lenient(pErrorCode=NULL) failed\n");
+ }
+
+ /* test normal behavior */
+ number=0; /* string number for log_err() */
+
+ for(pb=(const char *)bytes, pu=uchars;
+ *pb!=(char)0xff;
+ pb+=srcLength+1, pu+=destLength0+1, ++number
+ ) {
+ srcLength=uprv_strlen(pb);
+ destLength0=u_strlen(pu);
+
+ /* preflighting with NUL-termination */
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, -1, &errorCode);
+ if (errorCode!= (destLength0==0 ? U_STRING_NOT_TERMINATED_WARNING : U_BUFFER_OVERFLOW_ERROR) ||
+ pDest!=NULL || dest[0]!=0x1234 || destLength!=destLength0
+ ) {
+ log_err("u_strFromUTF8Lenient(%d preflighting with NUL-termination) failed\n", number);
+ }
+
+ /* preflighting/some capacity with NUL-termination */
+ if(srcLength>0) {
+ dest[destLength0-1]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, destLength0-1, &destLength, pb, -1, &errorCode);
+ if (errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ dest[destLength0-1]!=0x1234 || destLength!=destLength0
+ ) {
+ log_err("u_strFromUTF8Lenient(%d preflighting/some capacity with NUL-termination) failed\n", number);
+ }
+ }
+
+ /* conversion with NUL-termination, much capacity */
+ dest[0]=dest[destLength0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, -1, &errorCode);
+ if (errorCode!=U_ZERO_ERROR ||
+ pDest!=dest || dest[destLength0]!=0 ||
+ destLength!=destLength0 || !equalAnyFFFD(dest, pu, destLength)
+ ) {
+ log_err("u_strFromUTF8Lenient(%d conversion with NUL-termination, much capacity) failed\n", number);
+ }
+
+ /* conversion with NUL-termination, exact capacity */
+ dest[0]=dest[destLength0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, destLength0, &destLength, pb, -1, &errorCode);
+ if (errorCode!=U_STRING_NOT_TERMINATED_WARNING ||
+ pDest!=dest || dest[destLength0]!=0x1234 ||
+ destLength!=destLength0 || !equalAnyFFFD(dest, pu, destLength)
+ ) {
+ log_err("u_strFromUTF8Lenient(%d conversion with NUL-termination, exact capacity) failed\n", number);
+ }
+
+ /* preflighting with length */
+ dest[0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(NULL, 0, &destLength, pb, srcLength, &errorCode);
+ if (errorCode!= (destLength0==0 ? U_STRING_NOT_TERMINATED_WARNING : U_BUFFER_OVERFLOW_ERROR) ||
+ pDest!=NULL || dest[0]!=0x1234 || destLength!=srcLength
+ ) {
+ log_err("u_strFromUTF8Lenient(%d preflighting with length) failed\n", number);
+ }
+
+ /* preflighting/some capacity with length */
+ if(srcLength>0) {
+ dest[srcLength-1]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, srcLength-1, &destLength, pb, srcLength, &errorCode);
+ if (errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ dest[srcLength-1]!=0x1234 || destLength!=srcLength
+ ) {
+ log_err("u_strFromUTF8Lenient(%d preflighting/some capacity with length) failed\n", number);
+ }
+ }
+
+ /* conversion with length, much capacity */
+ dest[0]=dest[destLength0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, UPRV_LENGTHOF(dest), &destLength, pb, srcLength, &errorCode);
+ if (errorCode!=U_ZERO_ERROR ||
+ pDest!=dest || dest[destLength0]!=0 ||
+ destLength!=destLength0 || !equalAnyFFFD(dest, pu, destLength)
+ ) {
+ log_err("u_strFromUTF8Lenient(%d conversion with length, much capacity) failed\n", number);
+ }
+
+ /* conversion with length, srcLength capacity */
+ dest[0]=dest[srcLength]=dest[destLength0]=0x1234;
+ destLength=-1;
+ errorCode=U_ZERO_ERROR;
+ pDest=u_strFromUTF8Lenient(dest, srcLength, &destLength, pb, srcLength, &errorCode);
+ if(srcLength==destLength0) {
+ if (errorCode!=U_STRING_NOT_TERMINATED_WARNING ||
+ pDest!=dest || dest[destLength0]!=0x1234 ||
+ destLength!=destLength0 || !equalAnyFFFD(dest, pu, destLength)
+ ) {
+ log_err("u_strFromUTF8Lenient(%d conversion with length, srcLength capacity/not terminated) failed\n", number);
+ }
+ } else {
+ if (errorCode!=U_ZERO_ERROR ||
+ pDest!=dest || dest[destLength0]!=0 ||
+ destLength!=destLength0 || !equalAnyFFFD(dest, pu, destLength)
+ ) {
+ log_err("u_strFromUTF8Lenient(%d conversion with length, srcLength capacity/terminated) failed\n", number);
+ }
+ }
+ }
+}
+
static const uint16_t src16j[] = {
0x0043, 0x0044, 0x0045, 0x0046, 0x0047, 0x0048, 0x0049, 0x004A, 0x000D, 0x000A,
0x004B, 0x004C, 0x004D, 0x004E, 0x004F, 0x0050, 0x0051, 0x0052, 0x000D, 0x000A,
};
static void Test_UChar_WCHART_API(void){
+#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) || (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION)
UErrorCode err = U_ZERO_ERROR;
const UChar* uSrc = src16j;
int32_t uSrcLen = sizeof(src16j)/2;
int32_t uDestLen = 0;
int i =0;
{
+ /* Bad UErrorCode arguments. Make sure that the API doesn't crash, and that Purify doesn't complain. */
+ if (u_strFromWCS(NULL,0,NULL,NULL,0,NULL) != NULL) {
+ log_err("u_strFromWCS() should return NULL with a bad argument\n");
+ }
+ if (u_strToWCS(NULL,0,NULL,NULL,0,NULL) != NULL) {
+ log_err("u_strToWCS() should return NULL with a bad argument\n");
+ }
+
+ /* NULL source & destination. */
+ err = U_ZERO_ERROR;
+ u_strFromWCS(NULL,0,NULL,NULL,0,&err);
+ if (err != U_STRING_NOT_TERMINATED_WARNING) {
+ log_err("u_strFromWCS(NULL, NULL) failed. Error: %s \n", u_errorName(err));
+ }
+ err = U_ZERO_ERROR;
+ u_strToWCS(NULL,0,NULL,NULL,0,&err);
+ if (err != U_STRING_NOT_TERMINATED_WARNING) {
+ log_err("u_strToWCS(NULL, NULL) failed. Error: %s \n", u_errorName(err));
+ }
+ err = U_ZERO_ERROR;
+
/* pre-flight*/
u_strToWCS(wDest,wDestLen,&reqLen,uSrc,uSrcLen-1,&err);
u_strFromWCS(uDest, uDestLen,&reqLen,wDest,reqLen,&err);
}
-
- for(i=0; i< uSrcLen; i++){
+ if(!U_FAILURE(err)) {
+ for(i=0; i< uSrcLen; i++){
if(uDest[i] != src16WithNulls[i]){
log_verbose("u_str*WCS() failed for string with nulls expected: \\u%04X got: \\u%04X at index: %i \n", src16WithNulls[i] ,uDest[i],i);
failed =TRUE;
}
+ }
}
if(U_FAILURE(err)){
}
- for(i=0; i< uSrcLen; i++){
+ if(!U_FAILURE(err)) {
+ for(i=0; i< uSrcLen; i++){
if(uDest[i] != src16j[i]){
log_verbose("u_str*WCS() failed for null terminated string expected: \\u%04X got: \\u%04X at index: %i \n", src16j[i] ,uDest[i],i);
failed =TRUE;
}
+ }
}
if(U_FAILURE(err)){
err=U_ZERO_ERROR;
buffer[3]=0x20ac;
- wDestLen=u_terminateWChars(buffer, LENGTHOF(buffer), 3, &err);
+ wDestLen=u_terminateWChars(buffer, UPRV_LENGTHOF(buffer), 3, &err);
if(err!=U_ZERO_ERROR || wDestLen!=3 || buffer[3]!=0) {
log_err("u_terminateWChars(buffer, all, 3, zero) failed: %s length %d [3]==U+%04x\n",
u_errorName(err), wDestLen, buffer[3]);
err=U_STRING_NOT_TERMINATED_WARNING;
buffer[3]=0x20ac;
- wDestLen=u_terminateWChars(buffer, LENGTHOF(buffer), 3, &err);
+ wDestLen=u_terminateWChars(buffer, UPRV_LENGTHOF(buffer), 3, &err);
if(err!=U_ZERO_ERROR || wDestLen!=3 || buffer[3]!=0) {
log_err("u_terminateWChars(buffer, all, 3, not-terminated) failed: %s length %d [3]==U+%04x\n",
u_errorName(err), wDestLen, buffer[3]);
u_errorName(err), wDestLen, buffer[3]);
}
}
+#else
+ log_info("Not testing u_str*WCS because (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION) and wchar is neither utf16 nor utf32");
+#endif
}
static void Test_widestrs()
{
+#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) || (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION)
wchar_t ws[100];
UChar rts[100];
- int32_t wcap = sizeof(ws) / sizeof(*ws);
+ int32_t wcap = UPRV_LENGTHOF(ws);
int32_t wl;
- int32_t rtcap = sizeof(rts) / sizeof(*rts);
+ int32_t rtcap = UPRV_LENGTHOF(rts);
int32_t rtl;
wchar_t *wcs;
UChar *cp;
const char *errname;
UChar ustr[] = {'h', 'e', 'l', 'l', 'o', 0};
- int32_t ul = sizeof(ustr)/sizeof(*ustr) -1;
+ int32_t ul = UPRV_LENGTHOF(ustr) -1;
char astr[100];
UErrorCode err;
err = U_ZERO_ERROR;
wl = (int32_t)uprv_wcslen(wcs);
cp = u_strFromWCS(rts, rtcap, &rtl, wcs, wl, &err);
+ (void)cp; /* Suppress set but not used warning. */
if (U_FAILURE(err)) {
errname = u_errorName(err);
fprintf(stderr, "test_widestrs: ucnv_wcstombs error: %s!\n",errname);
if(wl != rtl){
log_err("u_strFromWCS: wcs = %S, wl = %d,rts = %s, rtl = %d!\n", wcs, wl, u_austrcpy(astr, rts), rtl);
}
+#else
+ log_info("Not testing u_str*WCS because (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION) and wchar is neither utf16 nor utf32");
+#endif
}
static void
Test_WCHART_LongString(){
+#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) || (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION)
UErrorCode status = U_ZERO_ERROR;
const char* testdatapath=loadTestData(&status);
UResourceBundle *theBundle = ures_open(testdatapath, "testtypes", &status);
UChar* uDest = NULL;
UBool failed = FALSE;
+ log_verbose("Loaded string of %d UChars\n", uSrcLen);
+
if(U_FAILURE(status)){
- log_err("Could not get testinclude resource from testtypes bundle. Error: %s\n",u_errorName(status));
+ log_data_err("Could not get testinclude resource from testtypes bundle. Error: %s\n",u_errorName(status));
return;
}
wDest =(wchar_t*) malloc(sizeof(wchar_t) * (reqLen+1));
wDestLen = reqLen+1;
u_strToWCS(wDest,wDestLen,&reqLen,uSrc,-1,&status);
+ log_verbose("To %d*%d-byte wchar_ts\n", reqLen,sizeof(wchar_t));
}
+
+ {
+ int j;
+ for(j=0;j>=0&&j<reqLen;j++) {
+ if(wDest[j]!=uSrc[j]) {
+ log_verbose("Diff %04X vs %04X @ %d\n", wDest[j],uSrc[j],j);
+ break;
+ }
+ }
+ }
+
uDestLen = 0;
/* pre-flight */
u_strFromWCS(uDest, uDestLen,&reqLen,wDest,-1,&status);
-
if(status == U_BUFFER_OVERFLOW_ERROR){
status =U_ZERO_ERROR;
uDest = (UChar*) malloc(sizeof(UChar) * (reqLen+1));
+ u_memset(uDest,0xFFFF,reqLen+1);
uDestLen = reqLen + 1;
u_strFromWCS(uDest, uDestLen,&reqLen,wDest,-1,&status);
+ log_verbose("Back to %d UChars\n", reqLen);
+ }
+#if defined(U_WCHAR_IS_UTF16)
+ log_verbose("U_WCHAR_IS_UTF16\n");
+#elif defined(U_WCHAR_IS_UTF32)
+ log_verbose("U_WCHAR_IS_UTF32\n");
+#else
+ log_verbose("U_WCHAR_IS_idunno (not UTF)\n");
+#endif
+
+ if(reqLen!=uSrcLen) {
+ log_err("Error: dest len is %d but expected src len %d\n", reqLen, uSrcLen);
}
-
for(i=0; i< uSrcLen; i++){
if(uDest[i] != str[i]){
- log_verbose("u_str*WCS() failed for null terminated string expected: \\u%04X got: \\u%04X at index: %i \n", src16j[i] ,uDest[i],i);
+ log_verbose("u_str*WCS() failed for null terminated string expected: \\u%04X got: \\u%04X at index: %i \n", str[i], uDest[i],i);
failed =TRUE;
}
}
free(uDest);
/* close the bundle */
ures_close(theBundle);
-
+#else
+ log_info("Not testing u_str*WCS because (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION) and wchar is neither utf16 nor utf32");
+#endif
+}
+
+static void Test_strToJavaModifiedUTF8() {
+ static const UChar src[]={
+ 0x61, 0x62, 0x63, 0xe1, 0xe2, 0xe3,
+ 0xe01, 0xe02, 0xe03, 0xe001, 0xe002, 0xe003,
+ 0xd800, 0xdc00, 0xdc00, 0xd800, 0,
+ 0xdbff, 0xdfff,
+ 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0xed, 0xe0e, 0x6f
+ };
+ static const uint8_t expected[]={
+ 0x61, 0x62, 0x63, 0xc3, 0xa1, 0xc3, 0xa2, 0xc3, 0xa3,
+ 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0x83,
+ 0xee, 0x80, 0x81, 0xee, 0x80, 0x82, 0xee, 0x80, 0x83,
+ 0xed, 0xa0, 0x80, 0xed, 0xb0, 0x80, 0xed, 0xb0, 0x80, 0xed, 0xa0, 0x80, 0xc0, 0x80,
+ 0xed, 0xaf, 0xbf, 0xed, 0xbf, 0xbf,
+ 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b, 0x6c, 0xc3, 0xad, 0xe0, 0xb8, 0x8e, 0x6f
+ };
+ static const UChar shortSrc[]={
+ 0xe01, 0xe1, 0x61
+ };
+ static const uint8_t shortExpected[]={
+ 0xe0, 0xb8, 0x81, 0xc3, 0xa1, 0x61
+ };
+ static const UChar asciiNul[]={
+ 0x61, 0x62, 0x63, 0
+ };
+ static const uint8_t asciiNulExpected[]={
+ 0x61, 0x62, 0x63
+ };
+ char dest[200];
+ char *p;
+ int32_t length, expectedTerminatedLength;
+ UErrorCode errorCode;
+
+ expectedTerminatedLength=(int32_t)(strstr((const char *)expected, "\xc0\x80")-
+ (const char *)expected);
+
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(expected) || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(normal) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), NULL,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ 0!=memcmp(dest, expected, UPRV_LENGTHOF(expected)) ||
+ dest[UPRV_LENGTHOF(expected)]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(normal, pLength=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, UPRV_LENGTHOF(expected), &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if( errorCode!=U_STRING_NOT_TERMINATED_WARNING || p!=dest ||
+ length!=UPRV_LENGTHOF(expected) || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=(char)0xff
+ ) {
+ log_err("u_strToJavaModifiedUTF8(tight) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length, src, -1, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=expectedTerminatedLength || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(NUL-terminated) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), NULL, src, -1, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ 0!=memcmp(dest, expected, expectedTerminatedLength) ||
+ dest[expectedTerminatedLength]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(NUL-terminated, pLength=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, UPRV_LENGTHOF(expected)/2, &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if( errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ length!=UPRV_LENGTHOF(expected) || dest[UPRV_LENGTHOF(expected)/2]!=(char)0xff
+ ) {
+ log_err("u_strToJavaModifiedUTF8(overflow) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(NULL, 0, &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if( errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ length!=UPRV_LENGTHOF(expected) || dest[0]!=(char)0xff
+ ) {
+ log_err("u_strToJavaModifiedUTF8(pure preflighting) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
+ shortSrc, UPRV_LENGTHOF(shortSrc), &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(shortExpected) || 0!=memcmp(dest, shortExpected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(short) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
+ asciiNul, -1, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(asciiNulExpected) || 0!=memcmp(dest, asciiNulExpected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(asciiNul) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, (int32_t)sizeof(dest), &length,
+ NULL, 0, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=0 || dest[0]!=0
+ ) {
+ log_err("u_strToJavaModifiedUTF8(empty) failed - %s\n", u_errorName(errorCode));
+ }
+
+ /* illegal arguments */
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(NULL, sizeof(dest), &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=(char)0xff) {
+ log_err("u_strToJavaModifiedUTF8(dest=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, -1, &length,
+ src, UPRV_LENGTHOF(src), &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=(char)0xff) {
+ log_err("u_strToJavaModifiedUTF8(destCapacity<0) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, sizeof(dest), &length,
+ NULL, UPRV_LENGTHOF(src), &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=(char)0xff) {
+ log_err("u_strToJavaModifiedUTF8(src=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=-5;
+ p=u_strToJavaModifiedUTF8(dest, sizeof(dest), &length,
+ NULL, -1, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=(char)0xff) {
+ log_err("u_strToJavaModifiedUTF8(src=NULL, srcLength<0) failed - %s\n", u_errorName(errorCode));
+ }
+}
+
+static void Test_strFromJavaModifiedUTF8() {
+ static const uint8_t src[]={
+ 0x61, 0x62, 0x63, 0xc3, 0xa1, 0xc3, 0xa2, 0xc3, 0xa3,
+ 0xe0, 0xb8, 0x81, 0xe0, 0xb8, 0x82, 0xe0, 0xb8, 0x83,
+ 0xee, 0x80, 0x81, 0xee, 0x80, 0x82, 0xee, 0x80, 0x83,
+ 0xed, 0xa0, 0x80, 0xed, 0xb0, 0x80, 0xed, 0xb0, 0x80, 0xed, 0xa0, 0x80, 0,
+ 0xed, 0xaf, 0xbf, 0xed, 0xbf, 0xbf,
+ 0x81, 0xc0, 0xe0, 0xb8, 0xf0, 0x90, 0x80, 0x80, /* invalid sequences */
+ 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,
+ 0xe0, 0x81, 0xac, 0xe0, 0x83, 0xad, /* non-shortest forms are allowed */
+ 0xe0, 0xb8, 0x8e, 0x6f
+ };
+ static const UChar expected[]={
+ 0x61, 0x62, 0x63, 0xe1, 0xe2, 0xe3,
+ 0xe01, 0xe02, 0xe03, 0xe001, 0xe002, 0xe003,
+ 0xd800, 0xdc00, 0xdc00, 0xd800, 0,
+ 0xdbff, 0xdfff,
+ 0xfffd, 0xfffd, 0xfffd, 0xfffd,
+ 0x64, 0x65, 0x66, 0x67, 0x68, 0x69, 0x6a, 0x6b,
+ 0x6c, 0xed,
+ 0xe0e, 0x6f
+ };
+ static const uint8_t shortSrc[]={
+ 0xe0, 0xb8, 0x81, 0xc3, 0xa1, 0x61
+ };
+ static const UChar shortExpected[]={
+ 0xe01, 0xe1, 0x61
+ };
+ static const uint8_t asciiNul[]={
+ 0x61, 0x62, 0x63, 0
+ };
+ static const UChar asciiNulExpected[]={
+ 0x61, 0x62, 0x63
+ };
+ static const uint8_t invalid[]={
+ 0x81, 0xc0, 0xe0, 0xb8, 0xf0, 0x90, 0x80, 0x80
+ };
+ static const UChar invalidExpectedFFFD[]={
+ 0xfffd, 0xfffd, 0xfffd, 0xfffd
+ };
+ static const UChar invalidExpected50000[]={
+ 0xd900, 0xdc00, 0xd900, 0xdc00, 0xd900, 0xdc00, 0xd900, 0xdc00
+ };
+ UChar dest[200];
+ UChar *p;
+ int32_t length, expectedTerminatedLength;
+ int32_t numSubstitutions;
+ UErrorCode errorCode;
+
+ expectedTerminatedLength=(int32_t)(u_strchr(expected, 0)-expected);
+
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(expected) || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD)
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(normal) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), NULL,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ 0!=memcmp(dest, expected, UPRV_LENGTHOF(expected)) ||
+ dest[UPRV_LENGTHOF(expected)]!=0 ||
+ numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD)
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(normal, pLength=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, NULL, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(expected) || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(normal, pNumSubstitutions=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, UPRV_LENGTHOF(expected), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( errorCode!=U_STRING_NOT_TERMINATED_WARNING || p!=dest ||
+ length!=UPRV_LENGTHOF(expected) || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0xffff ||
+ numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD)
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(tight) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)src, -1,
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=expectedTerminatedLength || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(NUL-terminated) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), NULL,
+ (const char *)src, -1,
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ 0!=memcmp(dest, expected, expectedTerminatedLength) ||
+ dest[expectedTerminatedLength]!=0 ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(NUL-terminated, pLength=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)src, -1,
+ 0xfffd, NULL, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=expectedTerminatedLength || 0!=memcmp(dest, expected, length) ||
+ dest[length]!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(NUL-terminated, pNumSubstitutions=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, UPRV_LENGTHOF(expected)/2, &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ length!=UPRV_LENGTHOF(expected) || dest[UPRV_LENGTHOF(expected)/2]!=0xffff
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(overflow) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(NULL, 0, &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( errorCode!=U_BUFFER_OVERFLOW_ERROR ||
+ length!=UPRV_LENGTHOF(expected) || dest[0]!=0xffff
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(pure preflighting) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)shortSrc, UPRV_LENGTHOF(shortSrc),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(shortExpected) || 0!=memcmp(dest, shortExpected, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(short) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)asciiNul, -1,
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(asciiNulExpected) || 0!=memcmp(dest, asciiNulExpected, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(asciiNul) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ NULL, 0, 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=0 || dest[0]!=0 ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(empty) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)invalid, UPRV_LENGTHOF(invalid),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(invalidExpectedFFFD) || 0!=memcmp(dest, invalidExpectedFFFD, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD)
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(invalid->fffd) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)invalid, UPRV_LENGTHOF(invalid),
+ 0x50000, &numSubstitutions, &errorCode);
+ if( U_FAILURE(errorCode) || p!=dest ||
+ length!=UPRV_LENGTHOF(invalidExpected50000) || 0!=memcmp(dest, invalidExpected50000, length) ||
+ dest[length]!=0 ||
+ numSubstitutions!=UPRV_LENGTHOF(invalidExpectedFFFD) /* not ...50000 */
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(invalid->50000) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)invalid, UPRV_LENGTHOF(invalid),
+ U_SENTINEL, &numSubstitutions, &errorCode);
+ if(errorCode!=U_INVALID_CHAR_FOUND || dest[0]!=0xffff || numSubstitutions!=0) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(invalid->error) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, (int32_t)sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ U_SENTINEL, &numSubstitutions, &errorCode);
+ if( errorCode!=U_INVALID_CHAR_FOUND ||
+ length>=UPRV_LENGTHOF(expected) || dest[UPRV_LENGTHOF(expected)-1]!=0xffff ||
+ numSubstitutions!=0
+ ) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(normal->error) failed - %s\n", u_errorName(errorCode));
+ }
+
+ /* illegal arguments */
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(NULL, sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(dest=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, -1, &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(destCapacity<0) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length,
+ NULL, UPRV_LENGTHOF(src),
+ 0xfffd, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(src=NULL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length,
+ NULL, -1, 0xfffd, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(src=NULL, srcLength<0) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0x110000, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(subchar=U_SENTINEL) failed - %s\n", u_errorName(errorCode));
+ }
+ memset(dest, 0xff, sizeof(dest));
+ errorCode=U_ZERO_ERROR;
+ length=numSubstitutions=-5;
+ p=u_strFromJavaModifiedUTF8WithSub(dest, sizeof(dest), &length,
+ (const char *)src, UPRV_LENGTHOF(src),
+ 0xdfff, &numSubstitutions, &errorCode);
+ if(errorCode!=U_ILLEGAL_ARGUMENT_ERROR || dest[0]!=0xffff) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(subchar is surrogate) failed - %s\n", u_errorName(errorCode));
+ }
}
+/* test that string transformation functions permit NULL source pointer when source length==0 */
+static void TestNullEmptySource() {
+ char dest8[4]={ 3, 3, 3, 3 };
+ UChar dest16[4]={ 3, 3, 3, 3 };
+ UChar32 dest32[4]={ 3, 3, 3, 3 };
+#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) || (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION)
+ wchar_t destW[4]={ 3, 3, 3, 3 };
+#endif
+
+ int32_t length;
+ UErrorCode errorCode;
+
+ /* u_strFromXyz() */
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromUTF8(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromUTF8(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromUTF8WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromUTF8WithSub(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromUTF8Lenient(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromUTF8Lenient(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromUTF32(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromUTF32(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromUTF32WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromUTF32WithSub(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromJavaModifiedUTF8WithSub(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, 0xfffd, NULL, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromJavaModifiedUTF8WithSub(source=NULL, sourceLength=0) failed\n");
+ }
+
+ /* u_strToXyz() */
+
+ dest8[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToUTF8(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) {
+ log_err("u_strToUTF8(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest8[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToUTF8WithSub(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, 0xfffd, NULL, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) {
+ log_err("u_strToUTF8(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest32[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToUTF32(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) {
+ log_err("u_strToUTF32(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest32[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToUTF32WithSub(dest32, UPRV_LENGTHOF(dest32), &length, NULL, 0, 0xfffd, NULL, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest32[0]!=0 || dest32[1]!=3) {
+ log_err("u_strToUTF32WithSub(source=NULL, sourceLength=0) failed\n");
+ }
+
+ dest8[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToJavaModifiedUTF8(dest8, UPRV_LENGTHOF(dest8), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest8[0]!=0 || dest8[1]!=3) {
+ log_err("u_strToJavaModifiedUTF8(source=NULL, sourceLength=0) failed\n");
+ }
+
+#if (defined(U_WCHAR_IS_UTF16) || defined(U_WCHAR_IS_UTF32)) || (!UCONFIG_NO_CONVERSION && !UCONFIG_NO_LEGACY_CONVERSION)
+
+ dest16[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strFromWCS(dest16, UPRV_LENGTHOF(dest16), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || dest16[0]!=0 || dest16[1]!=3) {
+ log_err("u_strFromWCS(source=NULL, sourceLength=0) failed\n");
+ }
+
+ destW[0]=3;
+ length=3;
+ errorCode=U_ZERO_ERROR;
+ u_strToWCS(destW, UPRV_LENGTHOF(destW), &length, NULL, 0, &errorCode);
+ if(errorCode!=U_ZERO_ERROR || length!=0 || destW[0]!=0 || destW[1]!=3) {
+ log_err("u_strToWCS(source=NULL, sourceLength=0) failed\n");
+ }
+
+#endif
+}