7777030a4f
X-SVN-Rev: 8331
217 lines
7.8 KiB
C
217 lines
7.8 KiB
C
/********************************************************************
|
|
* COPYRIGHT:
|
|
* Copyright (c) 1997-2001, International Business Machines Corporation and
|
|
* others. All Rights Reserved.
|
|
********************************************************************/
|
|
/********************************************************************************
|
|
*
|
|
* File CFRTST.C
|
|
*
|
|
* Modification History:
|
|
* Name Description
|
|
* Madhu Katragadda Ported for C API
|
|
*********************************************************************************/
|
|
/**
|
|
* CollationFrenchTest is a third level test class. This tests the locale
|
|
* specific primary, secondary and tertiary rules. For example, the ignorable
|
|
* character '-' in string "black-bird". The en_US locale uses the default
|
|
* collation rules as its sorting sequence.
|
|
*/
|
|
|
|
#include <stdlib.h>
|
|
#include "unicode/utypes.h"
|
|
#include "unicode/ucol.h"
|
|
#include "unicode/uloc.h"
|
|
#include "cintltst.h"
|
|
#include "ccolltst.h"
|
|
#include "callcoll.h"
|
|
#include "cfrtst.h"
|
|
#include "unicode/ustring.h"
|
|
#include "string.h"
|
|
|
|
static UCollator *myCollation;
|
|
const static UChar testSourceCases[][MAX_TOKEN_LEN] =
|
|
{
|
|
{0x0061/*'a'*/, 0x0062/*'b'*/, 0x0063/*'c'*/, 0x0000},
|
|
{0x0043/*'C'*/, 0x004f/*'O'*/, 0x0054/*'T'*/, 0x0045/*'E'*/, 0x0000},
|
|
{0x0063/*'c'*/, 0x006f/*'o'*/, 0x002d/*'-'*/, 0x006f/*'o'*/, 0x0070/*'p'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00EA, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00EA, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0072/*'r'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00E9, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0072/*'r'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00E9, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0072/*'r'*/, 0x0000},
|
|
{0x0048/*'H'*/, 0x0065/*'e'*/, 0x006c/*'l'*/, 0x006c/*'l'*/, 0x006f/*'o'*/, 0x0000},
|
|
{0x01f1, 0x0000},
|
|
{0xfb00, 0x0000},
|
|
{0x01fa, 0x0000},
|
|
{0x0101, 0x0000}
|
|
};
|
|
|
|
const static UChar testTargetCases[][MAX_TOKEN_LEN] =
|
|
{
|
|
{0x0041/*'A'*/, 0x0042/*'B'*/, 0x0043/*'C'*/, 0x0000},
|
|
{0x0063/*'c'*/, 0x00f4, 0x0074/*'t'*/, 0x0065/*'e'*/, 0x0000},
|
|
{0x0043/*'C'*/, 0x004f/*'O'*/, 0x004f/*'O'*/, 0x0050/*'P'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00E9, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x00E9, 0x0000},
|
|
{0x0070/*'p'*/, 0x00E9, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x00E9, 0x0000},
|
|
{0x0070/*'p'*/, 0x00EA, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0000},
|
|
{0x0070/*'p'*/, 0x00EA, 0x0063/*'c'*/, 0x0068/*'h'*/, 0x0065/*'e'*/, 0x0072/*'r'*/, 0x0000},
|
|
{0x0068/*'h'*/, 0x0065/*'e'*/, 0x006c/*'l'*/, 0x006c/*'l'*/, 0x004f/*'O'*/, 0x0000},
|
|
{0x01ee, 0x0000},
|
|
{0x25ca, 0x0000},
|
|
{0x00e0, 0x0000},
|
|
{0x01df, 0x0000}
|
|
};
|
|
|
|
const static UCollationResult results[] =
|
|
{
|
|
UCOL_LESS,
|
|
UCOL_LESS,
|
|
UCOL_LESS, /*UCOL_GREATER,*/
|
|
UCOL_LESS,
|
|
UCOL_GREATER,
|
|
UCOL_GREATER,
|
|
UCOL_LESS,
|
|
UCOL_GREATER,
|
|
UCOL_LESS, /*UCOL_GREATER,*/
|
|
UCOL_GREATER,
|
|
UCOL_LESS,
|
|
UCOL_LESS
|
|
};
|
|
|
|
/* 0x0300 is grave, 0x0301 is acute*/
|
|
/* the order of elements in this array must be different than the order in CollationEnglishTest*/
|
|
const static UChar testAcute[][MAX_TOKEN_LEN] =
|
|
{
|
|
/*00*/ {0x0065/*'e'*/, 0x0065/*'e'*/, 0x0000},
|
|
/*01*/ {0x0065/*'e'*/, 0x0301, 0x0065/*'e'*/, 0x0000},
|
|
/*02*/ {0x0065/*'e'*/, 0x0300, 0x0301, 0x0065/*'e'*/, 0x0000},
|
|
/*03*/ {0x0065/*'e'*/, 0x0300, 0x0065/*'e'*/, 0x0000},
|
|
/*04*/ {0x0065/*'e'*/, 0x0301, 0x0300, 0x0065/*'e'*/, 0x0000},
|
|
/*05*/ {0x0065/*'e'*/, 0x0065/*'e'*/, 0x0301, 0x0000},
|
|
/*06*/ {0x0065/*'e'*/, 0x0301, 0x0065/*'e'*/, 0x0301, 0x0000},
|
|
/*07*/ {0x0065/*'e'*/, 0x0300, 0x0301, 0x0065/*'e'*/, 0x0301, 0x0000},
|
|
/*08*/ {0x0065/*'e'*/, 0x0300, 0x0065/*'e'*/, 0x0301, 0x0000},
|
|
/*09*/ {0x0065/*'e'*/, 0x0301, 0x0300, 0x0065/*'e'*/, 0x0301, 0x0000},
|
|
/*0a*/ {0x0065/*'e'*/, 0x0065/*'e'*/, 0x0300, 0x0301, 0x0000},
|
|
/*0b*/ {0x0065/*'e'*/, 0x0301, 0x0065/*'e'*/, 0x0300, 0x0301, 0x0000},
|
|
/*0c*/ {0x0065/*'e'*/, 0x0300, 0x0301, 0x0065/*'e'*/, 0x0300, 0x0301, 0x0000},
|
|
/*0d*/ {0x0065/*'e'*/, 0x0300, 0x0065/*'e'*/, 0x0300, 0x0301, 0x0000},
|
|
/*0e*/ {0x0065/*'e'*/, 0x0301, 0x0300, 0x0065/*'e'*/, 0x0300, 0x0301, 0x0000},
|
|
/*0f*/ {0x0065/*'e'*/, 0x0065/*'e'*/, 0x0300, 0x0000},
|
|
/*10*/ {0x0065/*'e'*/, 0x0301, 0x0065/*'e'*/, 0x0300, 0x0000},
|
|
/*11*/ {0x0065/*'e'*/, 0x0300, 0x0301, 0x0065/*'e'*/, 0x0300, 0x0000},
|
|
/*12*/ {0x0065/*'e'*/, 0x0300, 0x0065/*'e'*/, 0x0300, 0x0000},
|
|
/*13*/ {0x0065/*'e'*/, 0x0301, 0x0300, 0x0065/*'e'*/, 0x0300, 0x0000},
|
|
/*14*/ {0x0065/*'e'*/, 0x0065/*'e'*/, 0x0301, 0x0300, 0x0000},
|
|
/*15*/ {0x0065/*'e'*/, 0x0301, 0x0065/*'e'*/, 0x0301, 0x0300, 0x0000},
|
|
/*16*/ {0x0065/*'e'*/, 0x0300, 0x0301, 0x0065/*'e'*/, 0x0301, 0x0300, 0x0000},
|
|
/*17*/ {0x0065/*'e'*/, 0x0300, 0x0065/*'e'*/, 0x0301, 0x0300, 0x0000},
|
|
/*18*/ {0x0065/*'e'*/, 0x0301, 0x0300, 0x0065/*'e'*/, 0x0301, 0x0300, 0x0000}
|
|
};
|
|
|
|
const static UChar testBugs[][MAX_TOKEN_LEN] =
|
|
{
|
|
{0x0061/*'a'*/, 0x000},
|
|
{0x0041/*'A'*/, 0x000},
|
|
{0x0065/*'e'*/, 0x000},
|
|
{0x0045/*'E'*/, 0x000},
|
|
{0x00e9, 0x000},
|
|
{0x00e8, 0x000},
|
|
{0x00ea, 0x000},
|
|
{0x00eb, 0x000},
|
|
{0x0065/*'e'*/, 0x0061/*'a'*/, 0x000},
|
|
{0x0078/*'x'*/, 0x000}
|
|
};
|
|
|
|
|
|
|
|
|
|
void addFrenchCollTest(TestNode** root)
|
|
{
|
|
|
|
|
|
addTest(root, &TestSecondary, "tscoll/cfrtst/TestSecondary");
|
|
addTest(root, &TestTertiary, "tscoll/cfrtst/TestTertiary");
|
|
addTest(root, &TestExtra, "tscoll/cfrtst/TestExtra");
|
|
|
|
|
|
}
|
|
|
|
|
|
static void TestTertiary( )
|
|
{
|
|
|
|
int32_t i;
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
myCollation = ucol_open("fr_FR", &status);
|
|
if(U_FAILURE(status) || !myCollation){
|
|
log_err("ERROR: in creation of rule based collator: %s\n", myErrorName(status));
|
|
return;
|
|
}
|
|
|
|
ucol_setAttribute(myCollation, UCOL_ALTERNATE_HANDLING, UCOL_SHIFTED, &status);
|
|
if(U_FAILURE(status)){
|
|
log_err("ERROR: in creation of rule based collator: %s\n", myErrorName(status));
|
|
return;
|
|
}
|
|
log_verbose("Testing French Collation with Tertiary strength\n");
|
|
ucol_setStrength(myCollation, UCOL_QUATERNARY);
|
|
for (i = 0; i < 12 ; i++)
|
|
{
|
|
doTest(myCollation, testSourceCases[i], testTargetCases[i], results[i]);
|
|
}
|
|
ucol_close(myCollation);
|
|
}
|
|
|
|
static void TestSecondary()
|
|
{
|
|
int32_t i,j, testAcuteSize;
|
|
UCollationResult expected=UCOL_EQUAL;
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
myCollation = ucol_open("fr_FR", &status);
|
|
if(U_FAILURE(status)){
|
|
log_err("ERROR: in creation of rule based collator: %s\n", myErrorName(status));
|
|
return;
|
|
}
|
|
ucol_setAttribute(myCollation, UCOL_STRENGTH, UCOL_SECONDARY, &status);
|
|
if(U_FAILURE(status)){
|
|
log_err("ERROR: in creation of rule based collator: %s\n", myErrorName(status));
|
|
return;
|
|
}
|
|
log_verbose("Testing French Collation with Secondary strength\n");
|
|
/*test acute and grave ordering (compare to french collation)*/
|
|
testAcuteSize = sizeof(testAcute) / sizeof(testAcute[0]);
|
|
for (i = 0; i < testAcuteSize; i++)
|
|
{
|
|
for (j = 0; j < testAcuteSize; j++)
|
|
{
|
|
if (i < j) expected = UCOL_LESS;
|
|
if (i == j) expected = UCOL_EQUAL;
|
|
if (i > j) expected = UCOL_GREATER;
|
|
doTest(myCollation, testAcute[i], testAcute[j], expected );
|
|
}
|
|
}
|
|
ucol_close(myCollation);
|
|
}
|
|
|
|
static void TestExtra()
|
|
{
|
|
int32_t i, j;
|
|
UErrorCode status = U_ZERO_ERROR;
|
|
myCollation = ucol_open("fr_FR", &status);
|
|
if(U_FAILURE(status)){
|
|
log_err("ERROR: in creation of rule based collator: %s\n", myErrorName(status));
|
|
return;
|
|
}
|
|
log_verbose("Testing French Collation extra with secondary strength\n");
|
|
ucol_setStrength(myCollation, UCOL_TERTIARY);
|
|
for (i = 0; i < 9 ; i++)
|
|
{
|
|
for (j = i + 1; j < 10; j += 1)
|
|
{
|
|
doTest(myCollation, testBugs[i], testBugs[j], UCOL_LESS);
|
|
}
|
|
}
|
|
ucol_close(myCollation);
|
|
}
|