]>
git.saurik.com Git - apple/icu.git/blob - icuSources/test/cintltst/cposxtst.c
1 // © 2016 and later: Unicode, Inc. and others.
2 // License & terms of use: http://www.unicode.org/copyright.html
4 **********************************************************************
5 * Copyright (c) 2003-2009, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 **********************************************************************
9 * Created: March 20 2003
11 **********************************************************************
16 #include "unicode/ucat.h"
17 #include "unicode/ustring.h"
19 /**********************************************************************/
22 void TestMessageCatalog(void);
24 /**********************************************************************/
25 /* Add our tests into the hierarchy */
27 void addPosixTest(TestNode
** root
);
29 void addPosixTest(TestNode
** root
)
31 #if !UCONFIG_NO_FILE_IO && !UCONFIG_NO_LEGACY_CONVERSION
32 addTest(root
, &TestMessageCatalog
, "tsutil/cposxtst/TestMessageCatalog");
36 /**********************************************************************/
37 /* Test basic ucat.h API */
39 void TestMessageCatalog(void) {
41 UErrorCode ec
= U_ZERO_ERROR
;
43 const char* DATA
[] = {
44 /* set_num, msg_num, expected string result, expected error code */
45 "1", "4", "Good morning.", "U_ZERO_ERROR",
46 "1", "5", "Good afternoon.", "U_ZERO_ERROR",
47 "1", "6", "FAIL", "U_MISSING_RESOURCE_ERROR",
48 "1", "7", "Good evening.", "U_ZERO_ERROR",
49 "1", "8", "Good night.", "U_ZERO_ERROR",
50 "1", "9", "FAIL", "U_MISSING_RESOURCE_ERROR",
51 "3", "1", "FAIL", "U_MISSING_RESOURCE_ERROR",
52 "4", "14", "Please ", "U_ZERO_ERROR",
53 "4", "15", "FAIL", "U_MISSING_RESOURCE_ERROR",
54 "4", "19", "Thank you.", "U_ZERO_ERROR",
55 "4", "20", "Sincerely,", "U_ZERO_ERROR",
58 const UChar FAIL
[] = {0x46, 0x41, 0x49, 0x4C, 0x00}; /* "FAIL" */
60 const char *path
= loadTestData(&ec
);
63 log_data_err("FAIL: loadTestData => %s\n", u_errorName(ec
));
67 catd
= u_catopen(path
, "mc", &ec
);
69 log_data_err("FAIL: u_catopen => %s\n", u_errorName(ec
));
73 for (i
=0; DATA
[i
]!=NULL
; i
+=4) {
74 int32_t set_num
= T_CString_stringToInteger(DATA
[i
], 10);
75 int32_t msg_num
= T_CString_stringToInteger(DATA
[i
+1], 10);
82 u_uastrcpy(exp
, DATA
[i
+2]);
85 ustr
= u_catgets(catd
, set_num
, msg_num
, FAIL
, &len
, &ec
);
86 u_austrcpy(str
, ustr
);
87 err
= u_errorName(ec
);
89 log_verbose("u_catgets(%d, %d) => \"%s\", len=%d, %s\n",
90 set_num
, msg_num
, str
, len
, err
);
92 if (u_strcmp(ustr
, exp
) != 0) {
93 log_err("FAIL: u_catgets => \"%s\", exp. \"%s\"\n",
97 if (len
!= (int32_t) uprv_strlen(DATA
[i
+2])) {
98 log_err("FAIL: u_catgets => len=%d, exp. %d\n",
99 len
, uprv_strlen(DATA
[i
+2]));
102 if (uprv_strcmp(err
, DATA
[i
+3]) != 0) {
103 log_err("FAIL: u_catgets => %s, exp. %s\n",