|  | /******************************************************************** | 
|  | * COPYRIGHT: | 
|  | * Copyright (c) 1997-2001, International Business Machines Corporation and | 
|  | * others. All Rights Reserved. | 
|  | ********************************************************************/ | 
|  |  | 
|  |  | 
|  | #include "unicode/coll.h" | 
|  | #include "unicode/tblcoll.h" | 
|  | #include "unicode/unistr.h" | 
|  | #include "unicode/sortkey.h" | 
|  | #include "encoll.h" | 
|  |  | 
|  | CollationEnglishTest::CollationEnglishTest() | 
|  | : myCollation(0) | 
|  | { | 
|  | UErrorCode status = U_ZERO_ERROR; | 
|  | myCollation = Collator::createInstance(Locale::ENGLISH, status); | 
|  | } | 
|  |  | 
|  | CollationEnglishTest::~CollationEnglishTest() | 
|  | { | 
|  | delete myCollation; | 
|  | } | 
|  |  | 
|  | const UChar CollationEnglishTest::testSourceCases[][CollationEnglishTest::MAX_TOKEN_LEN] = { | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x002D /* '-' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0020 /* ' ' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x002D /* '-' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0048 /* 'H' */, (UChar)0x0065 /* 'e' */, (UChar)0x006C /* 'l' */, (UChar)0x006C /* 'l' */, (UChar)0x006F /* 'o' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, (UChar)0x0042 /* 'B' */, (UChar)0x0043 /* 'C' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x002D /* '-' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x002D /* '-' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00EA, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, 0x00E9, 0}, | 
|  | {0x00C4, (UChar)0x0042 /* 'B' */, 0x0308, (UChar)0x0043 /* 'C' */, 0x0308, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x0308, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, (UChar)0x0072 /* 'r' */, 0}, | 
|  | {(UChar)0x0072 /* 'r' */, (UChar)0x006F /* 'o' */, (UChar)0x006C /* 'l' */, (UChar)0x0065 /* 'e' */, (UChar)0x0073 /* 's' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0074 /* 't' */, (UChar)0x0063 /* 'c' */, (UChar)0x006F /* 'o' */, (UChar)0x006D /* 'm' */, (UChar)0x0070 /* 'p' */, (UChar)0x0061 /* 'a' */, (UChar)0x0072 /* 'r' */, (UChar)0x0065 /* 'e' */, (UChar)0x0070 /* 'p' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0069 /* 'i' */, (UChar)0x006E /* 'n' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0023 /* '#' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0023 /* '#' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00E6, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x0048 /* 'H' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x0308, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0074 /* 't' */, (UChar)0x0068 /* 'h' */, (UChar)0x0069 /* 'i' */, 0x0302, (UChar)0x0073 /* 's' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00EA, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x00E6, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x00E6, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, 0x00E9, 0}                                            // 49 | 
|  | }; | 
|  |  | 
|  | const UChar CollationEnglishTest::testTargetCases[][CollationEnglishTest::MAX_TOKEN_LEN] = { | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x002D /* '-' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, 0}, | 
|  | {(UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, (UChar)0x006C /* 'l' */, (UChar)0x006C /* 'l' */, (UChar)0x006F /* 'o' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, (UChar)0x0042 /* 'B' */, (UChar)0x0043 /* 'C' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, (UChar)0x0042 /* 'B' */, (UChar)0x0043 /* 'C' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, (UChar)0x0073 /* 's' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, (UChar)0x0073 /* 's' */, 0}, | 
|  | {(UChar)0x0062 /* 'b' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0063 /* 'c' */, (UChar)0x006B /* 'k' */, (UChar)0x0062 /* 'b' */, (UChar)0x0069 /* 'i' */, (UChar)0x0072 /* 'r' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, 0x00E9, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, (UChar)0x0072 /* 'r' */, 0}, | 
|  | {0x00C4, (UChar)0x0042 /* 'B' */, 0x0308, (UChar)0x0043 /* 'C' */, 0x0308, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, 0x0308, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, 0}, | 
|  | {(UChar)0x0072 /* 'r' */, (UChar)0x006F /* 'o' */, 0x0302, (UChar)0x006C /* 'l' */, (UChar)0x0065 /* 'e' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, 0x00E1, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0041 /* 'A' */, 0x00E1, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0054 /* 'T' */, (UChar)0x0043 /* 'C' */, (UChar)0x006F /* 'o' */, (UChar)0x006D /* 'm' */, (UChar)0x0070 /* 'p' */, (UChar)0x0061 /* 'a' */, (UChar)0x0072 /* 'r' */, (UChar)0x0065 /* 'e' */, (UChar)0x0050 /* 'P' */, (UChar)0x006C /* 'l' */, (UChar)0x0061 /* 'a' */, (UChar)0x0069 /* 'i' */, (UChar)0x006E /* 'n' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0042 /* 'B' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0023 /* '#' */, (UChar)0x0042 /* 'B' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0026 /* '&' */, (UChar)0x0062 /* 'b' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0023 /* '#' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00C4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00C4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {0x00C4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, (UChar)0x0064 /* 'd' */, (UChar)0x0061 /* 'a' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0023 /* '#' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x003D /* '=' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0043 /* 'C' */, (UChar)0x0048 /* 'H' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0074 /* 't' */, (UChar)0x0068 /* 'h' */, 0x00EE, (UChar)0x0073 /* 's' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00E9, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, 0x00E9, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0042 /* 'B' */, (UChar)0x0043 /* 'C' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0062 /* 'b' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x00C6, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0042 /* 'B' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, 0x00C6, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0042 /* 'B' */, (UChar)0x0064 /* 'd' */, 0}, | 
|  | {0x00E4, (UChar)0x0062 /* 'b' */, (UChar)0x0063 /* 'c' */, 0}, | 
|  | {(UChar)0x0070 /* 'p' */, 0x00EA, (UChar)0x0063 /* 'c' */, (UChar)0x0068 /* 'h' */, (UChar)0x0065 /* 'e' */, 0}                                           // 49 | 
|  | }; | 
|  |  | 
|  | const Collator::EComparisonResult CollationEnglishTest::results[] = { | 
|  | Collator::LESS, | 
|  | Collator::LESS, /*Collator::GREATER,*/ | 
|  | Collator::LESS, | 
|  | Collator::GREATER, | 
|  | Collator::GREATER, | 
|  | Collator::EQUAL, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS, /*Collator::GREATER,*/                                                          /* 10 */ | 
|  | Collator::GREATER, | 
|  | Collator::LESS, | 
|  | Collator::EQUAL, | 
|  | Collator::LESS, | 
|  | Collator::GREATER, | 
|  | Collator::GREATER, | 
|  | Collator::GREATER, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS,                                                             /* 20 */ | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::GREATER, | 
|  | Collator::GREATER, | 
|  | Collator::GREATER, | 
|  | /* Test Tertiary  > 26 */ | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::GREATER, | 
|  | Collator::LESS,                                                             /* 30 */ | 
|  | Collator::GREATER, | 
|  | Collator::EQUAL, | 
|  | Collator::GREATER, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | /* test identical > 36 */ | 
|  | Collator::EQUAL, | 
|  | Collator::EQUAL, | 
|  | /* test primary > 38 */ | 
|  | Collator::EQUAL, | 
|  | Collator::EQUAL,                                                            /* 40 */ | 
|  | Collator::LESS, | 
|  | Collator::EQUAL, | 
|  | Collator::EQUAL, | 
|  | /* test secondary > 43 */ | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::EQUAL, | 
|  | Collator::LESS, | 
|  | Collator::LESS, | 
|  | Collator::LESS                                                                  // 49 | 
|  | }; | 
|  |  | 
|  | const UChar CollationEnglishTest::testBugs[][CollationEnglishTest::MAX_TOKEN_LEN] = { | 
|  | {0x61, 0}, | 
|  | {0x41, 0}, | 
|  | {0x65, 0}, | 
|  | {0x45, 0}, | 
|  | {0x00e9, 0}, | 
|  | {0x00e8, 0}, | 
|  | {0x00ea, 0}, | 
|  | {0x00eb, 0}, | 
|  | {0x65, 0x61, 0}, | 
|  | {0x78, 0} | 
|  | }; | 
|  |  | 
|  | // 0x0300 is grave, 0x0301 is acute | 
|  | // the order of elements in this array must be different than the order in CollationFrenchTest | 
|  | const UChar CollationEnglishTest::testAcute[][CollationEnglishTest::MAX_TOKEN_LEN] = { | 
|  | {0x65, 0x65, 0}, | 
|  | {0x65, 0x65, 0x0301, 0}, | 
|  | {0x65, 0x65, 0x0301, 0x0300, 0}, | 
|  | {0x65, 0x65, 0x0300, 0}, | 
|  | {0x65, 0x65, 0x0300, 0x0301, 0}, | 
|  | {0x65, 0x0301, 0x65, 0}, | 
|  | {0x65, 0x0301, 0x65, 0x0301, 0}, | 
|  | {0x65, 0x0301, 0x65, 0x0301, 0x0300, 0}, | 
|  | {0x65, 0x0301, 0x65, 0x0300, 0}, | 
|  | {0x65, 0x0301, 0x65, 0x0300, 0x0301, 0}, | 
|  | {0x65, 0x0301, 0x0300, 0x65, 0}, | 
|  | {0x65, 0x0301, 0x0300, 0x65, 0x0301, 0}, | 
|  | {0x65, 0x0301, 0x0300, 0x65, 0x0301, 0x0300, 0}, | 
|  | {0x65, 0x0301, 0x0300, 0x65, 0x0300, 0}, | 
|  | {0x65, 0x0301, 0x0300, 0x65, 0x0300, 0x0301, 0}, | 
|  | {0x65, 0x0300, 0x65, 0}, | 
|  | {0x65, 0x0300, 0x65, 0x0301, 0}, | 
|  | {0x65, 0x0300, 0x65, 0x0301, 0x0300, 0}, | 
|  | {0x65, 0x0300, 0x65, 0x0300, 0}, | 
|  | {0x65, 0x0300, 0x65, 0x0300, 0x0301, 0}, | 
|  | {0x65, 0x0300, 0x0301, 0x65, 0}, | 
|  | {0x65, 0x0300, 0x0301, 0x65, 0x0301, 0}, | 
|  | {0x65, 0x0300, 0x0301, 0x65, 0x0301, 0x0300, 0}, | 
|  | {0x65, 0x0300, 0x0301, 0x65, 0x0300, 0}, | 
|  | {0x65, 0x0300, 0x0301, 0x65, 0x0300, 0x0301, 0} | 
|  | }; | 
|  |  | 
|  | static const UChar testMore[][CollationEnglishTest::MAX_TOKEN_LEN] = { | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0065 /* 'e' */, 0}, | 
|  | {(UChar)0x0061 /* 'a' */, (UChar)0x0066 /* 'f' */, 0}, | 
|  | { 0x00E6, 0}, | 
|  | { 0x00C6, 0}, | 
|  | {(UChar)0x006F /* 'o' */, (UChar)0x0065 /* 'e' */, 0}, | 
|  | { 0x0153, 0}, | 
|  | { 0x0152, 0}, | 
|  | {(UChar)0x006F /* 'o' */, (UChar)0x0066 /* 'f' */, 0}, | 
|  | }; | 
|  |  | 
|  | void CollationEnglishTest::doTest( UnicodeString source, UnicodeString target, Collator::EComparisonResult result) | 
|  | { | 
|  | Collator::EComparisonResult compareResult = myCollation->compare(source, target); | 
|  | 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, compareResult, result ); | 
|  | } | 
|  |  | 
|  | void CollationEnglishTest::TestTertiary(/* char* par */) | 
|  | { | 
|  | int32_t i = 0; | 
|  | myCollation->setStrength(Collator::TERTIARY); | 
|  | for (i = 0; i < 38 ; i++) | 
|  | { | 
|  | doTest(testSourceCases[i], testTargetCases[i], results[i]); | 
|  | } | 
|  |  | 
|  | int32_t j = 0; | 
|  | for (i = 0; i < 10; i++) | 
|  | { | 
|  | for (j = i+1; j < 10; j++) | 
|  | { | 
|  | doTest(testBugs[i], testBugs[j], Collator::LESS); | 
|  | } | 
|  | } | 
|  |  | 
|  | //test more interesting cases | 
|  | Collator::EComparisonResult expected; | 
|  | const int32_t testMoreSize = (int32_t)(sizeof(testMore) / sizeof(testMore[0])); | 
|  | for (i = 0; i < testMoreSize; i++) | 
|  | { | 
|  | for (j = 0; j < testMoreSize; j++) | 
|  | { | 
|  | if (i <  j) | 
|  | expected = Collator::LESS; | 
|  | else if (i == j) | 
|  | expected = Collator::EQUAL; | 
|  | else // (i >  j) | 
|  | expected = Collator::GREATER; | 
|  | doTest(testMore[i], testMore[j], expected ); | 
|  | } | 
|  | } | 
|  |  | 
|  | } | 
|  |  | 
|  | void CollationEnglishTest::TestPrimary(/* char* par */) | 
|  | { | 
|  | int32_t i; | 
|  | myCollation->setStrength(Collator::PRIMARY); | 
|  | for (i = 38; i < 43 ; i++) | 
|  | { | 
|  | doTest(testSourceCases[i], testTargetCases[i], results[i]); | 
|  | } | 
|  | } | 
|  |  | 
|  | void CollationEnglishTest::TestSecondary(/* char* par */) | 
|  | { | 
|  | int32_t i; | 
|  | myCollation->setStrength(Collator::SECONDARY); | 
|  | for (i = 43; i < 49 ; i++) | 
|  | { | 
|  | doTest(testSourceCases[i], testTargetCases[i], results[i]); | 
|  | } | 
|  |  | 
|  | //test acute and grave ordering (compare to french collation) | 
|  | int32_t j; | 
|  | Collator::EComparisonResult expected; | 
|  | const int32_t testAcuteSize = (int32_t)(sizeof(testAcute) / sizeof(testAcute[0])); | 
|  | for (i = 0; i < testAcuteSize; i++) | 
|  | { | 
|  | for (j = 0; j < testAcuteSize; j++) | 
|  | { | 
|  | if (i <  j) | 
|  | expected = Collator::LESS; | 
|  | else if (i == j) | 
|  | expected = Collator::EQUAL; | 
|  | else // (i >  j) | 
|  | expected = Collator::GREATER; | 
|  | doTest(testAcute[i], testAcute[j], expected ); | 
|  | } | 
|  | } | 
|  | } | 
|  |  | 
|  | void CollationEnglishTest::runIndexedTest( int32_t index, UBool exec, const char* &name, char* /*par*/ ) | 
|  | { | 
|  | if (exec) logln("TestSuite CollationEnglishTest: "); | 
|  | switch (index) { | 
|  | case 0: name = "TestPrimary";   if (exec)   TestPrimary(/* par */); break; | 
|  | case 1: name = "TestSecondary"; if (exec)   TestSecondary(/* par */); break; | 
|  | case 2: name = "TestTertiary";  if (exec)   TestTertiary(/* par */); break; | 
|  | default: name = ""; break; | 
|  | } | 
|  | } | 
|  |  | 
|  |  |