ICU-96 added LotusCollationKoreanTest

X-SVN-Rev: 4226
This commit is contained in:
Vladimir Weinstein 2001-03-21 18:10:38 +00:00
parent 261634728d
commit f9a01fe09e
4 changed files with 154 additions and 0 deletions

View file

@ -249,6 +249,10 @@ SOURCE=.\jamotest.cpp
# End Source File
# Begin Source File
SOURCE=.\lcukocol.cpp
# End Source File
# Begin Source File
SOURCE=.\loctest.cpp
# End Source File
# Begin Source File
@ -581,6 +585,10 @@ SOURCE=.\jamotest.h
# End Source File
# Begin Source File
SOURCE=.\lcukocol.h
# End Source File
# Begin Source File
SOURCE=.\loctest.h
# End Source File
# Begin Source File

View file

@ -0,0 +1,92 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#ifndef _COLL
#include "unicode/coll.h"
#endif
#ifndef _TBLCOLL
#include "unicode/tblcoll.h"
#endif
#ifndef _UNISTR
#include "unicode/unistr.h"
#endif
#ifndef _SORTKEY
#include "unicode/sortkey.h"
#endif
#include "lcukocol.h"
#include "sfwdchit.h"
LotusCollationKoreanTest::LotusCollationKoreanTest()
: myCollation(0)
{
UErrorCode status = U_ZERO_ERROR;
myCollation = Collator::createInstance("ko_kr", status);
myCollation->setDecomposition(Normalizer::DECOMP);
}
LotusCollationKoreanTest::~LotusCollationKoreanTest()
{
delete myCollation;
}
const UChar LotusCollationKoreanTest::testSourceCases[][LotusCollationKoreanTest::MAX_TOKEN_LEN] = {
{0xac00, 0}
};
const UChar LotusCollationKoreanTest::testTargetCases[][LotusCollationKoreanTest::MAX_TOKEN_LEN] = {
{0xac01, 0}
};
const Collator::EComparisonResult LotusCollationKoreanTest::results[] = {
Collator::LESS
};
void LotusCollationKoreanTest::doTest( UnicodeString source, UnicodeString target, Collator::EComparisonResult result)
{
Collator::EComparisonResult compareResult = myCollation->compare(source, target);
SimpleFwdCharIterator src(source);
SimpleFwdCharIterator trg(target);
Collator::EComparisonResult incResult = myCollation->compare(src, trg);
CollationKey sortKey1, sortKey2;
UErrorCode key1status = U_ZERO_ERROR, key2status = U_ZERO_ERROR; //nos
myCollation->getCollationKey(source, /*nos*/ sortKey1, key1status );
myCollation->getCollationKey(target, /*nos*/ sortKey2, key2status );
if (U_FAILURE(key1status) || U_FAILURE(key2status)) {
errln("SortKey generation Failed.\n");
return;
}
Collator::EComparisonResult keyResult = sortKey1.compareTo(sortKey2);
reportCResult( source, target, sortKey1, sortKey2, compareResult, keyResult, incResult, result );
}
void LotusCollationKoreanTest::TestTertiary(/* char* par */)
{
UErrorCode status;
int32_t i = 0;
myCollation->setStrength(Collator::TERTIARY);
for (i = 0; i < 1; i++) {
doTest(testSourceCases[i], testTargetCases[i], results[i]);
}
}
void LotusCollationKoreanTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ )
{
if (exec) logln("TestSuite LotusCollationKoreanTest: ");
switch (index) {
case 0: name = "TestTertiary"; if (exec) TestTertiary(/* par */); break;
default: name = ""; break;
}
}

View file

@ -0,0 +1,41 @@
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-1999, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
#ifndef _UTYPES
#include "unicode/utypes.h"
#endif
#ifndef _COLL
#include "unicode/coll.h"
#endif
#ifndef _INTLTEST
#include "intltest.h"
#endif
class LotusCollationKoreanTest: public IntlTest {
public:
// static constants
enum EToken_Len { MAX_TOKEN_LEN = 128 };
LotusCollationKoreanTest();
virtual ~LotusCollationKoreanTest();
void runIndexedTest( int32_t index, UBool exec, const char* &name, char* par = NULL );
// main test routine, tests rules specific to "Kana" locale
void doTest( UnicodeString source, UnicodeString target, Collator::EComparisonResult result);
// performs test with strength TERIARY
void TestTertiary(/* char* par */);
private:
static const UChar testSourceCases[][MAX_TOKEN_LEN];
static const UChar testTargetCases[][MAX_TOKEN_LEN];
static const Collator::EComparisonResult results[];
Collator *myCollation;
};

View file

@ -38,6 +38,8 @@
#include "normconf.h"
#include "thcoll.h"
#include "lcukocol.h"
void IntlTestCollator::runIndexedTest( int32_t index, UBool exec, const char* &name, char* par )
{
if (exec)
@ -277,6 +279,17 @@ void IntlTestCollator::runIndexedTest( int32_t index, UBool exec, const char* &n
CollationThaiTest test;
callTest( test, par );
}
break;
case 18: //all
name = "LotusCollationTest";
name = "LotusCollationKoreanTest";
if (exec) {
logln("LotusCollationKoreanTest---"); logln("");
LotusCollationKoreanTest test;
callTest( test, par );
}
break;
default: name = ""; break;