X-Git-Url: https://git.saurik.com/apple/icu.git/blobdiff_plain/73c04bcfe1096173b00431f0cdc742894b15eef0..4388f060552cc537e71e957d32f35e9d75a61233:/icuSources/test/intltest/uobjtest.cpp?ds=sidebyside diff --git a/icuSources/test/intltest/uobjtest.cpp b/icuSources/test/intltest/uobjtest.cpp index 28158606..4639966d 100644 --- a/icuSources/test/intltest/uobjtest.cpp +++ b/icuSources/test/intltest/uobjtest.cpp @@ -1,19 +1,31 @@ /******************************************************************** * COPYRIGHT: - * Copyright (c) 2002-2006, International Business Machines Corporation and + * Copyright (c) 1997-2011, International Business Machines Corporation and * others. All Rights Reserved. + * Copyright (C) 2010 , Yahoo! Inc. ********************************************************************/ +#include +#include +#include // for 'typeid' to work + #include "uobjtest.h" #include "cmemory.h" // UAlignedMemory -#include -#include /** - * * Test for UObject, currently only the classID. * * Usage + * TESTCLASSID_NONE_DEFAULT(Foo) + * -- Foo is expected to not support "poor man's RTTI". + * Beginning with ICU 4.6, we only use compiler RTTI in new class hierarchies. + * + * TESTCLASSID_NONE_CTOR(Foo, (1, 2, 3, status)) + * -- Combines TESTCLASSID_NONE_DEFAULT() and TESTCLASSID_CTOR(). + * + * TESTCLASSID_NONE_FACTORY(Foo, (1, 2, 3, status)) + * -- Combines TESTCLASSID_NONE_DEFAULT() and TESTCLASSID_FACTORY(). + * * TESTCLASSID_ABSTRACT(Bar) * -- Bar is expected to be abstract. Only the static ID will be tested. * @@ -26,91 +38,165 @@ * * TESTCLASSID_FACTORY(Foo, fooCreateFunction(status) ) * -- call fooCreateFunction. 'status' will be tested & reset + * + * TESTCLASSID_FACTORY_HIDDEN(class, factory) + * -- call factory. Class is not available from a header. + * 'status' will be tested & reset. This only tests uniqueness. */ - -#define TESTCLASSID_FACTORY(c, f) { delete testClass(f, #c, #f, c ::getStaticClassID()); if(U_FAILURE(status)) { errln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); status = U_ZERO_ERROR; } } -#define TESTCLASSID_TRANSLIT(c, t) { delete testClass(Transliterator::createInstance(UnicodeString(t), UTRANS_FORWARD,parseError,status), #c, "Transliterator: " #t, c ::getStaticClassID()); if(U_FAILURE(status)) { errln(UnicodeString(#c " - Transliterator: " #t " - got err status ") + UnicodeString(u_errorName(status))); status = U_ZERO_ERROR; } } -#define TESTCLASSID_CTOR(c, x) { delete testClass(new c x, #c, "new " #c #x, c ::getStaticClassID()); if(U_FAILURE(status)) { errln(UnicodeString(#c " - new " #x " - got err status ") + UnicodeString(u_errorName(status))); status = U_ZERO_ERROR; } } -#define TESTCLASSID_DEFAULT(c) delete testClass(new c, #c, "new " #c , c::getStaticClassID()) -#define TESTCLASSID_ABSTRACT(c) testClass(NULL, #c, NULL, c::getStaticClassID()) +#define TESTCLASSID_NONE_DEFAULT(c) \ + delete testClassNoClassID(new c, #c, "new " #c) +#define TESTCLASSID_NONE_CTOR(c, x) { \ + delete testClassNoClassID(new c x, #c, "new " #c #x); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - new " #x " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} +#define TESTCLASSID_NONE_FACTORY(c, f) { \ + delete testClassNoClassID(f, #c, #f); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} +#define TESTCLASSID_FACTORY(c, f) { \ + delete testClass(f, #c, #f, c ::getStaticClassID()); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} +#define TESTCLASSID_TRANSLIT(c, t) { \ + delete testClass(Transliterator::createInstance(UnicodeString(t), UTRANS_FORWARD,parseError,status), #c, "Transliterator: " #t, c ::getStaticClassID()); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - Transliterator: " #t " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} +#define TESTCLASSID_CTOR(c, x) { \ + delete testClass(new c x, #c, "new " #c #x, c ::getStaticClassID()); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - new " #x " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} +#define TESTCLASSID_DEFAULT(c) \ + delete testClass(new c, #c, "new " #c , c::getStaticClassID()) +#define TESTCLASSID_ABSTRACT(c) \ + testClass(NULL, #c, NULL, c::getStaticClassID()) +#define TESTCLASSID_FACTORY_HIDDEN(c, f) { \ + UObject *objVar = f; \ + delete testClass(objVar, #c, #f, objVar!=NULL? objVar->getDynamicClassID(): NULL); \ + if(U_FAILURE(status)) { \ + dataerrln(UnicodeString(#c " - " #f " - got err status ") + UnicodeString(u_errorName(status))); \ + status = U_ZERO_ERROR; \ + } \ +} #define MAX_CLASS_ID 200 -UClassID ids[MAX_CLASS_ID]; -const char *ids_factory[MAX_CLASS_ID]; -const char *ids_class[MAX_CLASS_ID]; -uint32_t ids_count = 0; +static UClassID ids[MAX_CLASS_ID]; +static const char *ids_factory[MAX_CLASS_ID]; +static const char *ids_class[MAX_CLASS_ID]; +static uint32_t ids_count = 0; UObject *UObjectTest::testClass(UObject *obj, const char *className, const char *factory, UClassID staticID) { - uint32_t i; - UnicodeString what = UnicodeString(className) + " * x= " + UnicodeString(factory?factory:" ABSTRACT ") + "; "; - UClassID dynamicID = NULL; - - if(ids_count >= MAX_CLASS_ID) { - char count[100]; - sprintf(count, " (currently %d) ", MAX_CLASS_ID); - errln("FAIL: Fatal: Ran out of IDs! Increase MAX_CLASS_ID." + UnicodeString(count) + what); - return obj; - } - - if(obj) { - dynamicID = obj->getDynamicClassID(); - } - - { - char tmp[500]; - sprintf(tmp, " [static=%p, dynamic=%p] ", staticID, dynamicID); - logln(what + tmp); - } - - if(staticID == NULL) { - errln( "FAIL: staticID == NULL!" + what); - } - - if(factory != NULL) { /* NULL factory means: abstract */ - if(!obj) { - errln( "FAIL: ==NULL!" + what); - return obj; + uint32_t i; + UnicodeString what = UnicodeString(className) + " * x= " + UnicodeString(factory?factory:" ABSTRACT ") + "; "; + UClassID dynamicID = NULL; + + if(ids_count >= MAX_CLASS_ID) { + char count[100]; + sprintf(count, " (currently %d) ", MAX_CLASS_ID); + errln("FAIL: Fatal: Ran out of IDs! Increase MAX_CLASS_ID." + UnicodeString(count) + what); + return obj; } - if(dynamicID == NULL) { - errln("FAIL: dynamicID == NULL!" + what); + if(obj) { + dynamicID = obj->getDynamicClassID(); } - - if(dynamicID != staticID) { - errln("FAIL: dynamicID != staticID!" + what ); + + { + char tmp[500]; + sprintf(tmp, " [static=%p, dynamic=%p] ", staticID, dynamicID); + logln(what + tmp); } - } - // Bail out if static ID is null - if(staticID == NULL) { - return obj; - } - - for(i=0;igetDynamicClassID(); + + { + char tmp[500]; + sprintf(tmp, " [dynamic=%p] ", dynamicID); + logln(what + tmp); + } + + if(factory != NULL) { /* NULL factory means: abstract */ + if(!obj) { + dataerrln( "FAIL: ==NULL! " + what); + return obj; + } + + if(dynamicID != NULL) { + errln("FAIL: dynamicID != NULL! for non-poor-man's-RTTI " + what); + } + } + + return obj; +} // begin actual #includes for things to be tested // @@ -152,9 +238,19 @@ UObject *UObjectTest::testClass(UObject *obj, #include "islamcal.h" #include "japancal.h" #include "hebrwcal.h" +#include "persncal.h" +#include "taiwncal.h" +#include "indiancal.h" +#include "chnsecal.h" +#include "windtfmt.h" +#include "winnmfmt.h" #include "ustrenum.h" +#include "olsontz.h" +#include "reldtfmt.h" // External Things +#include "unicode/appendable.h" +#include "unicode/alphaindex.h" #include "unicode/brkiter.h" #include "unicode/calendar.h" #include "unicode/caniter.h" @@ -164,19 +260,25 @@ UObject *UObjectTest::testClass(UObject *obj, #include "unicode/coll.h" #include "unicode/curramt.h" #include "unicode/datefmt.h" -#include "unicode/dbbi.h" #include "unicode/dcfmtsym.h" #include "unicode/decimfmt.h" #include "unicode/dtfmtsym.h" +#include "unicode/dtptngen.h" #include "unicode/fieldpos.h" #include "unicode/fmtable.h" #include "unicode/format.h" #include "unicode/gregocal.h" +#include "unicode/idna.h" +#include "unicode/locdspnm.h" #include "unicode/locid.h" #include "unicode/msgfmt.h" #include "unicode/normlzr.h" +#include "unicode/normalizer2.h" #include "unicode/numfmt.h" #include "unicode/parsepos.h" +#include "unicode/plurrule.h" +#include "unicode/plurfmt.h" +#include "unicode/selfmt.h" #include "unicode/rbbi.h" #include "unicode/rbnf.h" #include "unicode/regex.h" @@ -190,6 +292,7 @@ UObject *UObjectTest::testClass(UObject *obj, #include "unicode/timezone.h" #include "unicode/translit.h" #include "unicode/uchriter.h" +#include "unicode/uloc.h" #include "unicode/unifilt.h" #include "unicode/unifunct.h" #include "unicode/uniset.h" @@ -211,29 +314,38 @@ public: }; #endif +// Appendable is abstract; we define a subclass to verify that there is no "poor man's RTTI". +class DummyAppendable : public Appendable { +public: + virtual UBool appendCodeUnit(UChar /*c*/) { return TRUE; } +}; + void UObjectTest::testIDs() { ids_count = 0; UErrorCode status = U_ZERO_ERROR; - static const UChar SMALL_STR[] = {0x51, 0x51, 0x51, 0}; // "QQQ" #if !UCONFIG_NO_TRANSLITERATION || !UCONFIG_NO_FORMATTING UParseError parseError; #endif - - //TESTCLASSID_DEFAULT(AbbreviatedUnicodeSetIterator); - //TESTCLASSID_DEFAULT(AnonymousStringFactory); - - #if !UCONFIG_NO_NORMALIZATION + UnicodeString emptyString; + TESTCLASSID_CTOR(Normalizer, (emptyString, UNORM_NONE)); + const Normalizer2 *noNormalizer2 = NULL; + UnicodeSet emptySet; + TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet)); TESTCLASSID_FACTORY(CanonicalIterator, new CanonicalIterator(UnicodeString("abc"), status)); +#endif +#if !UCONFIG_NO_IDNA + TESTCLASSID_NONE_FACTORY(IDNA, IDNA::createUTS46Instance(0, status)); #endif //TESTCLASSID_DEFAULT(CollationElementIterator); #if !UCONFIG_NO_COLLATION TESTCLASSID_DEFAULT(CollationKey); TESTCLASSID_FACTORY(UStringEnumeration, Collator::getKeywords(status)); + //TESTCLASSID_FACTORY_HIDDEN(CollationLocaleListEnumeration, Collator::getAvailableLocales()); #endif //TESTCLASSID_FACTORY(CompoundTransliterator, Transliterator::createInstance(UnicodeString("Any-Jex;Hangul-Jamo"), UTRANS_FORWARD, parseError, status)); @@ -245,31 +357,50 @@ void UObjectTest::testIDs() TESTCLASSID_CTOR(ChoiceFormat, (UNICODE_STRING_SIMPLE("0#are no files|1#is one file|1b;"), status)); + TESTCLASSID_FACTORY(RuleBasedTransliterator, Transliterator::createFromRules(UnicodeString("abcd"),UnicodeString("a>b;"),UTRANS_FORWARD,parseError,status)); TESTCLASSID_TRANSLIT(TitlecaseTransliterator, "Title"); TESTCLASSID_TRANSLIT(UnescapeTransliterator, "Hex-Any"); TESTCLASSID_TRANSLIT(UnicodeNameTransliterator, "Any-Name"); TESTCLASSID_TRANSLIT(UppercaseTransliterator, "Upper"); - TESTCLASSID_CTOR(CaseMapTransliterator, (UnicodeString(), NULL)); - TESTCLASSID_CTOR(Quantifier, (NULL, 0, 0)); + TESTCLASSID_ABSTRACT(CaseMapTransliterator); + TESTCLASSID_ABSTRACT(Transliterator); + TESTCLASSID_FACTORY_HIDDEN(TransliteratorRegistry::Enumeration, Transliterator::getAvailableIDs(status)); + #if UOBJTEST_TEST_INTERNALS - TESTCLASSID_CTOR(FunctionReplacer, (NULL,NULL) ); /* don't care */ + TESTCLASSID_CTOR(Quantifier, (NULL, 0, 0)); + TESTCLASSID_CTOR(FunctionReplacer, (NULL,NULL)); + TESTCLASSID_CTOR(StringMatcher, (UnicodeString("x"), 0,0,0,TransliterationRuleData(status))); + TESTCLASSID_CTOR(StringReplacer,(UnicodeString(),new TransliterationRuleData(status))); #endif #endif TESTCLASSID_FACTORY(Locale, new Locale("123")); - - //TESTCLASSID_DEFAULT(Normalizer); + TESTCLASSID_FACTORY_HIDDEN(KeywordEnumeration, Locale("@a=b").createKeywords(status)); //TESTCLASSID_DEFAULT(NumeratorSubstitution); #if !UCONFIG_NO_TRANSLITERATION TESTCLASSID_DEFAULT(ParsePosition); - //TESTCLASSID_DEFAULT(Quantifier); #endif @@ -315,24 +449,16 @@ void UObjectTest::testIDs() //TESTCLASSID_DEFAULT(StringReplacer); //TESTCLASSID_DEFAULT(StringSearch); - //TESTCLASSID_DEFAULT(TempSearch); //TESTCLASSID_DEFAULT(TestMultipleKeyStringFactory); //TESTCLASSID_DEFAULT(TestReplaceable); #if !UCONFIG_NO_FORMATTING TESTCLASSID_ABSTRACT(TimeZone); + TESTCLASSID_FACTORY(OlsonTimeZone, TimeZone::createTimeZone(UnicodeString("America/Los_Angeles"))); + TESTCLASSID_FACTORY_HIDDEN(KeywordEnumeration, TimeZone::createEnumeration()); #endif -#if !UCONFIG_NO_TRANSLITERATION - TESTCLASSID_FACTORY(TitlecaseTransliterator, Transliterator::createInstance(UnicodeString("Any-Title"), UTRANS_FORWARD, parseError, status)); - TESTCLASSID_ABSTRACT(Transliterator); - -#if UOBJTEST_TEST_INTERNALS - TESTCLASSID_CTOR(StringMatcher, (UnicodeString("x"), 0,0,0,TransliterationRuleData(status))); - TESTCLASSID_CTOR(StringReplacer,(UnicodeString(),new TransliterationRuleData(status))); -#endif -#endif - + TESTCLASSID_NONE_DEFAULT(DummyAppendable); TESTCLASSID_DEFAULT(UnicodeString); TESTCLASSID_CTOR(UnicodeSet, (0, 1)); TESTCLASSID_ABSTRACT(UnicodeFilter); @@ -357,6 +483,10 @@ void UObjectTest::testIDs() //#endif #endif +#if !UCONFIG_NO_COLLATION && !UCONFIG_NO_NORMALIZATION + TESTCLASSID_NONE_CTOR(AlphabeticIndex, (Locale::getEnglish(), status)); +#endif + #if UOBJTEST_DUMP_IDS int i; for(i=0;ilength()!=len || p->charAt(0)!=0x20ac || p->charAt(len-1)!=0x20ac) { @@ -413,7 +547,11 @@ void UObjectTest::testUMemory() { */ // destroy object and delete space manually p->~UnicodeString(); - UnicodeString::operator delete(p, stackMemory); + + // You normally wouldn't call an operator delete for object placed on the + // stack with a placement new(). + // This overload of delete is a nop, and is called here for code coverage purposes. + UnicodeString::operator delete(p, bytes); // Jitterbug 4452, for coverage UnicodeString *pa = new UnicodeString[2]; @@ -440,18 +578,38 @@ void UObjectTest::TestMFCCompatibility() { #endif } -/* --------------- */ - -#define CASE(id,test) case id: name = #test; if (exec) { logln(#test "---"); logln((UnicodeString)""); test(); } break; +void UObjectTest::TestCompilerRTTI() { +#if !UCONFIG_NO_FORMATTING + UErrorCode errorCode = U_ZERO_ERROR; + NumberFormat *nf = NumberFormat::createInstance("de", errorCode); + if (U_FAILURE(errorCode)) { + dataerrln("NumberFormat::createInstance(de) failed - %s", u_errorName(errorCode)); + return; + } + if (dynamic_cast(nf) == NULL || dynamic_cast(nf) != NULL) { + errln("dynamic_cast<>(NumberFormat) failed"); + } + UnicodeSet emptySet; + if (&typeid(*nf) == NULL || typeid(*nf) == typeid(UObject) || typeid(*nf) == typeid(Format) || + typeid(*nf) != typeid(DecimalFormat) || typeid(*nf) == typeid(ChoiceFormat) || + typeid(*nf) == typeid(emptySet) + ) { + errln("typeid(NumberFormat) failed"); + } + delete nf; +#endif +} +/* --------------- */ void UObjectTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /* par */ ) { switch (index) { - CASE(0, testIDs); - CASE(1, testUMemory); - CASE(2, TestMFCCompatibility); + TESTCASE(0, testIDs); + TESTCASE(1, testUMemory); + TESTCASE(2, TestMFCCompatibility); + TESTCASE(3, TestCompilerRTTI); default: name = ""; break; //needed to end loop }