mirror of
https://github.com/unicode-org/icu.git
synced 2025-04-10 07:39:16 +00:00
ICU-96 added LotusCollationKoreanTest
X-SVN-Rev: 4226
This commit is contained in:
parent
261634728d
commit
f9a01fe09e
4 changed files with 154 additions and 0 deletions
|
@ -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
|
||||
|
|
92
icu4c/source/test/intltest/lcukocol.cpp
Normal file
92
icu4c/source/test/intltest/lcukocol.cpp
Normal 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;
|
||||
}
|
||||
}
|
||||
|
||||
|
41
icu4c/source/test/intltest/lcukocol.h
Normal file
41
icu4c/source/test/intltest/lcukocol.h
Normal 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;
|
||||
};
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue