dat_wcsrtombs.c 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272
  1. /*
  2. * TEST SUITE FOR MB/WC FUNCTIONS IN C LIBRARY
  3. *
  4. * FILE: dat_wcsrtombs.c
  5. *
  6. * WCSTOMBS: size_t wcsrtombs (char *s, const wchar_t **ws,
  7. * size_t n, mbstate *ps)
  8. */
  9. /*
  10. * CAUTION:
  11. * Do not use a value 0x01 for string data. The test program
  12. * uses it.
  13. *
  14. */
  15. TST_WCSRTOMBS tst_wcsrtombs_loc [] = {
  16. {
  17. { Twcsrtombs, TST_LOC_de },
  18. {
  19. /* #01 : Any chars including a null char should not be stored in s. */
  20. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 0, 0, 0},
  21. /*expect*/ { 0,1,0, "" },
  22. },
  23. /* #02 : Only one chars should be stored in s. No null termination. */
  24. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 1, 0, 0 },
  25. /*expect*/ { 0,1,1, "Ä" },
  26. },
  27. /* #03 : Only two chars should be stored in s. No null termination. */
  28. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 2, 0, 0 },
  29. /*expect*/ { 0,1,2, "ÄÖ" },
  30. },
  31. /* #04 : Only three chars should be stored in s. No null
  32. termination. */
  33. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 3, 0, 0 },
  34. /*expect*/ { 0,1,3, "ÄÖÜ" },
  35. },
  36. /* #05 : Only three chars should be stored in s with a null
  37. termination. */
  38. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 4, 0, 0 },
  39. /*expect*/ { 0,1,3, "ÄÖÜ" },
  40. },
  41. /* #06 : Only three chars should be stored in s with a null
  42. termination. */
  43. { /*input.*/ { 1,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 5, 0, 0 },
  44. /*expect*/ { 0,1,3, "ÄÖÜ" },
  45. },
  46. /* #07 : Invalid mb sequence. No chars should be stored in s. */
  47. { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2, 0, 0 },
  48. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  49. },
  50. /* #08 : s is a null pointer, no chars should be stored in s. */
  51. { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 0, 0, 0 },
  52. /*expect*/ { 0,1,3, "" },
  53. },
  54. /* #09 : s is a null pointer, no chars should be stored in s. */
  55. { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 1, 0, 0 },
  56. /*expect*/ { 0,1,3, "" },
  57. },
  58. /* #10 : s is a null pointer, no chars should be stored in s. */
  59. { /*input.*/ { 0,1, { 0x00C4,0x00D6,0x00DC,0x0000 }, 5, 0, 0 },
  60. /*expect*/ { 0,1,3, "" },
  61. },
  62. /* #11 : s is a null pointer. No chars should be stored in s. */
  63. { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5, 0, 0 },
  64. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  65. },
  66. /* #12 : ws is a null wc string, no chars should be stored in s. */
  67. { /*input.*/ { 1,1, { 0x0000 }, 5, 0, 0 },
  68. /*expect*/ { 0,1,0, "" },
  69. },
  70. /* #13 : s is a null pointer, no chars should be stored in s. */
  71. { /*input.*/ { 0,1, { 0x0000 }, 5, 0, 0 },
  72. /*expect*/ { 0,1,0, "" },
  73. },
  74. { .is_last = 1 }
  75. }
  76. },
  77. {
  78. { Twcsrtombs, TST_LOC_enUS },
  79. {
  80. /* #01 : Any chars including a null char should not be stored in s. */
  81. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 0, 0, 0 },
  82. /*expect*/ { 0,1,0, "" },
  83. },
  84. /* #02 : Only one chars should be stored in s. No null termination. */
  85. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 1, 0, 0 },
  86. /*expect*/ { 0,1,1, "A" },
  87. },
  88. /* #03 : Only two chars should be stored in s. No null termination. */
  89. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 2, 0, 0 },
  90. /*expect*/ { 0,1,2, "AB" },
  91. },
  92. /* #04 : Only three chars should be stored in s. No null
  93. termination. */
  94. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 3, 0, 0 },
  95. /*expect*/ { 0,1,3, "ABC" },
  96. },
  97. /* #05 : Only three chars should be stored in s with a null
  98. termination. */
  99. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 4, 0, 0 },
  100. /*expect*/ { 0,1,3, "ABC" },
  101. },
  102. /* #06 : Only three chars should be stored in s with a null
  103. termination. */
  104. { /*input.*/ { 1,1, { 0x0041,0x0042,0x0043,0x0000 }, 5, 0, 0 },
  105. /*expect*/ { 0,1,3, "ABC" },
  106. },
  107. /* #07 : Invalid mb sequence. No chars should be stored in s. */
  108. { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2, 0, 0 },
  109. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  110. },
  111. /* #08 : s is a null pointer, no chars should be stored in s. */
  112. { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 0, 0, 0 },
  113. /*expect*/ { 0,1,3, "" },
  114. },
  115. /* #09 : s is a null pointer, no chars should be stored in s. */
  116. { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 1, 0, 0 },
  117. /*expect*/ { 0,1,3, "" },
  118. },
  119. /* #10 : s is a null pointer, no chars should be stored in s. */
  120. { /*input.*/ { 0,1, { 0x0041,0x0042,0x0043,0x0000 }, 5, 0, 0 },
  121. /*expect*/ { 0,1,3, "" },
  122. },
  123. /* #11 : s is a null pointer. No chars should be stored in s. */
  124. { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5, 0, 0 },
  125. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  126. },
  127. /* #12 : ws is a null wc string, no chars should be stored in s. */
  128. { /*input.*/ { 1,1, { 0x0000 }, 5, 0, 0 },
  129. /*expect*/ { 0,1,0, "" },
  130. },
  131. /* #13 : s is a null pointer, no chars should be stored in s. */
  132. { /*input.*/ { 0,1, { 0x0000 }, 5, 0, 0 },
  133. /*expect*/ { 0,1,0, "" },
  134. },
  135. { .is_last = 1 }
  136. }
  137. },
  138. #if 0
  139. {
  140. { Twcsrtombs, TST_LOC_eucJP },
  141. {
  142. /* #01 : Any chars including a null char should not be stored in s. */
  143. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0, 0, 0 },
  144. /*expect*/ { 0,1,0, "" },
  145. },
  146. /* #02 : Only one chars should be stored in s. No null termination. */
  147. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 2, 0, 0 },
  148. /*expect*/ { 0,1,2, "\244\242" },
  149. },
  150. /* #03 : Only two chars should be stored in s. No null termination. */
  151. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 4, 0, 0 },
  152. /*expect*/ { 0,1,4, "\244\242\244\244" },
  153. },
  154. /* #04 : Only three chars should be stored in s. No null
  155. termination. */
  156. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 6, 0, 0 },
  157. /*expect*/ { 0,1,6, "\244\242\244\244\216\263" },
  158. },
  159. /* #05 : Only three chars should be stored in s with a null
  160. termination. */
  161. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 7, 0, 0 },
  162. /*expect*/ { 0,1,6, "\244\242\244\244\216\263" },
  163. },
  164. /* #06 : Only three chars should be stored in s with a null
  165. termination. */
  166. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8, 0, 0 },
  167. /*expect*/ { 0,1,6, "\244\242\244\244\216\263" },
  168. },
  169. /* #07 : Invalid mb sequence. No chars should be stored in s. */
  170. { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2, 0, 0 },
  171. /*expect*/ { EILSEQ,1,-1, "" },
  172. },
  173. /* #08 : s is a null pointer, no chars should be stored in s. */
  174. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0, 0, 0 },
  175. /*expect*/ { 0,1,6, "" },
  176. },
  177. /* #09 : s is a null pointer, no chars should be stored in s. */
  178. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 1, 0, 0 },
  179. /*expect*/ { 0,1,6, "" },
  180. },
  181. /* #10 : s is a null pointer, no chars should be stored in s. */
  182. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8, 0, 0 },
  183. /*expect*/ { 0,1,6, "" },
  184. },
  185. /* #11 : s is a null pointer. No chars should be stored in s. */
  186. { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5, 0, 0 },
  187. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  188. },
  189. /* #12 : ws is a null wc string, no chars should be stored in s. */
  190. { /*input.*/ { 1,1, { 0x0000 }, 5, 0, 0 },
  191. /*expect*/ { 0,1,0, "" },
  192. },
  193. /* #13 : s is a null pointer, no chars should be stored in s. */
  194. { /*input.*/ { 0,1, { 0x0000 }, 5, 0, 0 },
  195. /*expect*/ { 0,1,0, "" },
  196. },
  197. { .is_last = 1 }
  198. }
  199. },
  200. #else
  201. {
  202. { Twcsrtombs, TST_LOC_ja_UTF8 },
  203. {
  204. /* #01 : Any chars including a null char should not be stored in s. */
  205. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0, 0, 0 },
  206. /*expect*/ { 0,1,0, "" },
  207. },
  208. /* #02 : Only one chars should be stored in s. No null termination. */
  209. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 3, 0, 0 },
  210. /*expect*/ { 0,1,3, "\343\201\202" },
  211. },
  212. /* #03 : Only two chars should be stored in s. No null termination. */
  213. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 6, 0, 0 },
  214. /*expect*/ { 0,1,6, "\343\201\202\343\201\204" },
  215. },
  216. /* #04 : Only three chars should be stored in s. No null
  217. termination. */
  218. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 9, 0, 0 },
  219. /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" },
  220. },
  221. /* #05 : Only three chars should be stored in s with a null
  222. termination. */
  223. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 10, 0, 0 },
  224. /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" },
  225. },
  226. /* #06 : Only three chars should be stored in s with a null
  227. termination. */
  228. { /*input.*/ { 1,1, { 0x3042,0x3044,0xFF73,0x0000 }, 11, 0, 0 },
  229. /*expect*/ { 0,1,9, "\343\201\202\343\201\204\357\275\263" },
  230. },
  231. /* #07 : Invalid mb sequence. No chars should be stored in s. */
  232. { /*input.*/ { 1,1, { 0x0201,0x0221,0x0000,0x0000 }, 2, 0, 0 },
  233. /*expect*/ { EILSEQ,1,-1, "" },
  234. },
  235. /* #08 : s is a null pointer, no chars should be stored in s. */
  236. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 0, 0, 0 },
  237. /*expect*/ { 0,1,9, "" },
  238. },
  239. /* #09 : s is a null pointer, no chars should be stored in s. */
  240. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 1, 0, 0 },
  241. /*expect*/ { 0,1,9, "" },
  242. },
  243. /* #10 : s is a null pointer, no chars should be stored in s. */
  244. { /*input.*/ { 0,1, { 0x3042,0x3044,0xFF73,0x0000 }, 8, 0, 0 },
  245. /*expect*/ { 0,1,9, "" },
  246. },
  247. /* #11 : s is a null pointer. No chars should be stored in s. */
  248. { /*input.*/ { 0,1, { 0x0201,0x0221,0x0000,0x0000 }, 5, 0, 0 },
  249. /*expect*/ { EILSEQ,1,(size_t)-1, "" },
  250. },
  251. /* #12 : ws is a null wc string, no chars should be stored in s. */
  252. { /*input.*/ { 1,1, { 0x0000 }, 5, 0, 0 },
  253. /*expect*/ { 0,1,0, "" },
  254. },
  255. /* #13 : s is a null pointer, no chars should be stored in s. */
  256. { /*input.*/ { 0,1, { 0x0000 }, 5, 0, 0 },
  257. /*expect*/ { 0,1,0, "" },
  258. },
  259. { .is_last = 1 }
  260. }
  261. },
  262. #endif
  263. {
  264. { Twcsrtombs, TST_LOC_end }
  265. }
  266. };