+ // adoptInstead(), orphan()
+ s.adoptInstead(new UnicodeString((UChar)0xfffc));
+ if(s->length()!=1) {
+ errln("LocalPointer adoptInstead(U+FFFC) failure");
+ }
+ UnicodeString *orphan=s.orphan();
+ if(orphan==NULL || orphan->length()!=1 || s.isValid() || s!=NULL) {
+ errln("LocalPointer orphan() failure");
+ }
+ delete orphan;
+ // destructor
+ s.adoptInstead(new UnicodeString());
+ if(s->length()!=0) {
+ errln("LocalPointer adoptInstead(empty) failure");
+ }
+}
+
+// Exercise every LocalArray method (but not LocalPointerBase).
+void LocalPointerTest::TestLocalArray() {
+ // constructor
+ LocalArray<UnicodeString> a(new UnicodeString[2]);
+ // operator[]()
+ a[0].append((UChar)0x61);
+ a[1].append((UChar32)0x60006);
+ if(a[0].length()!=1 || a[1].length()!=2) {
+ errln("LocalArray access failure");
+ }
+ // adoptInstead()
+ a.adoptInstead(new UnicodeString[4]);
+ a[3].append((UChar)0x62).append((UChar)0x63).reverse();
+ if(a[3].length()!=2 || a[3][1]!=0x62) {
+ errln("LocalArray adoptInstead() failure");
+ }
+ // destructor
+}
+
+#include "unicode/ucnvsel.h"
+#include "unicode/ucal.h"
+#include "unicode/udatpg.h"
+#include "unicode/uidna.h"
+#include "unicode/uldnames.h"
+#include "unicode/umsg.h"
+#include "unicode/unorm2.h"
+#include "unicode/uregex.h"
+#include "unicode/utrans.h"
+
+// Use LocalXyzPointer types that are not covered elsewhere in the intltest suite.
+void LocalPointerTest::TestLocalXyzPointer() {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointer");
+
+ static const char *const encoding="ISO-8859-1";
+ LocalUConverterSelectorPointer sel(
+ ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
+ if(errorCode.logIfFailureAndReset("ucnvsel_open()")) {
+ return;
+ }
+ if(sel.isNull()) {
+ errln("LocalUConverterSelectorPointer failure");
+ return;
+ }
+
+#if !UCONFIG_NO_FORMATTING
+ LocalUCalendarPointer cal(ucal_open(NULL, 0, "root", UCAL_GREGORIAN, errorCode));
+ if(errorCode.logDataIfFailureAndReset("ucal_open()")) {
+ return;
+ }
+ if(cal.isNull()) {
+ errln("LocalUCalendarPointer failure");
+ return;
+ }
+
+ LocalUDateTimePatternGeneratorPointer patgen(udatpg_open("root", errorCode));
+ if(errorCode.logDataIfFailureAndReset("udatpg_open()")) {
+ return;
+ }
+ if(patgen.isNull()) {
+ errln("LocalUDateTimePatternGeneratorPointer failure");
+ return;
+ }
+
+ LocalULocaleDisplayNamesPointer ldn(uldn_open("de-CH", ULDN_STANDARD_NAMES, errorCode));
+ if(errorCode.logIfFailureAndReset("uldn_open()")) {
+ return;
+ }
+ if(ldn.isNull()) {
+ errln("LocalULocaleDisplayNamesPointer failure");
+ return;
+ }
+
+ UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!");
+ LocalUMessageFormatPointer msg(
+ umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
+ if(errorCode.logIfFailureAndReset("umsg_open()")) {
+ return;
+ }
+ if(msg.isNull()) {
+ errln("LocalUMessageFormatPointer failure");
+ return;
+ }
+#endif /* UCONFIG_NO_FORMATTING */
+
+#if !UCONFIG_NO_NORMALIZATION
+ const UNormalizer2 *nfc=unorm2_getNFCInstance(errorCode);
+ UnicodeSet emptySet;
+ LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
+ if(errorCode.logIfFailureAndReset("unorm2_openFiltered()")) {
+ return;
+ }
+ if(fn2.isNull()) {
+ errln("LocalUNormalizer2Pointer failure");
+ return;
+ }
+#endif /* !UCONFIG_NO_NORMALIZATION */
+
+#if !UCONFIG_NO_IDNA
+ LocalUIDNAPointer idna(uidna_openUTS46(0, errorCode));
+ if(errorCode.logIfFailureAndReset("uidna_openUTS46()")) {
+ return;
+ }
+ if(idna.isNull()) {
+ errln("LocalUIDNAPointer failure");
+ return;
+ }
+#endif /* !UCONFIG_NO_IDNA */
+
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS
+ UnicodeString pattern=UNICODE_STRING_SIMPLE("abc|xy+z");
+ LocalURegularExpressionPointer regex(
+ uregex_open(pattern.getBuffer(), pattern.length(), 0, NULL, errorCode));
+ if(errorCode.logIfFailureAndReset("uregex_open()")) {
+ return;
+ }
+ if(regex.isNull()) {
+ errln("LocalURegularExpressionPointer failure");
+ return;
+ }
+#endif /* UCONFIG_NO_REGULAR_EXPRESSIONS */
+
+#if !UCONFIG_NO_TRANSLITERATION
+ UnicodeString id=UNICODE_STRING_SIMPLE("Grek-Latn");
+ LocalUTransliteratorPointer trans(
+ utrans_openU(id.getBuffer(), id.length(), UTRANS_FORWARD, NULL, 0, NULL, errorCode));
+ if(errorCode.logIfFailureAndReset("utrans_open()")) {
+ return;
+ }
+ if(trans.isNull()) {
+ errln("LocalUTransliteratorPointer failure");
+ return;
+ }
+#endif /* !UCONFIG_NO_TRANSLITERATION */
+
+ // destructors
+}
+
+// Try LocalXyzPointer types with NULL pointers.
+void LocalPointerTest::TestLocalXyzPointerNull() {
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalUConverterSelectorPointer");
+ static const char *const encoding="ISO-8859-1";
+ LocalUConverterSelectorPointer null;
+ LocalUConverterSelectorPointer sel(
+ ucnvsel_open(&encoding, 1, NULL, UCNV_ROUNDTRIP_SET, errorCode));
+ sel.adoptInstead(NULL);
+ }
+#if !UCONFIG_NO_FORMATTING
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalUCalendarPointer");
+ LocalUCalendarPointer null;
+ LocalUCalendarPointer cal(ucal_open(NULL, 0, "root", UCAL_GREGORIAN, errorCode));
+ if(!errorCode.logDataIfFailureAndReset("ucal_open()")) {
+ cal.adoptInstead(NULL);
+ }
+ }
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalUDateTimePatternGeneratorPointer");
+ LocalUDateTimePatternGeneratorPointer null;
+ LocalUDateTimePatternGeneratorPointer patgen(udatpg_open("root", errorCode));
+ patgen.adoptInstead(NULL);
+ }
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalUMessageFormatPointer");
+ UnicodeString hello=UNICODE_STRING_SIMPLE("Hello {0}!");
+ LocalUMessageFormatPointer null;
+ LocalUMessageFormatPointer msg(
+ umsg_open(hello.getBuffer(), hello.length(), "root", NULL, errorCode));
+ msg.adoptInstead(NULL);
+ }
+#endif /* !UCONFIG_NO_FORMATTING */
+
+#if !UCONFIG_NO_REGULAR_EXPRESSIONS
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalURegularExpressionPointer");
+ UnicodeString pattern=UNICODE_STRING_SIMPLE("abc|xy+z");
+ LocalURegularExpressionPointer null;
+ LocalURegularExpressionPointer regex(
+ uregex_open(pattern.getBuffer(), pattern.length(), 0, NULL, errorCode));
+ if(!errorCode.logDataIfFailureAndReset("urege_open()")) {
+ regex.adoptInstead(NULL);
+ }
+ }
+#endif /* !UCONFIG_NO_REGULAR_EXPRESSIONS */
+
+#if !UCONFIG_NO_TRANSLITERATION
+ {
+ IcuTestErrorCode errorCode(*this, "TestLocalXyzPointerNull/LocalUTransliteratorPointer");
+ UnicodeString id=UNICODE_STRING_SIMPLE("Grek-Latn");
+ LocalUTransliteratorPointer null;
+ LocalUTransliteratorPointer trans(
+ utrans_openU(id.getBuffer(), id.length(), UTRANS_FORWARD, NULL, 0, NULL, errorCode));
+ if(!errorCode.logDataIfFailureAndReset("utrans_openU()")) {
+ trans.adoptInstead(NULL);
+ }
+ }
+#endif /* !UCONFIG_NO_TRANSLITERATION */
+
+}
+
+/** EnumSet test **/
+#include "unicode/enumset.h"
+
+class EnumSetTest : public IntlTest {
+public:
+ EnumSetTest() {}
+ virtual void runIndexedTest(int32_t index, UBool exec, const char *&name, char *par=NULL);
+ void TestEnumSet();
+};
+
+static IntlTest *createEnumSetTest() {
+ return new EnumSetTest();