You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
138 lines
4.0 KiB
138 lines
4.0 KiB
// © 2016 and later: Unicode, Inc. and others.
|
|
// License & terms of use: http://www.unicode.org/copyright.html
|
|
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2016, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
#ifndef _TESTMESSAGEFORMAT
|
|
#define _TESTMESSAGEFORMAT
|
|
|
|
#include "unicode/utypes.h"
|
|
|
|
#if !UCONFIG_NO_FORMATTING
|
|
|
|
#include "unicode/unistr.h"
|
|
#include "unicode/fmtable.h"
|
|
#include "unicode/msgfmt.h"
|
|
#include "intltest.h"
|
|
|
|
/**
|
|
* TestMessageFormat tests MessageFormat, and also a few unctions in ChoiceFormat
|
|
*/
|
|
class TestMessageFormat: public IntlTest {
|
|
public:
|
|
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
|
|
|
|
/**
|
|
* regression test for a specific bug regarding ChoiceFormat boundaries
|
|
**/
|
|
void testBug1(void);
|
|
/**
|
|
* regression test for a specific bug regarding MessageFormat using ChoiceFormat
|
|
**/
|
|
void testBug2(void);
|
|
/**
|
|
* regression test for a specific bug involving NumberFormat and Locales
|
|
**/
|
|
void testBug3(void);
|
|
/**
|
|
* test MessageFormat with various given patterns
|
|
**/
|
|
void PatternTest(void);
|
|
/**
|
|
* test MesageFormat formatting functionality in a simple example
|
|
**/
|
|
void sample(void);
|
|
|
|
/**
|
|
* tests the static MessageFormat::format method
|
|
**/
|
|
void testStaticFormat(/* char* par */);
|
|
/**
|
|
* tests MesageFormat functionality with a simple format
|
|
**/
|
|
void testSimpleFormat(/* char* par */);
|
|
/**
|
|
* tests MesageFormat functionality with a format including a ChoiceFormat
|
|
**/
|
|
void testMsgFormatChoice(/* char* par */);
|
|
/**
|
|
* tests MesageFormat functionality with a PluralFormat.
|
|
**/
|
|
void testMsgFormatPlural(/* char* par */);
|
|
|
|
/**
|
|
* tests MessageFormat functionality with a SelectFormat.
|
|
**/
|
|
void testMsgFormatSelect(/* char* par */);
|
|
|
|
void testApostropheInPluralAndSelect();
|
|
|
|
/**
|
|
* Internal method to format a MessageFormat object with passed args
|
|
**/
|
|
void internalFormat(MessageFormat* msgFmt ,
|
|
Formattable* args , int32_t numOfArgs ,
|
|
UnicodeString expected, const char* errMsg);
|
|
|
|
/**
|
|
* Internal method to create a MessageFormat object with passed args
|
|
**/
|
|
MessageFormat* internalCreate(
|
|
UnicodeString pattern ,Locale locale , UErrorCode& err, char* errMsg);
|
|
|
|
/**
|
|
* Verify that MessageFormat accomodates more than 10 arguments
|
|
* and more than 10 subformats.
|
|
*/
|
|
void TestUnlimitedArgsAndSubformats();
|
|
|
|
/**
|
|
* Test RBNF extensions to MessageFormat.
|
|
*/
|
|
void TestRBNF();
|
|
|
|
void TestApostropheMode();
|
|
|
|
void TestCompatibleApostrophe();
|
|
|
|
/**
|
|
* ------------ API tests ----------
|
|
* These routines test various API functionality.
|
|
* In addition to the methods their name suggests,
|
|
* they often test other methods as well.
|
|
**/
|
|
void testCopyConstructor(void);
|
|
void testCopyConstructor2(void);
|
|
void testAssignment(void);
|
|
void testClone(void);
|
|
void testEquals(void);
|
|
void testNotEquals(void);
|
|
void testSetLocale(void);
|
|
void testFormat(void);
|
|
void testParse(void);
|
|
void testAdopt(void);
|
|
void TestTurkishCasing(void);
|
|
void testAutoQuoteApostrophe(void);
|
|
void testCoverage();
|
|
void testGetFormatNames();
|
|
void TestTrimArgumentName();
|
|
void TestSelectOrdinal();
|
|
void TestDecimals();
|
|
void TestArgIsPrefixOfAnother();
|
|
void TestMessageFormatNumberSkeleton();
|
|
void TestMessageFormatDateSkeleton();
|
|
void TestMessageFormatTimeSkeleton();
|
|
|
|
private:
|
|
UnicodeString GetPatternAndSkipSyntax(const MessagePattern& pattern);
|
|
void doTheRealDateTimeSkeletonTesting(UDate testDate,
|
|
const char16_t* messagePattern, const char* localeName, const char16_t* expected,
|
|
IcuTestErrorCode& status);
|
|
};
|
|
|
|
#endif /* #if !UCONFIG_NO_FORMATTING */
|
|
|
|
#endif
|