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
|
|
|
|
|
|
|
#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 _UNISTR
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/unistr.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _SORTKEY
|
1999-12-28 23:57:50 +00:00
|
|
|
#include "unicode/sortkey.h"
|
1999-08-16 21:50:52 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef _FICOLL
|
|
|
|
#include "ficoll.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
CollationFinnishTest::CollationFinnishTest()
|
|
|
|
: myCollation(0)
|
|
|
|
{
|
1999-10-07 00:07:53 +00:00
|
|
|
UErrorCode status = U_ZERO_ERROR;
|
1999-08-16 21:50:52 +00:00
|
|
|
myCollation = Collator::createInstance(Locale("fi", "FI", ""),status);
|
|
|
|
}
|
|
|
|
|
|
|
|
CollationFinnishTest::~CollationFinnishTest()
|
|
|
|
{
|
|
|
|
delete myCollation;
|
|
|
|
}
|
|
|
|
|
|
|
|
const UChar CollationFinnishTest::testSourceCases[][CollationFinnishTest::MAX_TOKEN_LEN] = {
|
2000-03-22 23:17:42 +00:00
|
|
|
{0x77, 0x61, 0x74, 0},
|
|
|
|
{0x76, 0x61, 0x74, 0},
|
|
|
|
{0x61, 0x00FC, 0x62, 0x65, 0x63, 0x6b, 0},
|
|
|
|
{0x4c, 0x00E5, 0x76, 0x69, 0},
|
|
|
|
{0x77, 0x61, 0x74, 0}
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const UChar CollationFinnishTest::testTargetCases[][CollationFinnishTest::MAX_TOKEN_LEN] = {
|
2000-03-22 23:17:42 +00:00
|
|
|
{0x76, 0x61, 0x74, 0},
|
|
|
|
{0x77, 0x61, 0x79, 0},
|
|
|
|
{0x61, 0x78, 0x62, 0x65, 0x63, 0x6b, 0},
|
|
|
|
{0x4c, 0x00E4, 0x77, 0x65, 0},
|
|
|
|
{0x76, 0x61, 0x74, 0}
|
1999-08-16 21:50:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
const Collator::EComparisonResult CollationFinnishTest::results[] = {
|
|
|
|
Collator::GREATER,
|
|
|
|
Collator::LESS,
|
|
|
|
Collator::GREATER,
|
|
|
|
Collator::LESS,
|
|
|
|
// test primary > 4
|
|
|
|
Collator::EQUAL,
|
|
|
|
};
|
|
|
|
|
|
|
|
void CollationFinnishTest::doTest( UnicodeString source, UnicodeString target, Collator::EComparisonResult result)
|
|
|
|
{
|
|
|
|
Collator::EComparisonResult compareResult = myCollation->compare(source, target);
|
|
|
|
CollationKey sortKey1, sortKey2;
|
1999-10-07 00:07:53 +00:00
|
|
|
UErrorCode key1status = U_ZERO_ERROR, key2status = U_ZERO_ERROR; //nos
|
1999-08-16 21:50:52 +00:00
|
|
|
myCollation->getCollationKey(source, /*nos*/ sortKey1, key1status );
|
|
|
|
myCollation->getCollationKey(target, /*nos*/ sortKey2, key2status );
|
1999-10-18 22:48:32 +00:00
|
|
|
if (U_FAILURE(key1status) || U_FAILURE(key2status)) {
|
1999-08-16 21:50:52 +00:00
|
|
|
errln("SortKey generation Failed.\n");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
Collator::EComparisonResult keyResult = sortKey1.compareTo(sortKey2);
|
|
|
|
reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, result );
|
|
|
|
}
|
|
|
|
|
2000-08-23 19:11:16 +00:00
|
|
|
void CollationFinnishTest::TestTertiary(/* char* par */)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
int32_t i = 0;
|
|
|
|
myCollation->setStrength(Collator::TERTIARY);
|
|
|
|
for (i = 0; i < 4 ; i++) {
|
|
|
|
doTest(testSourceCases[i], testTargetCases[i], results[i]);
|
|
|
|
}
|
|
|
|
}
|
2000-08-23 19:11:16 +00:00
|
|
|
void CollationFinnishTest::TestPrimary(/* char* par */)
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
int32_t i;
|
|
|
|
myCollation->setStrength(Collator::PRIMARY);
|
|
|
|
for (i = 4; i < 5; i++) {
|
|
|
|
doTest(testSourceCases[i], testTargetCases[i], results[i]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2000-08-23 19:11:16 +00:00
|
|
|
void CollationFinnishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ )
|
1999-08-16 21:50:52 +00:00
|
|
|
{
|
|
|
|
if (exec) logln("TestSuite CollationFinnishTest: ");
|
|
|
|
switch (index) {
|
2000-08-23 19:11:16 +00:00
|
|
|
case 0: name = "TestPrimary"; if (exec) TestPrimary(/* par */); break;
|
|
|
|
case 1: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
|
1999-08-16 21:50:52 +00:00
|
|
|
default: name = ""; break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|