2000-01-15 02:00:06 +00:00
|
|
|
/********************************************************************
|
|
|
|
* COPYRIGHT:
|
|
|
|
* Copyright (c) 1997-1999, International Business Machines Corporation and
|
|
|
|
* others. All Rights Reserved.
|
|
|
|
********************************************************************/
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Collation Iterator tests.
|
|
|
|
* (Let me reiterate my position...)
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _ITERCOLL
|
|
|
|
#define _ITERCOLL
|
|
|
|
|
|
|
|
#ifndef _UTYPES
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/utypes.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COLL
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/coll.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _TBLCOLL
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/tblcoll.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _COLEITR
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/coleitr.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _INTLTEST
|
|
|
|
#include "intltest.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _UNISTR
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/unistr.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
class CollationIteratorTest: public IntlTest
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
enum EToken_Len { MAX_TOKEN_LEN = 128 };
|
|
|
|
|
|
|
|
CollationIteratorTest();
|
2000-04-18 17:58:18 +00:00
|
|
|
virtual ~CollationIteratorTest();
|
1999-08-16 21:50:52 +00:00
|
|
|
|
2000-08-14 21:42:36 +00:00
|
|
|
void runIndexedTest(int32_t index, UBool exec, const char* &name, char* par = NULL);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for CollationElementIterator.previous()
|
|
|
|
*
|
|
|
|
* @bug 4108758 - Make sure it works with contracting characters
|
|
|
|
*
|
|
|
|
*/
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestPrevious(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for getOffset() and setOffset()
|
|
|
|
*/
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestOffset(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Test for setText()
|
|
|
|
*/
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestSetText(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/** @bug 4108762
|
|
|
|
* Test for getMaxExpansion()
|
|
|
|
*/
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestMaxExpansion(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* @bug 4157299
|
|
|
|
*/
|
2000-08-23 19:11:16 +00:00
|
|
|
void TestClearBuffers(/* char* par */);
|
1999-08-16 21:50:52 +00:00
|
|
|
|
|
|
|
//------------------------------------------------------------------------
|
|
|
|
// Internal utilities
|
|
|
|
//
|
|
|
|
|
|
|
|
private:
|
|
|
|
void backAndForth(CollationElementIterator &iter);
|
|
|
|
|
|
|
|
struct ExpansionRecord
|
|
|
|
{
|
|
|
|
UChar character;
|
|
|
|
int32_t count;
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Verify that getMaxExpansion works on a given set of collation rules
|
|
|
|
*/
|
|
|
|
void verifyExpansion(UnicodeString rules, ExpansionRecord tests[], int32_t testCount);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return an integer array containing all of the collation orders
|
|
|
|
* returned by calls to next on the specified iterator
|
|
|
|
*/
|
|
|
|
int32_t *getOrders(CollationElementIterator &iter, int32_t &orderLength);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a string containing all of the collation orders
|
|
|
|
* returned by calls to next on the specified iterator
|
|
|
|
*/
|
|
|
|
UnicodeString &orderString(CollationElementIterator &iter, UnicodeString &target);
|
|
|
|
|
|
|
|
void assertEqual(CollationElementIterator &i1, CollationElementIterator &i2);
|
|
|
|
|
|
|
|
RuleBasedCollator *en_us;
|
|
|
|
static const UnicodeString test1;
|
|
|
|
static const UnicodeString test2;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|