scuffed-code/icu4c/source/test/intltest/escoll.cpp

117 lines
2.9 KiB
C++
Raw Normal View History

1999-08-16 21:50:52 +00:00
/********************************************************************
* COPYRIGHT:
* Copyright (c) 1997-2001, International Business Machines Corporation and
* others. All Rights Reserved.
********************************************************************/
1999-08-16 21:50:52 +00:00
#include "unicode/utypes.h"
#if !UCONFIG_NO_COLLATION
1999-08-16 21:50:52 +00:00
#ifndef _COLL
#include "unicode/coll.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _TBLCOLL
#include "unicode/tblcoll.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _UNISTR
#include "unicode/unistr.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _SORTKEY
#include "unicode/sortkey.h"
1999-08-16 21:50:52 +00:00
#endif
#ifndef _ESCOLL
#include "escoll.h"
#endif
#include "sfwdchit.h"
1999-08-16 21:50:52 +00:00
CollationSpanishTest::CollationSpanishTest()
: myCollation(0)
{
UErrorCode status = U_ZERO_ERROR;
1999-08-16 21:50:52 +00:00
myCollation = Collator::createInstance(Locale("es", "ES", ""),status);
}
CollationSpanishTest::~CollationSpanishTest()
{
delete myCollation;
}
const UChar CollationSpanishTest::testSourceCases[][CollationSpanishTest::MAX_TOKEN_LEN] = {
{0x61, 0x6c, 0x69, 0x61, 0x73, 0},
{0x45, 0x6c, 0x6c, 0x69, 0x6f, 0x74, 0},
{0x48, 0x65, 0x6c, 0x6c, 0x6f, 0},
{0x61, 0x63, 0x48, 0x63, 0},
{0x61, 0x63, 0x63, 0},
{0x61, 0x6c, 0x69, 0x61, 0x73, 0},
{0x61, 0x63, 0x48, 0x63, 0},
{0x61, 0x63, 0x63, 0},
{0x48, 0x65, 0x6c, 0x6c, 0x6f, 0},
1999-08-16 21:50:52 +00:00
};
const UChar CollationSpanishTest::testTargetCases[][CollationSpanishTest::MAX_TOKEN_LEN] = {
{0x61, 0x6c, 0x6c, 0x69, 0x61, 0x73, 0},
{0x45, 0x6d, 0x69, 0x6f, 0x74, 0},
{0x68, 0x65, 0x6c, 0x6c, 0x4f, 0},
{0x61, 0x43, 0x48, 0x63, 0},
{0x61, 0x43, 0x48, 0x63, 0},
{0x61, 0x6c, 0x6c, 0x69, 0x61, 0x73, 0},
{0x61, 0x43, 0x48, 0x63, 0},
{0x61, 0x43, 0x48, 0x63, 0},
{0x68, 0x65, 0x6c, 0x6c, 0x4f, 0},
1999-08-16 21:50:52 +00:00
};
const UCollationResult CollationSpanishTest::results[] = {
UCOL_LESS,
UCOL_LESS,
UCOL_GREATER,
UCOL_LESS,
UCOL_LESS,
1999-08-16 21:50:52 +00:00
// test primary > 5
UCOL_LESS,
UCOL_EQUAL,
UCOL_LESS,
UCOL_EQUAL
1999-08-16 21:50:52 +00:00
};
void CollationSpanishTest::TestTertiary(/* char* par */)
1999-08-16 21:50:52 +00:00
{
int32_t i = 0;
myCollation->setStrength(Collator::TERTIARY);
for (i = 0; i < 5 ; i++) {
doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
1999-08-16 21:50:52 +00:00
}
}
void CollationSpanishTest::TestPrimary(/* char* par */)
1999-08-16 21:50:52 +00:00
{
int32_t i;
myCollation->setStrength(Collator::PRIMARY);
for (i = 5; i < 9; i++) {
doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
1999-08-16 21:50:52 +00:00
}
}
void CollationSpanishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par */)
1999-08-16 21:50:52 +00:00
{
if (exec) logln("TestSuite CollationSpanishTest: ");
if((!myCollation) && exec) {
errln(__FILE__ " cannot test - failed to create collator.");
name = "";
return;
}
1999-08-16 21:50:52 +00:00
switch (index) {
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;
}
}
#endif /* #if !UCONFIG_NO_COLLATION */