]>
Commit | Line | Data |
---|---|---|
f3c0d7a5 A |
1 | // © 2016 and later: Unicode, Inc. and others. |
2 | // License & terms of use: http://www.unicode.org/copyright.html | |
b75a7d8f | 3 | /******************************************************************** |
51004dcb A |
4 | * COPYRIGHT: |
5 | * Copyright (c) 1997-2012, International Business Machines Corporation and | |
b75a7d8f | 6 | * others. All Rights Reserved. |
51004dcb | 7 | * Copyright (C) 2010 , Yahoo! Inc. |
b75a7d8f A |
8 | ********************************************************************/ |
9 | ||
729e4ab9 A |
10 | #include <stdio.h> |
11 | #include <string.h> | |
51004dcb | 12 | #include "utypeinfo.h" // for 'typeid' to work |
729e4ab9 | 13 | |
b75a7d8f | 14 | #include "uobjtest.h" |
374ca955 | 15 | #include "cmemory.h" // UAlignedMemory |
b75a7d8f A |
16 | |
17 | /** | |
b75a7d8f A |
18 | * Test for UObject, currently only the classID. |
19 | * | |
20 | * Usage | |
729e4ab9 A |
21 | * TESTCLASSID_NONE_DEFAULT(Foo) |
22 | * -- Foo is expected to not support "poor man's RTTI". | |
23 | * Beginning with ICU 4.6, we only use compiler RTTI in new class hierarchies. | |
24 | * | |
25 | * TESTCLASSID_NONE_CTOR(Foo, (1, 2, 3, status)) | |
26 | * -- Combines TESTCLASSID_NONE_DEFAULT() and TESTCLASSID_CTOR(). | |
27 | * | |
28 | * TESTCLASSID_NONE_FACTORY(Foo, (1, 2, 3, status)) | |
29 | * -- Combines TESTCLASSID_NONE_DEFAULT() and TESTCLASSID_FACTORY(). | |
30 | * | |
b75a7d8f A |
31 | * TESTCLASSID_ABSTRACT(Bar) |
32 | * -- Bar is expected to be abstract. Only the static ID will be tested. | |
33 | * | |
34 | * TESTCLASSID_DEFAULT(Foo) | |
35 | * -- Foo will be default-constructed. | |
36 | * | |
37 | * TESTCLASSID_CTOR(Foo, (1, 2, 3, status)) | |
38 | * -- Second argument is (parenthesized) constructor argument. | |
39 | * Will be called as: new Foo ( 1, 2, 3, status) [status is tested] | |
40 | * | |
41 | * TESTCLASSID_FACTORY(Foo, fooCreateFunction(status) ) | |
42 | * -- call fooCreateFunction. 'status' will be tested & reset | |
46f4442e A |
43 | * |
44 | * TESTCLASSID_FACTORY_HIDDEN(class, factory) | |
45 | * -- call factory. Class is not available from a header. | |
46 | * 'status' will be tested & reset. This only tests uniqueness. | |
b75a7d8f A |
47 | */ |
48 | ||
729e4ab9 A |
49 | #define TESTCLASSID_NONE_DEFAULT(c) \ |
50 | delete testClassNoClassID(new c, #c, "new " #c) | |
51 | #define TESTCLASSID_NONE_CTOR(c, x) { \ | |
52 | delete testClassNoClassID(new c x, #c, "new " #c #x); \ | |
53 | if(U_FAILURE(status)) { \ | |
54 | dataerrln(UnicodeString(#c " - new " #x " - got err status ") + UnicodeString(u_errorName(status))); \ | |
55 | status = U_ZERO_ERROR; \ | |
56 | } \ | |
57 | } | |
58 | #define TESTCLASSID_NONE_FACTORY(c, f) { \ | |
59 | delete testClassNoClassID(f, #c, #f); \ | |
60 | if(U_FAILURE(status)) { \ | |
61 | dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ | |
62 | status = U_ZERO_ERROR; \ | |
63 | } \ | |
64 | } | |
65 | #define TESTCLASSID_FACTORY(c, f) { \ | |
66 | delete testClass(f, #c, #f, c ::getStaticClassID()); \ | |
67 | if(U_FAILURE(status)) { \ | |
68 | dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ | |
69 | status = U_ZERO_ERROR; \ | |
70 | } \ | |
71 | } | |
72 | #define TESTCLASSID_TRANSLIT(c, t) { \ | |
73 | delete testClass(Transliterator::createInstance(UnicodeString(t), UTRANS_FORWARD,parseError,status), #c, "Transliterator: " #t, c ::getStaticClassID()); \ | |
74 | if(U_FAILURE(status)) { \ | |
75 | dataerrln(UnicodeString(#c " - Transliterator: " #t " - got err status ") + UnicodeString(u_errorName(status))); \ | |
76 | status = U_ZERO_ERROR; \ | |
77 | } \ | |
78 | } | |
79 | #define TESTCLASSID_CTOR(c, x) { \ | |
80 | delete testClass(new c x, #c, "new " #c #x, c ::getStaticClassID()); \ | |
81 | if(U_FAILURE(status)) { \ | |
82 | dataerrln(UnicodeString(#c " - new " #x " - got err status ") + UnicodeString(u_errorName(status))); \ | |
83 | status = U_ZERO_ERROR; \ | |
84 | } \ | |
85 | } | |
86 | #define TESTCLASSID_DEFAULT(c) \ | |
87 | delete testClass(new c, #c, "new " #c , c::getStaticClassID()) | |
88 | #define TESTCLASSID_ABSTRACT(c) \ | |
89 | testClass(NULL, #c, NULL, c::getStaticClassID()) | |
90 | #define TESTCLASSID_FACTORY_HIDDEN(c, f) { \ | |
91 | UObject *objVar = f; \ | |
92 | delete testClass(objVar, #c, #f, objVar!=NULL? objVar->getDynamicClassID(): NULL); \ | |
93 | if(U_FAILURE(status)) { \ | |
94 | dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ | |
95 | status = U_ZERO_ERROR; \ | |
96 | } \ | |
97 | } | |
b75a7d8f A |
98 | |
99 | #define MAX_CLASS_ID 200 | |
100 | ||
46f4442e A |
101 | static UClassID ids[MAX_CLASS_ID]; |
102 | static const char *ids_factory[MAX_CLASS_ID]; | |
103 | static const char *ids_class[MAX_CLASS_ID]; | |
104 | static uint32_t ids_count = 0; | |
b75a7d8f A |
105 | |
106 | UObject *UObjectTest::testClass(UObject *obj, | |
374ca955 A |
107 | const char *className, const char *factory, |
108 | UClassID staticID) | |
b75a7d8f | 109 | { |
46f4442e A |
110 | uint32_t i; |
111 | UnicodeString what = UnicodeString(className) + " * x= " + UnicodeString(factory?factory:" ABSTRACT ") + "; "; | |
112 | UClassID dynamicID = NULL; | |
113 | ||
114 | if(ids_count >= MAX_CLASS_ID) { | |
115 | char count[100]; | |
116 | sprintf(count, " (currently %d) ", MAX_CLASS_ID); | |
117 | errln("FAIL: Fatal: Ran out of IDs! Increase MAX_CLASS_ID." + UnicodeString(count) + what); | |
118 | return obj; | |
b75a7d8f A |
119 | } |
120 | ||
46f4442e A |
121 | if(obj) { |
122 | dynamicID = obj->getDynamicClassID(); | |
b75a7d8f | 123 | } |
46f4442e A |
124 | |
125 | { | |
126 | char tmp[500]; | |
127 | sprintf(tmp, " [static=%p, dynamic=%p] ", staticID, dynamicID); | |
128 | logln(what + tmp); | |
b75a7d8f | 129 | } |
b75a7d8f | 130 | |
46f4442e | 131 | if(staticID == NULL) { |
729e4ab9 | 132 | dataerrln("FAIL: staticID == NULL! " + what); |
46f4442e A |
133 | } |
134 | ||
135 | if(factory != NULL) { /* NULL factory means: abstract */ | |
136 | if(!obj) { | |
729e4ab9 | 137 | dataerrln( "FAIL: ==NULL! " + what); |
46f4442e A |
138 | return obj; |
139 | } | |
140 | ||
141 | if(dynamicID == NULL) { | |
142 | errln("FAIL: dynamicID == NULL!" + what); | |
143 | } | |
144 | ||
145 | if(dynamicID != staticID) { | |
729e4ab9 | 146 | dataerrln("FAIL: dynamicID != staticID! " + what); |
46f4442e | 147 | } |
b75a7d8f | 148 | } |
b75a7d8f | 149 | |
46f4442e A |
150 | // Bail out if static ID is null. Error message was already printed. |
151 | if(staticID == NULL) { | |
152 | return obj; | |
153 | } | |
154 | ||
155 | for(i=0;i<ids_count;i++) { | |
156 | if(staticID == ids[i]) { | |
157 | if(!strcmp(ids_class[i], className)) { | |
158 | logln("OK: ID found is the same as " + UnicodeString(ids_class[i]) + UnicodeString(" *y= ") + ids_factory[i] + what); | |
159 | return obj; | |
160 | } else { | |
161 | errln("FAIL: ID is the same as " + UnicodeString(ids_class[i]) + UnicodeString(" *y= ") + ids_factory[i] + what); | |
162 | return obj; | |
163 | } | |
164 | } | |
165 | } | |
b75a7d8f | 166 | |
46f4442e A |
167 | ids[ids_count] = staticID; |
168 | ids_factory[ids_count] = factory; | |
169 | ids_class[ids_count] = className; | |
170 | ids_count++; | |
171 | ||
172 | return obj; | |
b75a7d8f A |
173 | } |
174 | ||
729e4ab9 A |
175 | UObject *UObjectTest::testClassNoClassID(UObject *obj, const char *className, const char *factory) |
176 | { | |
177 | if (!obj) { | |
178 | return NULL; | |
179 | } | |
180 | UnicodeString what = UnicodeString(className) + " * x= " + UnicodeString(factory?factory:" ABSTRACT ") + "; "; | |
181 | UClassID dynamicID = obj->getDynamicClassID(); | |
182 | ||
183 | { | |
184 | char tmp[500]; | |
185 | sprintf(tmp, " [dynamic=%p] ", dynamicID); | |
186 | logln(what + tmp); | |
187 | } | |
188 | ||
189 | if(factory != NULL) { /* NULL factory means: abstract */ | |
190 | if(!obj) { | |
191 | dataerrln( "FAIL: ==NULL! " + what); | |
192 | return obj; | |
193 | } | |
194 | ||
195 | if(dynamicID != NULL) { | |
196 | errln("FAIL: dynamicID != NULL! for non-poor-man's-RTTI " + what); | |
197 | } | |
198 | } | |
199 | ||
200 | return obj; | |
201 | } | |
b75a7d8f A |
202 | |
203 | // begin actual #includes for things to be tested | |
204 | // | |
205 | // The following script will generate the #includes needed here: | |
206 | // | |
207 | // find common i18n -name '*.h' -print | xargs fgrep ClassID | cut -d: -f1 | cut -d\/ -f2- | sort | uniq | sed -e 's%.*%#include "&"%' | |
208 | ||
209 | ||
210 | #include "unicode/utypes.h" | |
211 | ||
b75a7d8f A |
212 | // Internal Things (woo) |
213 | #include "cpdtrans.h" | |
214 | #include "rbt.h" | |
215 | #include "rbt_data.h" | |
b75a7d8f A |
216 | #include "nultrans.h" |
217 | #include "anytrans.h" | |
218 | #include "digitlst.h" | |
219 | #include "esctrn.h" | |
220 | #include "funcrepl.h" | |
73c04bcf A |
221 | #include "servnotf.h" |
222 | #include "serv.h" | |
223 | #include "servloc.h" | |
b75a7d8f A |
224 | #include "name2uni.h" |
225 | #include "nfsubs.h" | |
226 | #include "nortrans.h" | |
227 | #include "quant.h" | |
228 | #include "remtrans.h" | |
229 | #include "strmatch.h" | |
230 | #include "strrepl.h" | |
231 | #include "titletrn.h" | |
232 | #include "tolowtrn.h" | |
233 | #include "toupptrn.h" | |
234 | #include "unesctrn.h" | |
235 | #include "uni2name.h" | |
236 | #include "uvector.h" | |
73c04bcf A |
237 | #include "uvectr32.h" |
238 | #include "currfmt.h" | |
239 | #include "buddhcal.h" | |
374ca955 | 240 | #include "islamcal.h" |
73c04bcf A |
241 | #include "japancal.h" |
242 | #include "hebrwcal.h" | |
46f4442e A |
243 | #include "persncal.h" |
244 | #include "taiwncal.h" | |
245 | #include "indiancal.h" | |
246 | #include "chnsecal.h" | |
247 | #include "windtfmt.h" | |
248 | #include "winnmfmt.h" | |
73c04bcf | 249 | #include "ustrenum.h" |
46f4442e A |
250 | #include "olsontz.h" |
251 | #include "reldtfmt.h" | |
b75a7d8f A |
252 | |
253 | // External Things | |
4388f060 A |
254 | #include "unicode/appendable.h" |
255 | #include "unicode/alphaindex.h" | |
b75a7d8f A |
256 | #include "unicode/brkiter.h" |
257 | #include "unicode/calendar.h" | |
258 | #include "unicode/caniter.h" | |
259 | #include "unicode/chariter.h" | |
260 | #include "unicode/choicfmt.h" | |
261 | #include "unicode/coleitr.h" | |
262 | #include "unicode/coll.h" | |
73c04bcf | 263 | #include "unicode/curramt.h" |
b75a7d8f | 264 | #include "unicode/datefmt.h" |
b75a7d8f A |
265 | #include "unicode/dcfmtsym.h" |
266 | #include "unicode/decimfmt.h" | |
267 | #include "unicode/dtfmtsym.h" | |
46f4442e | 268 | #include "unicode/dtptngen.h" |
b75a7d8f A |
269 | #include "unicode/fieldpos.h" |
270 | #include "unicode/fmtable.h" | |
271 | #include "unicode/format.h" | |
272 | #include "unicode/gregocal.h" | |
729e4ab9 A |
273 | #include "unicode/idna.h" |
274 | #include "unicode/locdspnm.h" | |
b75a7d8f A |
275 | #include "unicode/locid.h" |
276 | #include "unicode/msgfmt.h" | |
277 | #include "unicode/normlzr.h" | |
729e4ab9 | 278 | #include "unicode/normalizer2.h" |
b75a7d8f A |
279 | #include "unicode/numfmt.h" |
280 | #include "unicode/parsepos.h" | |
46f4442e A |
281 | #include "unicode/plurrule.h" |
282 | #include "unicode/plurfmt.h" | |
729e4ab9 | 283 | #include "unicode/selfmt.h" |
b75a7d8f A |
284 | #include "unicode/rbbi.h" |
285 | #include "unicode/rbnf.h" | |
286 | #include "unicode/regex.h" | |
287 | #include "unicode/resbund.h" | |
288 | #include "unicode/schriter.h" | |
289 | #include "unicode/simpletz.h" | |
290 | #include "unicode/smpdtfmt.h" | |
291 | #include "unicode/sortkey.h" | |
292 | #include "unicode/stsearch.h" | |
293 | #include "unicode/tblcoll.h" | |
294 | #include "unicode/timezone.h" | |
295 | #include "unicode/translit.h" | |
296 | #include "unicode/uchriter.h" | |
4388f060 | 297 | #include "unicode/uloc.h" |
b75a7d8f A |
298 | #include "unicode/unifilt.h" |
299 | #include "unicode/unifunct.h" | |
300 | #include "unicode/uniset.h" | |
301 | #include "unicode/unistr.h" | |
302 | #include "unicode/uobject.h" | |
303 | #include "unicode/usetiter.h" | |
304 | //#include "unicode/bidi.h" | |
305 | //#include "unicode/convert.h" | |
306 | ||
307 | // END includes ============================================================= | |
308 | ||
309 | #define UOBJTEST_TEST_INTERNALS 0 /* do NOT test Internal things - their functions aren't exported on Win32 */ | |
310 | ||
73c04bcf A |
311 | #if !UCONFIG_NO_SERVICE |
312 | /* The whole purpose of this class is to expose the constructor, and gain access to the superclasses RTTI. */ | |
313 | class TestLocaleKeyFactory : public LocaleKeyFactory { | |
314 | public: | |
315 | TestLocaleKeyFactory(int32_t coverage) : LocaleKeyFactory(coverage) {} | |
316 | }; | |
317 | #endif | |
318 | ||
4388f060 A |
319 | // Appendable is abstract; we define a subclass to verify that there is no "poor man's RTTI". |
320 | class DummyAppendable : public Appendable { | |
321 | public: | |
322 | virtual UBool appendCodeUnit(UChar /*c*/) { return TRUE; } | |
323 | }; | |
324 | ||
b75a7d8f A |
325 | void UObjectTest::testIDs() |
326 | { | |
327 | ids_count = 0; | |
73c04bcf | 328 | UErrorCode status = U_ZERO_ERROR; |
b75a7d8f | 329 | |
51004dcb A |
330 | TESTCLASSID_NONE_CTOR(UObject, ()); |
331 | ||
73c04bcf | 332 | #if !UCONFIG_NO_TRANSLITERATION || !UCONFIG_NO_FORMATTING |
b75a7d8f A |
333 | UParseError parseError; |
334 | #endif | |
b75a7d8f A |
335 | |
336 | ||
b75a7d8f | 337 | #if !UCONFIG_NO_NORMALIZATION |
729e4ab9 A |
338 | UnicodeString emptyString; |
339 | TESTCLASSID_CTOR(Normalizer, (emptyString, UNORM_NONE)); | |
340 | const Normalizer2 *noNormalizer2 = NULL; | |
341 | UnicodeSet emptySet; | |
342 | TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet)); | |
b75a7d8f | 343 | TESTCLASSID_FACTORY(CanonicalIterator, new CanonicalIterator(UnicodeString("abc"), status)); |
729e4ab9 A |
344 | #endif |
345 | #if !UCONFIG_NO_IDNA | |
346 | TESTCLASSID_NONE_FACTORY(IDNA, IDNA::createUTS46Instance(0, status)); | |
b75a7d8f A |
347 | #endif |
348 | //TESTCLASSID_DEFAULT(CollationElementIterator); | |
349 | #if !UCONFIG_NO_COLLATION | |
350 | TESTCLASSID_DEFAULT(CollationKey); | |
73c04bcf | 351 | TESTCLASSID_FACTORY(UStringEnumeration, Collator::getKeywords(status)); |
46f4442e | 352 | //TESTCLASSID_FACTORY_HIDDEN(CollationLocaleListEnumeration, Collator::getAvailableLocales()); |
b75a7d8f A |
353 | #endif |
354 | //TESTCLASSID_FACTORY(CompoundTransliterator, Transliterator::createInstance(UnicodeString("Any-Jex;Hangul-Jamo"), UTRANS_FORWARD, parseError, status)); | |
355 | ||
356 | #if !UCONFIG_NO_FORMATTING | |
357 | /* TESTCLASSID_FACTORY(NFSubstitution, NFSubstitution::makeSubstitution(8, */ | |
358 | /* TESTCLASSID_DEFAULT(DigitList); UMemory but not UObject*/ | |
359 | TESTCLASSID_ABSTRACT(NumberFormat); | |
73c04bcf A |
360 | TESTCLASSID_CTOR(RuleBasedNumberFormat, (UnicodeString("%default: -x: minus >>;"), parseError, status)); |
361 | TESTCLASSID_CTOR(ChoiceFormat, (UNICODE_STRING_SIMPLE("0#are no files|1#is one file|1<are many files"), status)); | |
362 | TESTCLASSID_CTOR(MessageFormat, (UnicodeString(), status)); | |
b75a7d8f | 363 | TESTCLASSID_CTOR(DateFormatSymbols, (status)); |
46f4442e A |
364 | TESTCLASSID_CTOR(PluralFormat, (status)); |
365 | TESTCLASSID_CTOR(PluralRules, (status)); | |
729e4ab9 | 366 | TESTCLASSID_CTOR(SelectFormat, (UnicodeString("feminine {feminineVerbValue} other{otherVerbValue}"), status) ); |
46f4442e A |
367 | TESTCLASSID_FACTORY(DateTimePatternGenerator, DateTimePatternGenerator::createInstance(status)); |
368 | TESTCLASSID_FACTORY(RelativeDateFormat, DateFormat::createDateInstance(DateFormat::kFullRelative, Locale::getUS())); | |
b75a7d8f | 369 | TESTCLASSID_CTOR(DecimalFormatSymbols, (status)); |
b75a7d8f A |
370 | TESTCLASSID_DEFAULT(FieldPosition); |
371 | TESTCLASSID_DEFAULT(Formattable); | |
4388f060 A |
372 | |
373 | static const UChar SMALL_STR[] = {0x51, 0x51, 0x51, 0}; // "QQQ" | |
73c04bcf A |
374 | TESTCLASSID_CTOR(CurrencyAmount, (1.0, SMALL_STR, status)); |
375 | TESTCLASSID_CTOR(CurrencyUnit, (SMALL_STR, status)); | |
729e4ab9 | 376 | TESTCLASSID_NONE_FACTORY(LocaleDisplayNames, LocaleDisplayNames::createInstance("de")); |
46f4442e A |
377 | TESTCLASSID_FACTORY_HIDDEN(CurrencyFormat, MeasureFormat::createCurrencyFormat(Locale::getUS(), status)); |
378 | TESTCLASSID_FACTORY(GregorianCalendar, Calendar::createInstance(Locale("@calendar=gregorian"), status)); | |
379 | TESTCLASSID_FACTORY(BuddhistCalendar, Calendar::createInstance(Locale("@calendar=buddhist"), status)); | |
380 | TESTCLASSID_FACTORY(IslamicCalendar, Calendar::createInstance(Locale("@calendar=islamic"), status)); | |
381 | TESTCLASSID_FACTORY(JapaneseCalendar, Calendar::createInstance(Locale("@calendar=japanese"), status)); | |
382 | TESTCLASSID_FACTORY(HebrewCalendar, Calendar::createInstance(Locale("@calendar=hebrew"), status)); | |
383 | TESTCLASSID_FACTORY(PersianCalendar, Calendar::createInstance(Locale("@calendar=persian"), status)); | |
384 | TESTCLASSID_FACTORY(IndianCalendar, Calendar::createInstance(Locale("@calendar=indian"), status)); | |
385 | TESTCLASSID_FACTORY(ChineseCalendar, Calendar::createInstance(Locale("@calendar=chinese"), status)); | |
386 | TESTCLASSID_FACTORY(TaiwanCalendar, Calendar::createInstance(Locale("@calendar=roc"), status)); | |
4388f060 | 387 | #if U_PLATFORM_USES_ONLY_WIN32_API |
f3c0d7a5 | 388 | TESTCLASSID_FACTORY(Win32DateFormat, DateFormat::createDateInstance(DateFormat::kFull, Locale("@compat=host"))); |
46f4442e A |
389 | TESTCLASSID_FACTORY(Win32NumberFormat, NumberFormat::createInstance(Locale("@compat=host"), status)); |
390 | #endif | |
b75a7d8f A |
391 | #endif |
392 | ||
729e4ab9 | 393 | #if !UCONFIG_NO_BREAK_ITERATION && !UCONFIG_NO_FILE_IO |
b75a7d8f A |
394 | /* TESTCLASSID_ABSTRACT(BreakIterator); No staticID! */ |
395 | TESTCLASSID_FACTORY(RuleBasedBreakIterator, BreakIterator::createLineInstance("mt",status)); | |
73c04bcf | 396 | //TESTCLASSID_FACTORY(DictionaryBasedBreakIterator, BreakIterator::createLineInstance("th",status)); |
46f4442e A |
397 | |
398 | #if !UCONFIG_NO_SERVICE | |
399 | TESTCLASSID_FACTORY_HIDDEN(ICULocaleService, BreakIterator::getAvailableLocales()); | |
400 | #endif | |
b75a7d8f A |
401 | #endif |
402 | ||
b75a7d8f A |
403 | //TESTCLASSID_DEFAULT(GregorianCalendar); |
404 | ||
405 | #if !UCONFIG_NO_TRANSLITERATION | |
b75a7d8f A |
406 | TESTCLASSID_TRANSLIT(AnyTransliterator, "Any-Latin"); |
407 | TESTCLASSID_TRANSLIT(CompoundTransliterator, "Latin-Greek"); | |
408 | TESTCLASSID_TRANSLIT(EscapeTransliterator, "Any-Hex"); | |
409 | TESTCLASSID_TRANSLIT(LowercaseTransliterator, "Lower"); | |
410 | TESTCLASSID_TRANSLIT(NameUnicodeTransliterator, "Name-Any"); | |
411 | TESTCLASSID_TRANSLIT(NormalizationTransliterator, "NFD"); | |
412 | TESTCLASSID_TRANSLIT(NullTransliterator, "Null"); | |
413 | TESTCLASSID_TRANSLIT(RemoveTransliterator, "Remove"); | |
46f4442e | 414 | TESTCLASSID_FACTORY(RuleBasedTransliterator, Transliterator::createFromRules(UnicodeString("abcd"),UnicodeString("a>b;"),UTRANS_FORWARD,parseError,status)); |
b75a7d8f A |
415 | TESTCLASSID_TRANSLIT(TitlecaseTransliterator, "Title"); |
416 | TESTCLASSID_TRANSLIT(UnescapeTransliterator, "Hex-Any"); | |
417 | TESTCLASSID_TRANSLIT(UnicodeNameTransliterator, "Any-Name"); | |
418 | TESTCLASSID_TRANSLIT(UppercaseTransliterator, "Upper"); | |
46f4442e A |
419 | TESTCLASSID_ABSTRACT(CaseMapTransliterator); |
420 | TESTCLASSID_ABSTRACT(Transliterator); | |
421 | TESTCLASSID_FACTORY_HIDDEN(TransliteratorRegistry::Enumeration, Transliterator::getAvailableIDs(status)); | |
422 | ||
73c04bcf | 423 | #if UOBJTEST_TEST_INTERNALS |
46f4442e A |
424 | TESTCLASSID_CTOR(Quantifier, (NULL, 0, 0)); |
425 | TESTCLASSID_CTOR(FunctionReplacer, (NULL,NULL)); | |
426 | TESTCLASSID_CTOR(StringMatcher, (UnicodeString("x"), 0,0,0,TransliterationRuleData(status))); | |
427 | TESTCLASSID_CTOR(StringReplacer,(UnicodeString(),new TransliterationRuleData(status))); | |
73c04bcf | 428 | #endif |
b75a7d8f A |
429 | #endif |
430 | ||
431 | TESTCLASSID_FACTORY(Locale, new Locale("123")); | |
46f4442e | 432 | TESTCLASSID_FACTORY_HIDDEN(KeywordEnumeration, Locale("@a=b").createKeywords(status)); |
b75a7d8f A |
433 | |
434 | //TESTCLASSID_DEFAULT(NumeratorSubstitution); | |
435 | ||
436 | #if !UCONFIG_NO_TRANSLITERATION | |
437 | TESTCLASSID_DEFAULT(ParsePosition); | |
b75a7d8f A |
438 | #endif |
439 | ||
440 | ||
441 | // NO_REG_EX | |
442 | //TESTCLASSID_DEFAULT(RegexCompile); | |
443 | //TESTCLASSID_DEFAULT(RegexMatcher); | |
444 | //TESTCLASSID_DEFAULT(RegexPattern); | |
445 | ||
446 | //TESTCLASSID_DEFAULT(ReplaceableGlue); | |
447 | TESTCLASSID_FACTORY(ResourceBundle, new ResourceBundle(UnicodeString(), status) ); | |
448 | //TESTCLASSID_DEFAULT(RuleBasedTransliterator); | |
449 | ||
450 | //TESTCLASSID_DEFAULT(SimpleFwdCharIterator); | |
451 | //TESTCLASSID_DEFAULT(StringReplacer); | |
452 | //TESTCLASSID_DEFAULT(StringSearch); | |
453 | ||
b75a7d8f A |
454 | //TESTCLASSID_DEFAULT(TestMultipleKeyStringFactory); |
455 | //TESTCLASSID_DEFAULT(TestReplaceable); | |
374ca955 | 456 | |
b75a7d8f A |
457 | #if !UCONFIG_NO_FORMATTING |
458 | TESTCLASSID_ABSTRACT(TimeZone); | |
46f4442e A |
459 | TESTCLASSID_FACTORY(OlsonTimeZone, TimeZone::createTimeZone(UnicodeString("America/Los_Angeles"))); |
460 | TESTCLASSID_FACTORY_HIDDEN(KeywordEnumeration, TimeZone::createEnumeration()); | |
b75a7d8f | 461 | #endif |
4388f060 A |
462 | |
463 | TESTCLASSID_NONE_DEFAULT(DummyAppendable); | |
b75a7d8f A |
464 | TESTCLASSID_DEFAULT(UnicodeString); |
465 | TESTCLASSID_CTOR(UnicodeSet, (0, 1)); | |
466 | TESTCLASSID_ABSTRACT(UnicodeFilter); | |
467 | TESTCLASSID_ABSTRACT(UnicodeFunctor); | |
468 | TESTCLASSID_CTOR(UnicodeSetIterator,(UnicodeSet(0,1))); | |
469 | TESTCLASSID_CTOR(UStack, (status)); | |
470 | TESTCLASSID_CTOR(UVector, (status)); | |
73c04bcf | 471 | TESTCLASSID_CTOR(UVector32, (status)); |
b75a7d8f A |
472 | |
473 | #if !UCONFIG_NO_SERVICE | |
474 | TESTCLASSID_CTOR(SimpleFactory, (NULL, UnicodeString("foo"))); | |
475 | TESTCLASSID_DEFAULT(EventListener); | |
b75a7d8f | 476 | TESTCLASSID_DEFAULT(ICUResourceBundleFactory); |
73c04bcf A |
477 | //TESTCLASSID_DEFAULT(Key); // does not exist? |
478 | UnicodeString baz("baz"); | |
479 | UnicodeString bat("bat"); | |
480 | TESTCLASSID_FACTORY(LocaleKey, LocaleKey::createWithCanonicalFallback(&baz, &bat, LocaleKey::KIND_ANY, status)); | |
b75a7d8f | 481 | TESTCLASSID_CTOR(SimpleLocaleKeyFactory, (NULL, UnicodeString("bar"), 8, 12) ); |
73c04bcf A |
482 | TESTCLASSID_CTOR(TestLocaleKeyFactory, (42)); // Test replacement for LocaleKeyFactory |
483 | //#if UOBJTEST_TEST_INTERNALS | |
484 | // TESTCLASSID_CTOR(LocaleKeyFactory, (42)); | |
485 | //#endif | |
b75a7d8f A |
486 | #endif |
487 | ||
4388f060 A |
488 | #if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION |
489 | TESTCLASSID_NONE_CTOR(AlphabeticIndex, (Locale::getEnglish(), status)); | |
490 | #endif | |
491 | ||
b75a7d8f A |
492 | #if UOBJTEST_DUMP_IDS |
493 | int i; | |
494 | for(i=0;i<ids_count;i++) { | |
495 | char junk[800]; | |
496 | sprintf(junk, " %4d:\t%p\t%s\t%s\n", | |
497 | i, ids[i], ids_class[i], ids_factory[i]); | |
498 | logln(UnicodeString(junk)); | |
499 | } | |
500 | #endif | |
501 | } | |
502 | ||
374ca955 A |
503 | void UObjectTest::testUMemory() { |
504 | // additional tests for code coverage | |
505 | #if U_OVERRIDE_CXX_ALLOCATION && U_HAVE_PLACEMENT_NEW | |
729e4ab9 A |
506 | union { |
507 | UAlignedMemory align_; | |
508 | char bytes_[sizeof(UnicodeString)]; | |
509 | } stackMemory; | |
510 | char *bytes = stackMemory.bytes_; | |
374ca955 A |
511 | UnicodeString *p; |
512 | enum { len=20 }; | |
513 | ||
729e4ab9 A |
514 | p=new(bytes) UnicodeString(len, (UChar32)0x20ac, len); |
515 | if((void *)p!=(void *)bytes) { | |
374ca955 A |
516 | errln("placement new did not place the object at the expected address"); |
517 | } | |
518 | if(p->length()!=len || p->charAt(0)!=0x20ac || p->charAt(len-1)!=0x20ac) { | |
519 | errln("constructor used with placement new did not work right"); | |
520 | } | |
521 | ||
522 | /* | |
523 | * It is not possible to simply say | |
524 | * delete(p, stackMemory); | |
525 | * which results in a call to the normal, non-placement delete operator. | |
526 | * | |
527 | * Via a search on google.com for "c++ placement delete" I found | |
528 | * http://cpptips.hyperformix.com/cpptips/placement_del3 | |
529 | * which says: | |
530 | * | |
531 | * TITLE: using placement delete | |
532 | * | |
533 | * (Newsgroups: comp.std.c++, 27 Aug 97) | |
534 | * | |
535 | * ISJ: isj@image.dk | |
536 | * | |
537 | * > I do not completely understand how placement works on operator delete. | |
538 | * > ... | |
539 | * There is no delete-expression which will invoke a placement | |
540 | * form of operator delete. You can still call the function | |
541 | * explicitly. Example: | |
542 | * ... | |
543 | * // destroy object and delete space manually | |
544 | * p->~T(); | |
545 | * operator delete(p, 12); | |
546 | * | |
547 | * ... so that's what I am doing here. | |
548 | * markus 20031216 | |
549 | */ | |
550 | // destroy object and delete space manually | |
551 | p->~UnicodeString(); | |
729e4ab9 A |
552 | |
553 | // You normally wouldn't call an operator delete for object placed on the | |
554 | // stack with a placement new(). | |
555 | // This overload of delete is a nop, and is called here for code coverage purposes. | |
556 | UnicodeString::operator delete(p, bytes); | |
73c04bcf A |
557 | |
558 | // Jitterbug 4452, for coverage | |
559 | UnicodeString *pa = new UnicodeString[2]; | |
560 | if ( !pa[0].isEmpty() || !pa[1].isEmpty()){ | |
561 | errln("constructor used with array new did not work right"); | |
562 | } | |
563 | delete [] pa; | |
374ca955 A |
564 | #endif |
565 | ||
566 | // try to call the compiler-generated UMemory::operator=(class UMemory const &) | |
567 | UMemory m, n; | |
568 | m=n; | |
569 | } | |
570 | ||
73c04bcf A |
571 | void UObjectTest::TestMFCCompatibility() { |
572 | #if U_HAVE_DEBUG_LOCATION_NEW | |
573 | /* Make sure that it compiles with MFC's debuggable new usage. */ | |
574 | UnicodeString *str = new(__FILE__, __LINE__) UnicodeString(); | |
575 | str->append((UChar)0x0040); // Is it usable? | |
576 | if(str->charAt(0) != 0x0040) { | |
577 | errln("debug new doesn't work."); | |
578 | } | |
579 | UnicodeString::operator delete(str, __FILE__, __LINE__); | |
580 | #endif | |
581 | } | |
582 | ||
729e4ab9 | 583 | void UObjectTest::TestCompilerRTTI() { |
4388f060 | 584 | #if !UCONFIG_NO_FORMATTING |
729e4ab9 A |
585 | UErrorCode errorCode = U_ZERO_ERROR; |
586 | NumberFormat *nf = NumberFormat::createInstance("de", errorCode); | |
587 | if (U_FAILURE(errorCode)) { | |
588 | dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(errorCode)); | |
589 | return; | |
590 | } | |
591 | if (dynamic_cast<DecimalFormat *>(nf) == NULL || dynamic_cast<ChoiceFormat *>(nf) != NULL) { | |
592 | errln("dynamic_cast<>(NumberFormat) failed"); | |
593 | } | |
594 | UnicodeSet emptySet; | |
595 | if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) == typeid(Format) || | |
596 | typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceFormat) || | |
597 | typeid(*nf) == typeid(emptySet) | |
598 | ) { | |
599 | errln("typeid(NumberFormat) failed"); | |
600 | } | |
601 | delete nf; | |
4388f060 | 602 | #endif |
729e4ab9 | 603 | } |
b75a7d8f | 604 | |
729e4ab9 | 605 | /* --------------- */ |
b75a7d8f A |
606 | |
607 | void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /* par */ ) | |
608 | { | |
609 | switch (index) { | |
610 | ||
729e4ab9 A |
611 | TESTCASE(0, testIDs); |
612 | TESTCASE(1, testUMemory); | |
613 | TESTCASE(2, TestMFCCompatibility); | |
614 | TESTCASE(3, TestCompilerRTTI); | |
b75a7d8f A |
615 | |
616 | default: name = ""; break; //needed to end loop | |
617 | } | |
618 | } |