2000-06-29 07:13:12 +00:00
|
|
|
|
/*
|
|
|
|
|
* TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
|
|
|
|
|
*
|
|
|
|
|
* FILE: dat_wctomb.c
|
|
|
|
|
*
|
|
|
|
|
* WCTOMB: int wctomb (char *s, wchar_t wc)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* FUNCTION:
|
|
|
|
|
*
|
|
|
|
|
* int wctomb (char *s, wchar_t wc);
|
|
|
|
|
*
|
|
|
|
|
* return: the number of bytes
|
|
|
|
|
*
|
|
|
|
|
* NOTE:
|
|
|
|
|
*
|
|
|
|
|
* o When you feed a null pointer for a string (s) to the function,
|
|
|
|
|
* set s_flg=0 instead of putting just a 'NULL' there.
|
|
|
|
|
* Even if you put a 'NULL', it means a null string as well as "".
|
|
|
|
|
*
|
|
|
|
|
* o When s is a null pointer, the function checks state dependency.
|
|
|
|
|
*
|
|
|
|
|
* state-dependent encoding - return NON-zero
|
|
|
|
|
* state-independent encoding - return 0
|
|
|
|
|
*
|
|
|
|
|
* If state-dependent encoding is expected, set
|
|
|
|
|
*
|
|
|
|
|
* s_flg = 0, ret_flg = 0, ret_val = +1
|
|
|
|
|
*
|
|
|
|
|
* If state-independent encoding is expected, set
|
|
|
|
|
*
|
|
|
|
|
* s_flg = 0, ret_flg = 0, ret_val = 0
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* When you set ret_flg=1, the test program simply compares an
|
|
|
|
|
* actual return value with an expected value. You can check
|
|
|
|
|
* state-independent case (return value is 0) in that way, but
|
|
|
|
|
* you can not check state-dependent case. So when you check
|
|
|
|
|
* state- dependency in this test function: tst_wctomb(), set
|
|
|
|
|
* ret_flg=0 always. It's a special case, and the test
|
|
|
|
|
* function takes care of it.
|
|
|
|
|
*
|
|
|
|
|
* Input Expect
|
|
|
|
|
*
|
|
|
|
|
* s_flg=0 ret_flg=0
|
|
|
|
|
* | |
|
|
|
|
|
* { 0, 0 }, { 0, 0, 0, x, "" }
|
|
|
|
|
* | |
|
|
|
|
|
* not used ret_val: 0/+1
|
|
|
|
|
* (expected val)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
TST_WCTOMB tst_wctomb_loc [] = {
|
|
|
|
|
{
|
|
|
|
|
{ Twctomb, TST_LOC_de },
|
|
|
|
|
{
|
|
|
|
|
/* #01 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x00C4 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,1, "<EFBFBD>" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #02 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x00DC },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,1, "<EFBFBD>" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #03 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x0092 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,1, "\222" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #04 : error case */
|
|
|
|
|
{ /*input.*/ { 1, 0x3041 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,-1, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #05 : state dependency */
|
|
|
|
|
{ /*input.*/ { 0, 0x0000 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,0,0, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
{ is_last: 1 }
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
{ Twctomb, TST_LOC_enUS },
|
|
|
|
|
{
|
|
|
|
|
/* #01 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x0041 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,1, "A" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #02 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x0042 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,1, "B" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #03 : error case */
|
|
|
|
|
/* <WAIVER> */
|
|
|
|
|
{ /*input.*/ { 1, 0x00C4 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,-1, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #04 : error case */
|
|
|
|
|
{ /*input.*/ { 1, 0x30A4 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,-1, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #05 : state dependency */
|
|
|
|
|
{ /*input.*/ { 0, 0x0000 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,0,0, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
{ is_last: 1 }
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
{ Twctomb, TST_LOC_eucJP },
|
|
|
|
|
{
|
|
|
|
|
/* #01 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x3042 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,2, "\244\242" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #02 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x3044 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,2, "\244\244" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #03 : normal case */
|
|
|
|
|
{ /*input.*/ { 1, 0x008E },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,-1, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #04 : jisX0212 */
|
|
|
|
|
{ /*input.*/ { 1, 0x00C4 },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,1,3, "\217\252\243" }, /* jisx0210 returns 3 */
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
/* #05 : state dependency */
|
|
|
|
|
{ /*input.*/ { 0, 0x008E },
|
2000-08-18 09:34:18 +00:00
|
|
|
|
/*expect*/ { 0,0,0, "" },
|
2000-06-29 07:13:12 +00:00
|
|
|
|
},
|
|
|
|
|
{ is_last: 1 }
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
{ Twctomb, TST_LOC_end }
|
|
|
|
|
}
|
|
|
|
|
};
|