ICU-10152 JUnit Changes

X-SVN-Rev: 38795
This commit is contained in:
Stuart Gill 2016-06-03 23:44:30 +00:00
parent 9e496ae428
commit cfe6d86f51
304 changed files with 5495 additions and 7708 deletions

11
.gitattributes vendored
View file

@ -141,9 +141,20 @@ icu4c/source/tools/icuinfo/testplug.vcxproj -text
icu4c/source/tools/icupkg/icupkg.vcxproj -text
icu4c/source/tools/pkgdata/pkgdata.vcxproj -text
icu4c/source/tools/tzcode/icuregions -text
icu4j/ivy.xml -text
icu4j/lib/.project -text
icu4j/main/shared/data/icudata.jar -text
icu4j/main/shared/data/icutzdata.jar -text
icu4j/main/shared/data/testdata.jar -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/BidiFmwk.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/CalendarTestFmwk.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/duration/LanguageTestFmwk.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/DataDrivenNumberFormatTestUtility.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/NumberFormatTestData.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/CalendarHandler.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ExceptionHandler.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/FormatHandler.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/SerializableTestUtility.java -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/data/ICU_3.6/com.ibm.icu.impl.OlsonTimeZone.dat -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/data/ICU_3.6/com.ibm.icu.impl.TimeZoneAdapter.dat -text
icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/data/ICU_3.6/com.ibm.icu.math.BigDecimal.dat -text

File diff suppressed because it is too large Load diff

View file

@ -1,160 +0,0 @@
/*
******************************************************************************
* Copyright (C) 2005-2015, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
package com.ibm.icu.tests;
import java.io.PrintWriter;
import java.util.Properties;
import junit.framework.TestCase;
import com.ibm.icu.dev.test.TestAll;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.TestFmwk.TestParams;
public class UnitTest extends TestCase {
public void runUtility(String testname) throws Exception {
String defaultOptions = "-n";
PrintWriter targetWriter = null;
Properties sysProps = System.getProperties();
String value = sysProps.getProperty("eclipse.commands");
if(value.contains("-icuLog")) {
targetWriter = new PrintWriter(System.out, true);
// no sense being verbose if we're not displaying the log so don't check until now
if(value.contains("-verbose")) {
defaultOptions += " -v";
}
}
TestParams params = TestParams.create(defaultOptions, targetWriter);
TestFmwk test = new TestAll();
test.resolveTarget(params, testname).run();
if (params.errorCount > 0) {
fail(params.errorSummary.toString());
}
}
// Collate
public void testCollator() throws Exception {
runUtility("Collate/Collator");
}
public void testGlobalizationPreferencesTest() throws Exception {
runUtility("Collate/GlobalizationPreferencesTest");
}
public void testICUResourceBundleCollationTest() throws Exception {
runUtility("Collate/ICUResourceBundleCollationTest");
}
public void testLocaleAliasCollationTest() throws Exception {
runUtility("Collate/LocaleAliasCollationTest");
}
public void testRbnfLenientScannerTest() throws Exception {
runUtility("Collate/RbnfLenientScannerTest");
}
public void testSearchTest() throws Exception {
runUtility("Collate/SearchTest");
}
public void testULocaleCollationTest() throws Exception {
runUtility("Collate/ULocaleCollationTest");
}
// Core
public void testArabicShapingRegTest() throws Exception {
runUtility("Core/ArabicShapingRegTest");
}
public void testBidi() throws Exception {
runUtility("Core/Bidi");
}
public void testCalendar() throws Exception {
runUtility("Core/Calendar");
}
public void testCompression() throws Exception {
runUtility("Core/Compression");
}
public void testDiagBigDecimal() throws Exception {
runUtility("Core/DiagBigDecimal");
}
public void testDuration() throws Exception {
runUtility("Core/Duration");
}
public void testFormat() throws Exception {
runUtility("Core/Format");
}
public void testImpl() throws Exception {
runUtility("Core/Impl");
}
public void testNormalizer() throws Exception {
runUtility("Core/Normalizer");
}
public void testProperty() throws Exception {
runUtility("Core/Property");
}
public void testRBBI() throws Exception {
runUtility("Core/RBBI");
}
// Note: ICU serializable test cases do not support test data loading
// through Eclipse's class loader.
// public void testSerializable() throws Exception {
// runUtility("Core/Serializable");
// }
public void testSpoofChecker() throws Exception {
runUtility("Core/SpoofChecker");
}
public void testStringPrep() throws Exception {
runUtility("Core/StringPrep");
}
public void testTestCharsetDetector() throws Exception {
runUtility("Core/TestCharsetDetector");
}
public void testTestUCharacterIterator() throws Exception {
runUtility("Core/TestUCharacterIterator");
}
public void testTimeScale() throws Exception {
runUtility("Core/TimeScale");
}
public void testTimeZone() throws Exception {
runUtility("Core/TimeZone");
}
public void testUtil() throws Exception {
runUtility("Core/Util");
}
// Translit
public void testTranslit() throws Exception {
runUtility("Translit/Translit");
}
}

8
icu4j/ivy.xml Normal file
View file

@ -0,0 +1,8 @@
<ivy-module version="2.0">
<info organisation="com.ibm.icu" module="icu4j"/>
<dependencies>
<!--if these are updated then eclipse projects need to be updated-->
<dependency org="junit" name="junit" rev="4.12"/>
<dependency org="pl.pragmatists" name="JUnitParams" rev="1.0.5"/>
</dependencies>
</ivy-module>

11
icu4j/lib/.project Normal file
View file

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>external-libraries</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
</buildSpec>
<natures>
</natures>
</projectDescription>

View file

@ -5,5 +5,16 @@
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-charset"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-test-framework"/>
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/junit-4.12-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/JUnitParams-1.0.5-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="out/bin"/>
</classpath>

View file

@ -10,6 +10,7 @@
<import file="${shared.dir}/build/common-targets.xml"/>
<path id="javac.classpathref">
<path refid="junit.jars"/>
<path refid="javac.classpathref.${ant.project.name}"/>
</path>
<property name="jar.name" value="icu4j-${ant.project.name}.jar"/>

View file

@ -1,34 +0,0 @@
/**
*******************************************************************************
* Copyright (C) 2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
*******************************************************************************
*/
package com.ibm.icu.dev.test.charset;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all collation and search tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"TestCharset",
"TestConversion",
"TestSelection"
},
"All ICU Charset Tests"
);
}
public static final String CLASS_TARGET_NAME = "Charset";
}

View file

@ -24,6 +24,8 @@ import java.util.MissingResourceException;
import java.util.Set;
import java.util.SortedMap;
import org.junit.Test;
import com.ibm.icu.charset.CharsetCallback;
import com.ibm.icu.charset.CharsetDecoderICU;
import com.ibm.icu.charset.CharsetEncoderICU;
@ -34,9 +36,7 @@ import com.ibm.icu.text.UTF16;
import com.ibm.icu.text.UnicodeSet;
public class TestCharset extends TestFmwk {
public static void main(String[] args) throws Exception {
new TestCharset().run(args);
}
@Test
public void TestUTF16Converter(){
CharsetProvider icu = new CharsetProviderICU();
Charset cs1 = icu.charsetForName("UTF-16BE");
@ -128,6 +128,8 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestUTF32Converter(){
CharsetProvider icu = new CharsetProviderICU();
Charset cs1 = icu.charsetForName("UTF-32BE");
@ -206,12 +208,17 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestASCIIConverter() {
runTestASCIIBasedConverter("ASCII", 0x80);
}
}
@Test
public void Test88591Converter() {
runTestASCIIBasedConverter("iso-8859-1", 0x100);
}
public void runTestASCIIBasedConverter(String converter, int limit){
CharsetProvider icu = new CharsetProviderICU();
Charset icuChar = icu.charsetForName(converter);
@ -463,6 +470,8 @@ public class TestCharset extends TestFmwk {
}
}
}
@Test
public void TestUTF8Converter() {
String converter = "UTF-8";
CharsetProvider icu = new CharsetProviderICU();
@ -592,6 +601,7 @@ public class TestCharset extends TestFmwk {
return;
}
@Test
public void TestHZ() {
/* test input */
char[] in = new char[] {
@ -668,6 +678,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestUTF8Surrogates() {
byte[][] in = new byte[][] {
{ (byte)0x61, },
@ -742,6 +753,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestSurrogateBehavior() {
CharsetProviderICU icu = new CharsetProviderICU();
@ -1135,6 +1147,7 @@ public class TestCharset extends TestFmwk {
// }
@Test
public void TestAPISemantics(/*String encoding*/) {
String encoding = "UTF-16";
CharsetDecoder decoder = null;
@ -1531,6 +1544,7 @@ public class TestCharset extends TestFmwk {
// TODO
/*
@Test
public void TestCallback(String encoding) throws Exception {
byte[] gbSource =
@ -1570,6 +1584,8 @@ public class TestCharset extends TestFmwk {
}
*/
@Test
public void TestCanConvert(/*String encoding*/)throws Exception {
char[] mySource = {
'\ud800', '\udc00',/*surrogate pair */
@ -1595,6 +1611,8 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestAvailableCharsets() {
SortedMap map = Charset.availableCharsets();
Set keySet = map.keySet();
@ -1611,6 +1629,7 @@ public class TestCharset extends TestFmwk {
logln("Total Number of chasets = " + map.size());
}
@Test
public void TestWindows936(){
CharsetProviderICU icu = new CharsetProviderICU();
Charset cs = icu.charsetForName("windows-936-2000");
@ -1620,6 +1639,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestICUAvailableCharsets() {
CharsetProviderICU icu = new CharsetProviderICU();
Object[] charsets = CharsetProviderICU.getAvailableNames();
@ -1643,7 +1663,9 @@ public class TestCharset extends TestFmwk {
}
}
}
/* jitterbug 4312 */
/* jitterbug 4312 */
@Test
public void TestUnsupportedCharset(){
CharsetProvider icu = new CharsetProviderICU();
Charset icuChar = icu.charsetForName("impossible");
@ -1652,6 +1674,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestEncoderCreation(){
// Use CharsetICU.forNameICU() so that we get the ICU version
// even if the system or another provider also supports this charset.
@ -1686,6 +1709,8 @@ public class TestCharset extends TestFmwk {
warnln("Error creating charset encoder for " + encoding + ": " + e);
}
}
@Test
public void TestSubBytes(){
try{
//create utf-8 decoder
@ -1718,6 +1743,8 @@ public class TestCharset extends TestFmwk {
}
}
/*
@Test
public void TestImplFlushFailure(){
try{
@ -1735,6 +1762,8 @@ public class TestCharset extends TestFmwk {
}
}
*/
@Test
public void TestISO88591() {
Charset cs = new CharsetProviderICU().charsetForName("iso-8859-1");
@ -1750,6 +1779,8 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestUTF8Encode() {
// Test with a lead surrogate in the middle of the input text.
// Java API behavior is unclear for surrogates at the end, see ticket #11546.
@ -1784,6 +1815,8 @@ public class TestCharset extends TestFmwk {
buf.rewind();
}
*/
@Test
public void TestUTF8() throws CharacterCodingException{
try{
CharsetEncoder encoderICU = new CharsetProviderICU().charsetForName("utf-8").newEncoder();
@ -1804,6 +1837,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestUTF16Bom(){
Charset cs = (new CharsetProviderICU()).charsetForName("UTF-16");
@ -2110,6 +2144,7 @@ public class TestCharset extends TestFmwk {
}
}
// TODO(junit): orphan method
public void convertAllTest(ByteBuffer bSource, CharBuffer uSource) throws Exception {
String encoding = "UTF-16";
CharsetDecoder decoder = null;
@ -2157,8 +2192,10 @@ public class TestCharset extends TestFmwk {
}
}
//TODO
/*
@Test
public void TestString(ByteBuffer bSource, CharBuffer uSource) throws Exception {
try {
{
@ -2200,6 +2237,7 @@ public class TestCharset extends TestFmwk {
logln("Test Unicode to " + encoding +" passed");
}
@Test
public void TestToUnicode( ) throws Exception {
logln("Loaded Charset: " + charset.getClass().toString());
@ -2244,6 +2282,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestMultithreaded() throws Exception {
final Charset cs = Charset.forName(encoding);
if (cs == charset) {
@ -2305,6 +2344,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestSynchronizedMultithreaded() throws Exception {
// Methods on CharsetDecoder and CharsetEncoder classes
// are inherently unsafe if accessed by multiple concurrent
@ -2369,6 +2409,7 @@ public class TestCharset extends TestFmwk {
}
*/
@Test
public void TestMBCS(){
{
// Encoder: from Unicode conversion
@ -2406,6 +2447,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestJB4897(){
CharsetProviderICU provider = new CharsetProviderICU();
Charset charset = provider.charsetForName("x-abracadabra");
@ -2414,6 +2456,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestJB5027() {
CharsetProviderICU provider= new CharsetProviderICU();
@ -2426,7 +2469,9 @@ public class TestCharset extends TestFmwk {
errln("\"x-doesNotExist\" returned " + xfake);
}
}
//test to make sure that number of aliases and canonical names are in the charsets that are in
@Test
public void TestAllNames() {
CharsetProviderICU provider= new CharsetProviderICU();
@ -2460,6 +2505,8 @@ public class TestCharset extends TestFmwk {
}
}
}
@Test
public void TestDecoderImplFlush() {
CharsetProviderICU provider = new CharsetProviderICU();
Charset ics = provider.charsetForName("UTF-16");
@ -2467,6 +2514,8 @@ public class TestCharset extends TestFmwk {
execDecoder(jcs);
execDecoder(ics);
}
@Test
public void TestEncoderImplFlush() {
CharsetProviderICU provider = new CharsetProviderICU();
Charset ics = provider.charsetForName("UTF-16");
@ -2509,6 +2558,8 @@ public class TestCharset extends TestFmwk {
errln(e.getMessage()+" "+cs.getClass().toString());
}
}
@Test
public void TestDecodeMalformed() {
CharsetProviderICU provider = new CharsetProviderICU();
Charset ics = provider.charsetForName("UTF-16BE");
@ -2520,6 +2571,7 @@ public class TestCharset extends TestFmwk {
errln("ICU's decoder did not return the same result as Sun. ICU: "+ir.toString()+" Sun: "+jr.toString());
}
}
private CoderResult execMalformed(Charset cs){
CharsetDecoder decoder = cs.newDecoder();
decoder.onMalformedInput(CodingErrorAction.IGNORE);
@ -2529,6 +2581,7 @@ public class TestCharset extends TestFmwk {
return decoder.decode(in, out, true);
}
@Test
public void TestJavaUTF16Decoder(){
CharsetProviderICU provider = new CharsetProviderICU();
Charset ics = provider.charsetForName("UTF-16BE");
@ -2566,6 +2619,8 @@ public class TestCharset extends TestFmwk {
}
return null;
}
@Test
public void TestUTF32BOM(){
Charset cs = (new CharsetProviderICU()).charsetForName("UTF-32");
@ -2641,7 +2696,9 @@ public class TestCharset extends TestFmwk {
System.out.println("!exception!");
}
}
//Test CharsetICUProvider
@Test
public void TestNullCanonicalName() {
String enc = null;
String canonicalName = CharsetProviderICU.getICUCanonicalName(enc);
@ -2650,6 +2707,8 @@ public class TestCharset extends TestFmwk {
errln("getICUCanonicalName return a non-null string for given null string");
}
}
@Test
public void TestGetAllNames() {
String[] names = null;
@ -2659,7 +2718,9 @@ public class TestCharset extends TestFmwk {
errln("getAllNames returned a null string.");
}
}
//Test CharsetICU
@Test
public void TestCharsetContains() {
boolean test;
@ -2689,6 +2750,8 @@ public class TestCharset extends TestFmwk {
errln("Charset.contains returned true for a different charset.");
}
}
@Test
public void TestCharsetICUNullCharsetName() {
String charsetName = null;
@ -2701,6 +2764,7 @@ public class TestCharset extends TestFmwk {
}
//Test CharsetASCII
@Test
public void TestCharsetASCIIOverFlow() {
int byteBufferLimit;
int charBufferLimit;
@ -2762,7 +2826,9 @@ public class TestCharset extends TestFmwk {
errln("Overflow error while encoding ASCII should have occurred.");
}
}
//Test CharsetUTF7
@Test
public void TestCharsetUTF7() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -3193,7 +3259,9 @@ public class TestCharset extends TestFmwk {
}
//end of charset encoder code coverage code
}
//Test Charset ISCII
@Test
public void TestCharsetISCII() {
CharsetProvider provider = new CharsetProviderICU();
Charset cs = provider.charsetForName("ISCII,version=0");
@ -3571,6 +3639,7 @@ public class TestCharset extends TestFmwk {
}
//Test for the IMAP Charset
@Test
public void TestCharsetIMAP() {
CharsetProvider provider = new CharsetProviderICU();
Charset cs = provider.charsetForName("IMAP-mailbox-name");
@ -3825,6 +3894,7 @@ public class TestCharset extends TestFmwk {
}
//Test for charset UTF32LE to provide better code coverage
@Test
public void TestCharsetUTF32LE() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -3944,6 +4014,7 @@ public class TestCharset extends TestFmwk {
}
//Test for charset UTF16LE to provide better code coverage
@Test
public void TestCharsetUTF16LE() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4015,6 +4086,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for the generic charset UTF32
@Test
public void TestCharsetUTF32() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4219,6 +4291,7 @@ public class TestCharset extends TestFmwk {
}
//this method provides better code coverage decoding UTF32 LE/BE
@Test
public void TestDecodeUTF32LEBE() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4424,6 +4497,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for UTF8
@Test
public void TestCharsetUTF8() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4747,6 +4821,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for Charset UTF16
@Test
public void TestCharsetUTF16() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4812,6 +4887,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for Charset ISO-2022-KR
@Test
public void TestCharsetISO2022KR() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4834,6 +4910,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for Charset ISO-2022-JP
@Test
public void TestCharsetISO2022JP() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4856,6 +4933,7 @@ public class TestCharset extends TestFmwk {
}
//provide better code coverage for Charset ASCII
@Test
public void TestCharsetASCII() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4881,6 +4959,7 @@ public class TestCharset extends TestFmwk {
// provide better code coverage for Charset Callbacks
/* Different aspects of callbacks are being tested including using different context available */
@Test
public void TestCharsetCallbacks() {
CoderResult result = CoderResult.UNDERFLOW;
CharsetProvider provider = new CharsetProviderICU();
@ -4984,6 +5063,7 @@ public class TestCharset extends TestFmwk {
}
// Testing invalid input exceptions
@Test
public void TestInvalidInput() {
CharsetProvider provider = new CharsetProviderICU();
Charset charset = provider.charsetForName("iso-2022-jp");
@ -5004,6 +5084,7 @@ public class TestCharset extends TestFmwk {
}
// Test java canonical names
@Test
public void TestGetICUJavaCanonicalNames() {
// Ambiguous charset name.
String javaCName = CharsetProviderICU.getJavaCanonicalName("windows-1250");
@ -5016,6 +5097,7 @@ public class TestCharset extends TestFmwk {
// Port over from ICU4C for test conversion tables (mbcs version 5.x)
// Provide better code coverage in CharsetMBCS, CharsetDecoderICU, and CharsetEncoderICU.
@Test
public void TestCharsetTestData() {
CoderResult result = CoderResult.UNDERFLOW;
String charsetName = "test4";
@ -5084,6 +5166,7 @@ public class TestCharset extends TestFmwk {
}
/* Round trip test of SCSU converter*/
@Test
public void TestSCSUConverter(){
byte allFeaturesSCSU[]={
0x41,(byte) 0xdf, 0x12,(byte) 0x81, 0x03, 0x5f, 0x10, (byte)0xdf, 0x1b, 0x03,
@ -5371,6 +5454,7 @@ public class TestCharset extends TestFmwk {
}
/* Test for BOCU1 converter*/
@Test
public void TestBOCU1Converter(){
char expected[]={
0xFEFF, 0x0061, 0x0062, 0x0020, // 0
@ -5457,6 +5541,7 @@ public class TestCharset extends TestFmwk {
}
/* Test that ICU4C and ICU4J get the same ICU canonical name when given the same alias. */
@Test
public void TestICUCanonicalNameConsistency() {
String[] alias = {
"KSC_5601"
@ -5474,6 +5559,7 @@ public class TestCharset extends TestFmwk {
}
/* Increase code coverage for CharsetICU and CharsetProviderICU*/
@Test
public void TestCharsetICUCodeCoverage() {
CharsetProviderICU provider = new CharsetProviderICU();
@ -5502,6 +5588,7 @@ public class TestCharset extends TestFmwk {
errln("IllegalArgumentException should have been thrown.");
}
@Test
public void TestCharsetLMBCS() {
String []lmbcsNames = {
"LMBCS-1",
@ -5585,6 +5672,7 @@ public class TestCharset extends TestFmwk {
* Since there is no concept of ambiguous converters in ICU4J
* this test is merely for code coverage reasons.
*/
@Test
public void TestAmbiguousConverter() {
byte [] inBytes = {
0x61, 0x5b, 0x5c
@ -5615,6 +5703,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestIsFixedWidth(){
String[] fixedWidth = {
"US-ASCII",
@ -5648,6 +5737,7 @@ public class TestCharset extends TestFmwk {
}
}
@Test
public void TestBytesLengthForString() {
CharsetProviderICU provider = new CharsetProviderICU();
String[] charsets = {
@ -5685,6 +5775,7 @@ public class TestCharset extends TestFmwk {
* an unmappable character occurs.
* Ticket #8729
*/
@Test
public void TestCharsetASCII8859BufferHandling() {
String firstLine = "C077693790=|MEMO=|00=|022=|Blanche st and the driveway grate was fault and rotated under my car=|\r\n";
String secondLine = "C077693790=|MEMO=|00=|023=|puncturing the fuel tank. I spoke to the store operator (Ram Reddi =|\r\n";
@ -5729,6 +5820,7 @@ public class TestCharset extends TestFmwk {
* side to match what the Java method is expecting. The ICU4C size will be left unchanged.
* Ticket #9205
*/
@Test
public void TestBufferOverflowErrorUsingJavagetBytes() {
String charsetName = "ibm-5035";
String testCase = "\u7d42";
@ -5741,6 +5833,7 @@ public class TestCharset extends TestFmwk {
}
@Test
public void TestDefaultIgnorableCallback() {
String cnv_name = "euc-jp-2007";
String pattern_ignorable = "[:Default_Ignorable_Code_Point:]";

View file

@ -15,6 +15,10 @@ import java.nio.charset.CharsetEncoder;
import java.nio.charset.CoderResult;
import java.nio.charset.CodingErrorAction;
import java.util.Iterator;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import com.ibm.icu.charset.CharsetCallback;
import com.ibm.icu.charset.CharsetDecoderICU;
@ -22,15 +26,22 @@ import com.ibm.icu.charset.CharsetEncoderICU;
import com.ibm.icu.charset.CharsetICU;
import com.ibm.icu.charset.CharsetProviderICU;
import com.ibm.icu.dev.test.ModuleTest;
import com.ibm.icu.dev.test.ModuleTest.TestDataPair;
import com.ibm.icu.dev.test.TestDataModule.DataMap;
import com.ibm.icu.dev.test.TestDataModule.TestData;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.ICUResourceBundle;
import com.ibm.icu.text.UnicodeSet;
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
/**
* This maps to convtest.c which tests the test file for data-driven conversion tests.
*
*/
public class TestConversion extends ModuleTest {
@RunWith(JUnitParamsRunner.class)
public class TestConversion extends TestFmwk {
/**
* This maps to the C struct of conversion case in convtest.h that stores the
* data for a conversion test
@ -42,7 +53,7 @@ public class TestConversion extends ModuleTest {
CodingErrorAction cbErrorAction = null; // callback action type
CharBuffer toUnicodeResult = null;
ByteBuffer fromUnicodeResult = null;
// data retrieved from a test case conversion.txt
String charset; // charset
String unicode; // unicode string
@ -52,21 +63,21 @@ public class TestConversion extends ModuleTest {
boolean fallbacks; // fallback
String outErrorCode; // errorCode
String cbopt; // callback
// TestGetUnicodeSet variables
String map;
String mapnot;
int which;
// CharsetCallback encoder and decoder
CharsetCallback.Decoder cbDecoder = null;
CharsetCallback.Encoder cbEncoder = null;
String caseNrAsString() {
return "[" + caseNr + "]";
}
}
/* In the data-driven conversion test, converters that are not available in
* ICU4J are marked with the following leading symbol.
*/
@ -74,57 +85,57 @@ public class TestConversion extends ModuleTest {
// public methods --------------------------------------------------------
public static void main(String[] args) throws Exception {
new TestConversion().run(args);
public TestConversion() {
}
public TestConversion() {
super("com/ibm/icu/dev/data/testdata/", "conversion");
@SuppressWarnings("unused")
private List<TestDataPair> getTestData() throws Exception {
return ModuleTest.getTestData("com/ibm/icu/dev/data/testdata/", "conversion");
}
/*
* This method maps to the convtest.cpp runIndexedTest() method to run each
* type of conversion.
*/
public void processModules() {
try {
int testFromUnicode = 0;
int testToUnicode = 0;
String testName = t.getName().toString();
@Test
@Parameters(method="getTestData")
public void conversionTest(TestDataPair pair) {
TestData td = pair.td;
//DataMap settings = pair.dm;
// Iterate through and get each of the test case to process
for (Iterator iter = t.getDataIterator(); iter.hasNext();) {
DataMap testcase = (DataMap) iter.next();
int testFromUnicode = 0;
int testToUnicode = 0;
String testName = td.getName().toString();
if (testName.equalsIgnoreCase("toUnicode")) {
TestToUnicode(testcase, testToUnicode);
testToUnicode++;
// Iterate through and get each of the test case to process
for (Iterator iter = td.getDataIterator(); iter.hasNext();) {
DataMap testcase = (DataMap) iter.next();
} else if (testName.equalsIgnoreCase("fromUnicode")) {
TestFromUnicode(testcase, testFromUnicode);
testFromUnicode++;
} else if (testName.equalsIgnoreCase("getUnicodeSet")) {
TestGetUnicodeSet(testcase);
} else {
warnln("Could not load the test cases for conversion");
continue;
}
if (testName.equalsIgnoreCase("toUnicode")) {
TestToUnicode(testcase, testToUnicode);
testToUnicode++;
} else if (testName.equalsIgnoreCase("fromUnicode")) {
TestFromUnicode(testcase, testFromUnicode);
testFromUnicode++;
} else if (testName.equalsIgnoreCase("getUnicodeSet")) {
TestGetUnicodeSet(testcase);
} else {
warnln("Could not load the test cases for conversion");
// continue;
}
} catch (Exception e) {
e.printStackTrace();
}
}
// private methods -------------------------------------------------------
// fromUnicode test worker functions ---------------------------------------
private void TestFromUnicode(DataMap testcase, int caseNr) {
ConversionCase cc = new ConversionCase();
try {
try {
// retrieve test case data
cc.caseNr = caseNr;
cc.charset = ((ICUResourceBundle) testcase.getObject("charset")).getString();
@ -263,7 +274,7 @@ public class TestConversion extends ModuleTest {
}
// if callback action is replace,
// and there is a subchar
// and there is a subchar
// replace the decoder's default replacement value
// if substring, skip test due to current api not supporting
// substring
@ -382,7 +393,7 @@ public class TestConversion extends ModuleTest {
target.limit(currentTargetLimit);
cr = encoder.encode(source, target, currentSourceLimit == sourceLen);
if (cr.isUnderflow()) {
if (currentSourceLimit == sourceLen) {
if (target.position() == cc.bytes.limit()) {
@ -420,11 +431,11 @@ public class TestConversion extends ModuleTest {
}
}
cc.fromUnicodeResult = target;
return target.position();
}
private boolean checkFromUnicode(ConversionCase cc, int resultLength) {
return checkResultsFromUnicode(cc, cc.bytes, cc.fromUnicodeResult);
}
@ -434,7 +445,7 @@ public class TestConversion extends ModuleTest {
private void TestToUnicode(DataMap testcase, int caseNr) {
// create Conversion case to store the test case data
ConversionCase cc = new ConversionCase();
try {
// retrieve test case data
cc.caseNr = caseNr;
@ -600,7 +611,7 @@ public class TestConversion extends ModuleTest {
continue;
}
logln("Testing step:[" + step + "]");
try {
resultLength = stepToUnicode(cc, decoder, step);
ok = checkToUnicode(cc, resultLength);
@ -653,7 +664,7 @@ public class TestConversion extends ModuleTest {
private int stepToUnicode(ConversionCase cc, CharsetDecoder decoder,
int step)
@ -855,12 +866,12 @@ public class TestConversion extends ModuleTest {
}
private boolean checkToUnicode(ConversionCase cc, int resultLength) {
return checkResultsToUnicode(cc, cc.unicode, cc.toUnicodeResult);
}
private void TestGetUnicodeSet(DataMap testcase) {
/*
* charset - will be opened, and ucnv_getUnicodeSet() called on it //
@ -869,14 +880,14 @@ public class TestConversion extends ModuleTest {
* returned set // which - numeric UConverterUnicodeSet value Headers {
* "charset", "map", "mapnot", "which" }
*/
// retrieve test case data
ConversionCase cc = new ConversionCase();
CharsetProviderICU provider = new CharsetProviderICU();
CharsetICU charset ;
UnicodeSet mapset = new UnicodeSet();
UnicodeSet mapnotset = new UnicodeSet();
UnicodeSet unicodeset = new UnicodeSet();
@ -886,76 +897,76 @@ public class TestConversion extends ModuleTest {
cc.map = ((ICUResourceBundle) testcase.getObject("map")).getString();
cc.mapnot = ((ICUResourceBundle) testcase.getObject("mapnot"))
.getString();
cc.which = ((ICUResourceBundle) testcase.getObject("which")).getInt(); // only checking for ROUNDTRIP_SET
// ----for debugging only
logln("");
logln("TestGetUnicodeSet[" + cc.charset + "] ");
logln("...............................................");
try{
// if cc.charset starts with '*', obtain it from com/ibm/icu/dev/data/testdata
charset = (cc.charset != null && cc.charset.length() > 0 && cc.charset.charAt(0) == '*')
// if cc.charset starts with '*', obtain it from com/ibm/icu/dev/data/testdata
charset = (cc.charset != null && cc.charset.length() > 0 && cc.charset.charAt(0) == '*')
? (CharsetICU) provider.charsetForName(cc.charset.substring(1),
"com/ibm/icu/dev/data/testdata", this.getClass().getClassLoader())
: (CharsetICU) provider.charsetForName(cc.charset);
//checking for converter that are not supported at this point
try{
if(charset==null ||
charset.name()=="BOCU-1" ||charset.name()== "SCSU"|| charset.name()=="lmbcs1" || charset.name()== "lmbcs2" ||
charset.name()== "lmbcs3" || charset.name()== "lmbcs4" || charset.name()=="lmbcs5" || charset.name()=="lmbcs6" ||
charset.name()== "lmbcs8" || charset.name()=="lmbcs11" || charset.name()=="lmbcs16" || charset.name()=="lmbcs17" ||
charset.name()=="lmbcs18"|| charset.name()=="lmbcs19"){
logln("Converter not supported at this point :" + cc.charset);
return;
}
if(cc.which==1){
logln("Fallback set not supported at this point for converter : "+charset.displayName());
return;
}
}catch(Exception e){
return;
}
mapset.clear();
mapnotset.clear();
mapset.applyPattern(cc.map,false);
mapnotset.applyPattern(cc.mapnot,false);
charset.getUnicodeSet(unicodeset, cc.which);
UnicodeSet diffset = new UnicodeSet();
//are there items that must be in unicodeset but are not?
(diffset = mapset).removeAll(unicodeset);
if(!diffset.isEmpty()){
StringBuffer s = new StringBuffer(diffset.toPattern(true));
if(s.length()>100){
s.replace(0, 0x7fffffff, ellipsis);
}
errln("error in missing items - conversion/getUnicodeSet test case "+cc.charset + "\n" + s.toString());
}
//are the items that must not be in unicodeset but are?
(diffset=mapnotset).retainAll(unicodeset);
if(!diffset.isEmpty()){
StringBuffer s = new StringBuffer(diffset.toPattern(true));
if(s.length()>100){
s.replace(0, 0x7fffffff, ellipsis);
}
errln("contains unexpected items - conversion/getUnicodeSet test case "+cc.charset + "\n" + s.toString());
}
} catch (Exception e) {
errln("getUnicodeSet returned an error code");
errln("ErrorCode expected is: " + cc.outErrorCode);
errln("Error Result is: " + e.toString());
return;
}
"com/ibm/icu/dev/data/testdata", this.getClass().getClassLoader())
: (CharsetICU) provider.charsetForName(cc.charset);
//checking for converter that are not supported at this point
try{
if(charset==null ||
charset.name()=="BOCU-1" ||charset.name()== "SCSU"|| charset.name()=="lmbcs1" || charset.name()== "lmbcs2" ||
charset.name()== "lmbcs3" || charset.name()== "lmbcs4" || charset.name()=="lmbcs5" || charset.name()=="lmbcs6" ||
charset.name()== "lmbcs8" || charset.name()=="lmbcs11" || charset.name()=="lmbcs16" || charset.name()=="lmbcs17" ||
charset.name()=="lmbcs18"|| charset.name()=="lmbcs19"){
logln("Converter not supported at this point :" + cc.charset);
return;
}
if(cc.which==1){
logln("Fallback set not supported at this point for converter : "+charset.displayName());
return;
}
}catch(Exception e){
return;
}
mapset.clear();
mapnotset.clear();
mapset.applyPattern(cc.map,false);
mapnotset.applyPattern(cc.mapnot,false);
charset.getUnicodeSet(unicodeset, cc.which);
UnicodeSet diffset = new UnicodeSet();
//are there items that must be in unicodeset but are not?
(diffset = mapset).removeAll(unicodeset);
if(!diffset.isEmpty()){
StringBuffer s = new StringBuffer(diffset.toPattern(true));
if(s.length()>100){
s.replace(0, 0x7fffffff, ellipsis);
}
errln("error in missing items - conversion/getUnicodeSet test case "+cc.charset + "\n" + s.toString());
}
//are the items that must not be in unicodeset but are?
(diffset=mapnotset).retainAll(unicodeset);
if(!diffset.isEmpty()){
StringBuffer s = new StringBuffer(diffset.toPattern(true));
if(s.length()>100){
s.replace(0, 0x7fffffff, ellipsis);
}
errln("contains unexpected items - conversion/getUnicodeSet test case "+cc.charset + "\n" + s.toString());
}
} catch (Exception e) {
errln("getUnicodeSet returned an error code");
errln("ErrorCode expected is: " + cc.outErrorCode);
errln("Error Result is: " + e.toString());
return;
}
}
/**
@ -1082,7 +1093,7 @@ public class TestConversion extends ModuleTest {
expected.rewind();
output.limit(output.position());
output.rewind();
// remove any BOM signature before checking
if (!cc.charset.contains("UnicodeLittle") && !cc.charset.contains("UnicodeBig")) {
detectUnicodeSignature(output); // sets the position to after the BOM
@ -1103,7 +1114,7 @@ public class TestConversion extends ModuleTest {
}
}
}
if (res) {
logln("[" + cc.caseNr + "]:" + cc.charset);
logln("Input: " + printchars(CharBuffer.wrap(cc.unicode), cc.unicode.length()));
@ -1141,7 +1152,7 @@ public class TestConversion extends ModuleTest {
}
}
}
if (res) {
logln("[" + cc.caseNr + "]:" + cc.charset);
logln("Input: " + printbytes(cc.bytes, cc.bytes.limit()));

View file

@ -24,6 +24,8 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.junit.Test;
import com.ibm.icu.charset.CharsetICU;
import com.ibm.icu.charset.CharsetProviderICU;
import com.ibm.icu.charset.CharsetSelector;
@ -32,14 +34,10 @@ import com.ibm.icu.text.UTF16;
import com.ibm.icu.text.UnicodeSet;
public class TestSelection extends TestFmwk {
public static void main(String[] args) throws Exception {
new TestSelection().run(args);
}
@Test
public void TestConversionUTF16() {
List<String> testEncodings;
if (getInclusion() < 6) {
if (TestFmwk.getExhaustiveness() < 6) {
testEncodings = Arrays.asList(
"Big5",
"EUC-JP",
@ -122,6 +120,7 @@ public class TestSelection extends TestFmwk {
}
/* This test is to provide better code coverage for CharsetSelector */
@Test
public void TestCharsetSelectorCodeCoverage() {
List emptyList = new ArrayList();
UnicodeSet nonEmptySet = new UnicodeSet();

View file

@ -9,5 +9,16 @@
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-regiondata"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-core-tests"/>
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/junit-4.12-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/JUnitParams-1.0.5-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="out/bin"/>
</classpath>

View file

@ -10,6 +10,7 @@
<import file="${shared.dir}/build/common-targets.xml"/>
<path id="javac.classpathref">
<path refid="junit.jars"/>
<path refid="javac.classpathref.${ant.project.name}"/>
</path>
<property name="jar.name" value="icu4j-${ant.project.name}.jar"/>

View file

@ -1,35 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 1996-2009, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other tests as a batch.
*/
public class TestAllCollate extends TestGroup {
public static void main(String[] args) {
new TestAllCollate().run(args);
}
public TestAllCollate() {
super(
new String[] {
"com.ibm.icu.dev.test.collator.TestAll",
"com.ibm.icu.dev.test.format.GlobalizationPreferencesTest",
"com.ibm.icu.dev.test.format.RbnfLenientScannerTest",
"com.ibm.icu.dev.test.search.SearchTest",
"com.ibm.icu.dev.test.util.ICUResourceBundleCollationTest",
"com.ibm.icu.dev.test.util.LocaleAliasCollationTest",
"com.ibm.icu.dev.test.util.ULocaleCollationTest",
},
"All tests in ICU collation");
}
public static final String CLASS_TARGET_NAME = "Collate";
}

View file

@ -15,6 +15,8 @@ import java.util.Locale;
import java.util.Set;
import java.util.TreeSet;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.util.CollectionUtilities;
import com.ibm.icu.impl.ICUDebug;
@ -161,9 +163,6 @@ public class AlphabeticIndexTest extends TestFmwk {
// /* Yoruba*/ {"yo", "A:B:C:D:E:F:G:H:I:J:K:L:M:N:O:P:Q:R:S:T:U:V:W:X:Y:Z"},
};
public static void main(String[] args) throws Exception{
new AlphabeticIndexTest().run(args);
}
// public void TestAAKeyword() {
// ICUResourceBundle rb = (ICUResourceBundle) UResourceBundle.getBundleInstance(
@ -210,6 +209,7 @@ public class AlphabeticIndexTest extends TestFmwk {
// }
@Test
public void TestA() {
String[][] tests = {{"zh_Hant", "渡辺", "12劃"},
{"zh", "渡辺", "D"}
@ -239,6 +239,7 @@ public class AlphabeticIndexTest extends TestFmwk {
return null;
}
@Test
public void TestFirstCharacters() {
AlphabeticIndex alphabeticIndex = new AlphabeticIndex(Locale.ENGLISH);
@ -294,6 +295,7 @@ public class AlphabeticIndexTest extends TestFmwk {
return UScript.UNKNOWN;
}
@Test
public void TestBuckets() {
ULocale additionalLocale = ULocale.ENGLISH;
@ -302,6 +304,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestEmpty() {
// just verify that it doesn't blow up.
Set<ULocale> locales = new LinkedHashSet<ULocale>();
@ -322,6 +325,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestInflow() {
Object[][] tests = {
{0, ULocale.ENGLISH},
@ -505,6 +509,7 @@ public class AlphabeticIndexTest extends TestFmwk {
return keys;
}
@Test
public void TestIndexCharactersList() {
for (String[] localeAndIndexCharacters : localeAndIndexCharactersLists) {
ULocale locale = new ULocale(localeAndIndexCharacters[0]);
@ -529,6 +534,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestBasics() {
ULocale[] list = ULocale.getAvailableLocales();
// get keywords combinations
@ -577,6 +583,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestClientSupport() {
for (String localeString : new String[] {"zh"}) { // KEY_LOCALES, new String[] {"zh"}
ULocale ulocale = new ULocale(localeString);
@ -655,6 +662,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestFirstScriptCharacters() {
Collection<String> firstCharacters =
new AlphabeticIndex(ULocale.ENGLISH).getFirstCharactersInScripts();
@ -729,6 +737,7 @@ public class AlphabeticIndexTest extends TestFmwk {
UScript.getScript(Character.codePointAt(s, 1)) == UScript.UNKNOWN;
}
@Test
public void TestZZZ() {
// int x = 3;
// AlphabeticIndex index = new AlphabeticIndex(ULocale.ENGLISH);
@ -742,9 +751,12 @@ public class AlphabeticIndexTest extends TestFmwk {
// System.out.println("Bucket Count =" + index.getBucketCount());
}
@Test
public void TestSimplified() {
checkBuckets("zh", simplifiedNames, ULocale.ENGLISH, "W", "\u897f");
}
@Test
public void TestTraditional() {
checkBuckets("zh_Hant", traditionalNames, ULocale.ENGLISH, "\u4e9f", "\u5357\u9580");
}
@ -885,6 +897,7 @@ public class AlphabeticIndexTest extends TestFmwk {
/**
* Test AlphabeticIndex vs. root with script reordering.
*/
@Test
public void TestHaniFirst() {
RuleBasedCollator coll = (RuleBasedCollator) Collator.getInstance(ULocale.ROOT);
coll.setReorderCodes(UScript.HAN);
@ -908,6 +921,7 @@ public class AlphabeticIndexTest extends TestFmwk {
/**
* Test AlphabeticIndex vs. Pinyin with script reordering.
*/
@Test
public void TestPinyinFirst() {
RuleBasedCollator coll = (RuleBasedCollator) Collator.getInstance(ULocale.CHINESE);
coll.setReorderCodes(UScript.HAN);
@ -931,6 +945,7 @@ public class AlphabeticIndexTest extends TestFmwk {
/**
* Test labels with multiple primary weights.
*/
@Test
public void TestSchSt() {
AlphabeticIndex index = new AlphabeticIndex(ULocale.GERMAN);
index.addLabels(new UnicodeSet("[Æ{Sch*}{St*}]"));
@ -972,6 +987,7 @@ public class AlphabeticIndexTest extends TestFmwk {
/**
* With no real labels, there should be only the underflow label.
*/
@Test
public void TestNoLabels() {
RuleBasedCollator coll = (RuleBasedCollator) Collator.getInstance(ULocale.ROOT);
AlphabeticIndex<Integer> index = new AlphabeticIndex<Integer>(coll);
@ -987,6 +1003,7 @@ public class AlphabeticIndexTest extends TestFmwk {
/**
* Test with the Bopomofo-phonetic tailoring.
*/
@Test
public void TestChineseZhuyin() {
AlphabeticIndex index = new AlphabeticIndex(ULocale.forLanguageTag("zh-u-co-zhuyin"));
ImmutableIndex immIndex = index.buildImmutableIndex();
@ -998,6 +1015,7 @@ public class AlphabeticIndexTest extends TestFmwk {
assertEquals("label 5", "", immIndex.getBucket(5).getLabel());
}
@Test
public void TestJapaneseKanji() {
AlphabeticIndex index = new AlphabeticIndex(ULocale.JAPANESE);
AlphabeticIndex.ImmutableIndex immIndex = index.buildImmutableIndex();
@ -1011,6 +1029,7 @@ public class AlphabeticIndexTest extends TestFmwk {
}
}
@Test
public void TestFrozenCollator() {
// Ticket #9472
RuleBasedCollator coll = (RuleBasedCollator) Collator.getInstance(new ULocale("da"));
@ -1024,6 +1043,7 @@ public class AlphabeticIndexTest extends TestFmwk {
Collator.IDENTICAL, index.getCollator().getStrength());
}
@Test
public void TestChineseUnihan() {
AlphabeticIndex index = new AlphabeticIndex(new ULocale("zh-u-co-unihan"));
index.setMaxLabelCount(500); // ICU 54 default is 99.

View file

@ -20,6 +20,8 @@ import java.util.Locale;
import java.util.MissingResourceException;
import java.util.Set;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.Utility;
import com.ibm.icu.lang.UCharacter;
@ -35,11 +37,6 @@ import com.ibm.icu.util.ULocale;
import com.ibm.icu.util.VersionInfo;
public class CollationAPITest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationAPITest().run(args);
//new CollationAPITest().TestGetTailoredSet();
}
/**
* This tests the collation key related APIs.
* - constructor/destructor
@ -48,6 +45,7 @@ public class CollationAPITest extends TestFmwk {
* - comparison between collation keys
* - creating collation key with a byte array and vice versa
*/
@Test
public void TestCollationKey() {
logln("testing CollationKey begins...");
Collator col = Collator.getInstance();
@ -136,6 +134,7 @@ public class CollationAPITest extends TestFmwk {
logln("testing sortkey ends...");
}
@Test
public void TestRawCollationKey()
{
// testing constructors
@ -189,6 +188,7 @@ public class CollationAPITest extends TestFmwk {
* - greater than or equal to
* - equal to
*/
@Test
public void TestCompare() {
logln("The compare tests begin : ");
Collator col = Collator.getInstance(Locale.ENGLISH);
@ -217,6 +217,7 @@ public class CollationAPITest extends TestFmwk {
/**
* Tests decomposition setting
*/
@Test
public void TestDecomposition() {
Collator en_US = null, el_GR = null, vi_VN = null;
@ -245,6 +246,7 @@ public class CollationAPITest extends TestFmwk {
/**
* This tests the duplication of a collator object.
*/
@Test
public void TestDuplicate() {
//Clone does not be implemented
Collator col1 = Collator.getInstance(Locale.ENGLISH);
@ -273,6 +275,7 @@ public class CollationAPITest extends TestFmwk {
* - reseting the iterator index
* - requesting the order properties(primary, secondary or tertiary)
*/
@Test
public void TestElemIter() {
// logln("testing sortkey begins...");
Collator col = Collator.getInstance(Locale.ENGLISH);
@ -380,6 +383,7 @@ public class CollationAPITest extends TestFmwk {
/**
* This tests the hashCode method of a collator object.
*/
@Test
public void TestHashCode() {
logln("hashCode tests begin.");
Collator col1 = Collator.getInstance(Locale.ENGLISH);
@ -429,6 +433,7 @@ public class CollationAPITest extends TestFmwk {
* - compare and getCollationKey
* - get/set decomposition mode and comparison level
*/
@Test
public void TestProperty() {
/*
All the collations have the same version in an ICU
@ -501,6 +506,8 @@ public class CollationAPITest extends TestFmwk {
doAssert((col.getStrength() != Collator.SECONDARY), "collation object's strength is secondary difference");
}
@Test
public void TestJunkCollator(){
logln("Create junk collation: ");
Locale abcd = new Locale("ab", "CD", "");
@ -525,11 +532,13 @@ public class CollationAPITest extends TestFmwk {
logln("Collator property test ended.");
}
/**
* This tests the RuleBasedCollator
* - constructor/destructor
* - getRules
*/
@Test
public void TestRuleBasedColl() {
RuleBasedCollator col1 = null, col2 = null, col3 = null, col4 = null;
@ -629,6 +638,7 @@ public class CollationAPITest extends TestFmwk {
* This tests the RuleBasedCollator
* - getRules
*/
@Test
public void TestRules() {
RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(new Locale("","","")); //root
// logln("PASS: RuleBased Collator creation passed");
@ -640,6 +650,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestSafeClone() {
String test1 = "abCda";
String test2 = "abcda";
@ -675,6 +686,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestGetTailoredSet()
{
logln("testing getTailoredSet...");
@ -716,6 +728,7 @@ public class CollationAPITest extends TestFmwk {
/**
* Simple test to see if Collator is subclassable
*/
@Test
public void TestSubClass()
{
class TestCollator extends Collator
@ -825,6 +838,7 @@ public class CollationAPITest extends TestFmwk {
* Simple test the collator setter and getters.
* Similar to C++ apicoll.cpp TestAttribute().
*/
@Test
public void TestSetGet()
{
RuleBasedCollator collator = (RuleBasedCollator)Collator.getInstance();
@ -900,6 +914,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestVariableTopSetting() {
// Use the root collator, not the default collator.
// This test fails with en_US_POSIX which tailors the dollar sign after 'A'.
@ -944,6 +959,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestMaxVariable() {
RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(ULocale.ROOT);
@ -965,6 +981,7 @@ public class CollationAPITest extends TestFmwk {
assertEquals("dollar<zero", -1, coll.compare("$", "0")); // UCOL_LESS
}
@Test
public void TestGetLocale() {
String rules = "&a<x<y<z";
@ -1081,6 +1098,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestBounds()
{
Collator coll = Collator.getInstance(new Locale("sh", ""));
@ -1242,6 +1260,7 @@ public class CollationAPITest extends TestFmwk {
}
// capitst.c/TestGetContractionsAndUnsafes()
@Test
public void TestGetContractions() throws Exception {
/* static struct {
const char* locale;
@ -1332,6 +1351,7 @@ public class CollationAPITest extends TestFmwk {
private static final String bigone = "One";
private static final String littleone = "one";
@Test
public void TestClone() {
logln("\ninit c0");
RuleBasedCollator c0 = (RuleBasedCollator)Collator.getInstance();
@ -1365,6 +1385,7 @@ public class CollationAPITest extends TestFmwk {
" u: " + c.isUpperCaseFirst());
}
@Test
public void TestIterNumeric() throws Exception { // misnomer for Java, but parallel with C++ test
// Regression test for ticket #9915.
// The collation code sometimes masked the continuation marker away
@ -1384,6 +1405,7 @@ public class CollationAPITest extends TestFmwk {
/*
* Tests the method public void setStrength(int newStrength)
*/
@Test
public void TestSetStrength() {
// Tests when if ((newStrength != PRIMARY) && ... ) is true
int[] cases = { -1, 4, 5 };
@ -1402,6 +1424,7 @@ public class CollationAPITest extends TestFmwk {
/*
* Tests the method public void setDecomposition(int decomposition)
*/
@Test
public void TestSetDecomposition() {
// Tests when if ((decomposition != NO_DECOMPOSITION) && ...) is true
int[] cases = { 0, 1, 14, 15, 18, 19 };
@ -1420,6 +1443,7 @@ public class CollationAPITest extends TestFmwk {
/*
* Tests the class CollatorFactory
*/
@Test
public void TestCreateCollator() {
// The following class override public Collator createCollator(Locale loc)
class TestCreateCollator extends CollatorFactory {
@ -1497,6 +1521,7 @@ public class CollationAPITest extends TestFmwk {
* public static final String[] getKeywordValues(String keyword)
*/
@SuppressWarnings("static-access")
@Test
public void TestGetKeywordValues(){
// Tests when "if (!keyword.equals(KEYWORDS[0]))" is true
String[] cases = {"","dummy"};
@ -1511,6 +1536,7 @@ public class CollationAPITest extends TestFmwk {
}
}
@Test
public void TestBadKeywords() {
// Test locale IDs with errors.
// Valid locale IDs are tested via data-driven tests.

View file

@ -14,19 +14,18 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.RuleBasedCollator;
public class CollationChineseTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new CollationChineseTest().run(args);
}
public CollationChineseTest()
{
}
@Test
public void TestPinYin()
{
String seq[]

View file

@ -10,6 +10,8 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import java.util.Random;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
@ -26,12 +28,7 @@ import com.ibm.icu.text.RuleBasedCollator;
*/
public class CollationCreationMethodTest extends TestFmwk
{
public static void main(String[] args) throws Exception
{
new CollationCreationMethodTest().run(args);
}
@Test
public void TestRuleVsLocaleCreationMonkey()
{
//create a RBC from a collator reader by reading in a locale collation file

View file

@ -14,16 +14,15 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.RuleBasedCollator;
public class CollationCurrencyTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationCurrencyTest().run(args);
}
@Test
public void TestCurrency() {
// All the currency symbols, in collation order
char[][] currency = {

View file

@ -15,6 +15,9 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationElementIterator;
import com.ibm.icu.text.CollationKey;
@ -23,10 +26,6 @@ import com.ibm.icu.text.Normalizer;
import com.ibm.icu.text.RuleBasedCollator;
public class CollationDummyTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationDummyTest().run(args);
}
//testSourceCases[][] and testTargetCases[][], testCases[][] are ported from the file callcoll.c in icu4c
private static char[][] testSourceCases = {
{0x61, 0x62, 0x27, 0x63},
@ -168,18 +167,20 @@ public class CollationDummyTest extends TestFmwk {
final int MAX_TOKEN_LEN = 16;
public RuleBasedCollator myCollation;
private RuleBasedCollator myCollation;
public CollationDummyTest() {
}
protected void init() throws Exception{
@Before
public void init() throws Exception {
String ruleset = "& C < ch, cH, Ch, CH & Five, 5 & Four, 4 & one, 1 & Ampersand; '&' & Two, 2 ";
// String ruleset = "& Four, 4";
myCollation = null;
myCollation = new RuleBasedCollator(ruleset);
}
// perform test with strength tertiary
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);
@ -189,6 +190,7 @@ public class CollationDummyTest extends TestFmwk {
}
// perform test with strength PRIMARY
@Test
public void TestPrimary() {
// problem in strcollinc for unfinshed contractions
myCollation.setStrength(Collator.PRIMARY);
@ -198,6 +200,7 @@ public class CollationDummyTest extends TestFmwk {
}
//perform test with strength SECONDARY
@Test
public void TestSecondary() {
int i;
myCollation.setStrength(Collator.SECONDARY);
@ -207,6 +210,7 @@ public class CollationDummyTest extends TestFmwk {
}
// perform extra tests
@Test
public void TestExtra() {
int i, j;
myCollation.setStrength(Collator.TERTIARY);
@ -217,6 +221,7 @@ public class CollationDummyTest extends TestFmwk {
}
}
@Test
public void TestIdentical() {
int i;
myCollation.setStrength(Collator.IDENTICAL);
@ -225,6 +230,7 @@ public class CollationDummyTest extends TestFmwk {
}
}
@Test
public void TestJB581() {
String source = "THISISATEST.";
String target = "Thisisatest.";
@ -268,6 +274,7 @@ public class CollationDummyTest extends TestFmwk {
/**
* Tests surrogate support.
*/
@Test
public void TestSurrogates()
{
String rules = "&z<'\ud800\udc00'<'\ud800\udc0a\u0308'<A";
@ -334,6 +341,7 @@ public class CollationDummyTest extends TestFmwk {
* tag has the value shifted, any codepoints before [variable top] should give
* a primary ce of 0.
*/
@Test
public void TestVariableTop() {
/*
* Starting with ICU 53, setting the variable top via a pseudo relation string
@ -399,6 +407,7 @@ public class CollationDummyTest extends TestFmwk {
}
}
@Test
public void TestJB1401() {
Collator myCollator = null;
char[] NFD_UnsafeStartChars = {

View file

@ -14,15 +14,14 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
public class CollationEnglishTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new CollationEnglishTest().run(args);
}
private static char[][] testSourceCases = {
{0x0061 /* 'a' */, 0x0062 /* 'b' */},
{0x0062 /* 'b' */, 0x006C /* 'l' */, 0x0061 /* 'a' */, 0x0063 /* 'c' */, 0x006B /* 'k' */, 0x002D /* '-' */, 0x0062 /* 'b' */, 0x0069 /* 'i' */, 0x0072 /* 'r' */, 0x0064 /* 'd' */},
@ -242,11 +241,14 @@ public class CollationEnglishTest extends TestFmwk{
public CollationEnglishTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception {
myCollation = Collator.getInstance(Locale.ENGLISH);
}
//performs test with strength PRIMARY
@Test
public void TestPrimary() {
int i;
myCollation.setStrength(Collator.PRIMARY);
@ -256,6 +258,7 @@ public class CollationEnglishTest extends TestFmwk{
}
//perform test with strength SECONDARY
@Test
public void TestSecondary() {
int i;
myCollation.setStrength(Collator.SECONDARY);
@ -281,6 +284,7 @@ public class CollationEnglishTest extends TestFmwk{
}
//perform test with strength TERTIARY
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);

View file

@ -12,16 +12,15 @@
package com.ibm.icu.dev.test.collator;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
import com.ibm.icu.util.ULocale;
public class CollationFinnishTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationFinnishTest().run(args);
}
private static char[][] testSourceCases = {
{0x77, 0x61, 0x74},
{0x76, 0x61, 0x74},
@ -51,12 +50,15 @@ public class CollationFinnishTest extends TestFmwk {
public CollationFinnishTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception{
myCollation = Collator.getInstance(new ULocale("fi_FI@collation=standard"));
}
// perform tests with strength PRIMARY
@Test
public void TestPrimary() {
int i = 0;
myCollation.setStrength(Collator.PRIMARY);
@ -66,6 +68,7 @@ public class CollationFinnishTest extends TestFmwk {
}
// perform test with strength TERTIARY
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);

View file

@ -14,16 +14,15 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.RuleBasedCollator;
public class CollationFrenchTest extends TestFmwk{
public static void main(String[] args) throws Exception {
new CollationFrenchTest().run(args);
}
private static char[][] testSourceCases = {
{0x0061/*'a'*/, 0x0062/*'b'*/, 0x0063/*'c'*/},
{0x0043/*'C'*/, 0x004f/*'O'*/, 0x0054/*'T'*/, 0x0045/*'E'*/},
@ -116,13 +115,15 @@ public class CollationFrenchTest extends TestFmwk{
private Collator myCollation = null;
public CollationFrenchTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception {
myCollation = Collator.getInstance(Locale.CANADA_FRENCH);
}
// perform tests with strength TERTIARY
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);
@ -133,6 +134,7 @@ public class CollationFrenchTest extends TestFmwk{
}
// perform tests with strength SECONDARY
@Test
public void TestSecondary() {
//test acute and grave ordering
int i = 0;
@ -156,6 +158,7 @@ public class CollationFrenchTest extends TestFmwk{
}
// perform extra tests
@Test
public void TestExtra() {
int i, j;
myCollation.setStrength(Collator.TERTIARY);
@ -166,6 +169,7 @@ public class CollationFrenchTest extends TestFmwk{
}
}
@Test
public void TestContinuationReordering()
{
String rule = "&0x2f00 << 0x2f01";

View file

@ -15,6 +15,8 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import java.util.Random;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
@ -31,10 +33,7 @@ public class CollationFrozenMonkeyTest extends TestFmwk {
private String source = "-abcdefghijklmnopqrstuvwxyz#&^$@";
public static void main(String[] args) throws Exception {
new CollationFrozenMonkeyTest().run(args);
}
@Test
public void TestCollationKey() {
if(source.length() == 0) {
errln("CollationMonkeyTest.TestCollationKey(): source is empty - ICU_DATA not set or data missing?");
@ -119,6 +118,7 @@ public class CollationFrozenMonkeyTest extends TestFmwk {
}
// perform monkey tests using Collator.compare
@Test
public void TestCompare() {
if(source.length() == 0) {
errln("CollationMonkeyTest.TestCompare(): source is empty - ICU_DATA not set or data missing?");
@ -210,6 +210,7 @@ public class CollationFrozenMonkeyTest extends TestFmwk {
}
}
@Test
public void TestRules() {
String testSourceCases[] = {
"\u0061\u0062\u007a",

View file

@ -14,15 +14,14 @@
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
public class CollationGermanTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new CollationGermanTest().run(args);
}
private static char[][] testSourceCases = {
{0x47, 0x72, 0x00F6, 0x00DF, 0x65},
{0x61, 0x62, 0x63},
@ -73,15 +72,18 @@ import com.ibm.icu.text.Collator;
private Collator myCollation = null;
public CollationGermanTest() {
}
protected void init() throws Exception{
@Before
public void init() throws Exception {
myCollation = Collator.getInstance(Locale.GERMAN);
if(myCollation == null) {
errln("ERROR: in creation of collator of GERMAN locale");
}
}
// perform test with strength TERTIARY
@Test
public void TestTertiary(){
if(myCollation == null ) {
errln("decoll: cannot start test, collator is null\n");
@ -99,10 +101,12 @@ import com.ibm.icu.text.Collator;
// perform test with strength SECONDARY
//This method in icu4c has no implementation.
@Test
public void TestSecondary(){
}
// perform test with strength PRIMARY
// perform test with strength PRIMARY
@Test
public void TestPrimary(){
if(myCollation == null ) {
errln("decoll: cannot start test, collator is null\n");

View file

@ -17,6 +17,8 @@ import java.text.StringCharacterIterator;
import java.util.Arrays;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.lang.UCharacter;
import com.ibm.icu.text.CollationElementIterator;
@ -30,14 +32,10 @@ public class CollationIteratorTest extends TestFmwk {
String test1 = "What subset of all possible test cases?";
String test2 = "has the highest probability of detecting";
public static void main(String[] args) throws Exception {
new CollationIteratorTest().run(args);
// new CollationIteratorTest().TestNormalizedUnicodeChar();
}
/*
* @bug 4157299
*/
@Test
public void TestClearBuffers(/* char* par */) {
RuleBasedCollator c = null;
try {
@ -93,6 +91,7 @@ public class CollationIteratorTest extends TestFmwk {
/** @bug 4108762
* Test for getMaxExpansion()
*/
@Test
public void TestMaxExpansion(/* char* par */) {
int unassigned = 0xEFFFD;
String rule = "&a < ab < c/aba < d < z < ch";
@ -206,6 +205,7 @@ public class CollationIteratorTest extends TestFmwk {
/**
* Test for getOffset() and setOffset()
*/
@Test
public void TestOffset(/* char* par */) {
RuleBasedCollator en_us;
try {
@ -320,6 +320,7 @@ public class CollationIteratorTest extends TestFmwk {
* @bug 4108758 - Make sure it works with contracting characters
*
*/
@Test
public void TestPrevious(/* char* par */) {
RuleBasedCollator en_us = (RuleBasedCollator)Collator.getInstance(Locale.US);
CollationElementIterator iter = en_us.getCollationElementIterator(test1);
@ -397,6 +398,7 @@ public class CollationIteratorTest extends TestFmwk {
/**
* Test for setText()
*/
@Test
public void TestSetText(/* char* par */) {
RuleBasedCollator en_us = (RuleBasedCollator)Collator.getInstance(Locale.US);
CollationElementIterator iter1 = en_us.getCollationElementIterator(test1);
@ -451,6 +453,7 @@ public class CollationIteratorTest extends TestFmwk {
* Test for CollationElementIterator previous and next for the whole set of
* unicode characters.
*/
@Test
public void TestUnicodeChar() {
RuleBasedCollator en_us = (RuleBasedCollator)Collator.getInstance(Locale.US);
CollationElementIterator iter;
@ -497,6 +500,7 @@ public class CollationIteratorTest extends TestFmwk {
* Test for CollationElementIterator previous and next for the whole set of
* unicode characters with normalization on.
*/
@Test
public void TestNormalizedUnicodeChar()
{
// thai should have normalization on
@ -548,6 +552,7 @@ public class CollationIteratorTest extends TestFmwk {
/**
* Testing the discontiguous contractions
*/
@Test
public void TestDiscontiguous()
{
String rulestr ="&z < AB < X\u0300 < ABC < X\u0300\u0315";
@ -623,6 +628,7 @@ public class CollationIteratorTest extends TestFmwk {
/**
* Test the incremental normalization
*/
@Test
public void TestNormalization()
{
String rules = "&a < \u0300\u0315 < A\u0300\u0315 < \u0316\u0315B < \u0316\u0300\u0315";
@ -660,6 +666,7 @@ public class CollationIteratorTest extends TestFmwk {
* For example, the DUCET's artificial secondary CE in the ae-ligature
* may map to two 32-bit iterator CEs (as it did until ICU 52).
*/
@Test
public void TestSearchCollatorElements()
{
String tsceText =

View file

@ -14,6 +14,9 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
@ -21,10 +24,6 @@ import com.ibm.icu.text.RuleBasedCollator;
import com.ibm.icu.util.ULocale;
public class CollationKanaTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new CollationKanaTest().run(args);
}
private static char[][] testSourceCases = {
{0xff9E},
{0x3042},
@ -95,12 +94,16 @@ public class CollationKanaTest extends TestFmwk{
public CollationKanaTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception {
if(myCollation==null){
myCollation = Collator.getInstance(Locale.JAPANESE);
}
}
// performs test with strength TERIARY
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);
@ -111,6 +114,7 @@ public class CollationKanaTest extends TestFmwk{
}
/* Testing base letters */
@Test
public void TestBase() {
int i;
myCollation.setStrength(Collator.PRIMARY);
@ -120,6 +124,7 @@ public class CollationKanaTest extends TestFmwk{
}
/* Testing plain, Daku-ten, Handaku-ten letters */
@Test
public void TestPlainDakutenHandakuten() {
int i;
myCollation.setStrength(Collator.SECONDARY);
@ -131,6 +136,7 @@ public class CollationKanaTest extends TestFmwk{
/*
* Test Small, Large letters
*/
@Test
public void TestSmallLarge() {
int i;
myCollation.setStrength(Collator.TERTIARY);
@ -143,6 +149,7 @@ public class CollationKanaTest extends TestFmwk{
/*
* Test Katakana, Hiragana letters
*/
@Test
public void TestKatakanaHiragana() {
int i;
myCollation.setStrength(Collator.QUATERNARY);
@ -154,6 +161,7 @@ public class CollationKanaTest extends TestFmwk{
/*
* Test Choo-on kigoo
*/
@Test
public void TestChooonKigoo() {
int i;
myCollation.setStrength(Collator.QUATERNARY);
@ -165,6 +173,7 @@ public class CollationKanaTest extends TestFmwk{
/*
* Test common Hiragana and Katakana characters (e.g. 0x3099) (ticket:6140)
*/
@Test
public void TestCommonCharacters() {
char[] tmp1 = { 0x3058, 0x30B8 };
char[] tmp2 = { 0x3057, 0x3099, 0x30B7, 0x3099 };

View file

@ -17,6 +17,9 @@ import java.util.Locale;
import java.util.Set;
import java.util.TreeSet;
import org.junit.Ignore;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.ICUData;
import com.ibm.icu.impl.ICUResourceBundle;
@ -37,12 +40,6 @@ import com.ibm.icu.util.ULocale;
import com.ibm.icu.util.UResourceBundle;
public class CollationMiscTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationMiscTest().run(args);
// new CollationMiscTest().TestLocaleRuleBasedCollators();
}
//private static final int NORM_BUFFER_TEST_LEN_ = 32;
private static final class Tester
{
@ -67,6 +64,7 @@ public class CollationMiscTest extends TestFmwk {
return false;
}
@Test
public void TestComposeDecompose()
{
Tester t[] = new Tester[0x30000];
@ -133,6 +131,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestRuleOptions() {
// values here are hardcoded and are correct for the current UCA when
// the UCA changes, one might be forced to change these values.
@ -333,6 +332,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestBeforePrefixFailure() {
String[] rules = {
"&g <<< a&[before 3]\uff41 <<< x",
@ -350,6 +350,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestContractionClosure() {
// Note: This was also ported to the data-driven test, see collationtest.txt.
String[] rules = {
@ -366,6 +367,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestPrefixCompose() {
String rule1 = "&\u30a7<<<\u30ab|\u30fc=\u30ac|\u30fc";
@ -378,6 +380,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestStrCollIdenticalPrefix() {
String rule = "&\ud9b0\udc70=\ud9b0\udc71";
String test[] = {
@ -387,6 +390,7 @@ public class CollationMiscTest extends TestFmwk {
genericRulesStarterWithResult(rule, test, 0);
}
@Test
public void TestPrefix() {
String[] rules = {
"&z <<< z|a",
@ -404,6 +408,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestNewJapanese() {
String test1[] = {
@ -600,6 +605,7 @@ public class CollationMiscTest extends TestFmwk {
genericOrderingTestWithResult(coll, s, -1);
}
@Test
public void TestNonChars() {
String test[] = {
"\u0000", /* ignorable */
@ -635,6 +641,7 @@ public class CollationMiscTest extends TestFmwk {
genericOrderingTestWithResult(coll, test, -1);
}
@Test
public void TestExtremeCompression() {
String[] test = new String[4];
@ -653,6 +660,7 @@ public class CollationMiscTest extends TestFmwk {
/**
* Tests surrogate support.
*/
@Test
public void TestSurrogates() {
String test[] = {"z","\ud900\udc25", "\ud805\udc50", "\ud800\udc00y",
"\ud800\udc00r", "\ud800\udc00f", "\ud800\udc00",
@ -666,6 +674,7 @@ public class CollationMiscTest extends TestFmwk {
genericRulesStarter(rule, test);
}
@Test
public void TestBocsuCoverage() {
String test = "\u0041\u0441\u4441\\U00044441\u4441\u0441\u0041";
Collator coll = Collator.getInstance();
@ -674,6 +683,7 @@ public class CollationMiscTest extends TestFmwk {
logln("source:" + key.getSourceString());
}
@Test
public void TestCyrillicTailoring() {
String test[] = {
"\u0410b",
@ -694,6 +704,7 @@ public class CollationMiscTest extends TestFmwk {
// genericRulesStarter("&Z < \u0410 < \u0410\u0301", test);
}
@Test
public void TestSuppressContractions() {
String testNoCont2[] = {
"\u0410\u0302a",
@ -710,6 +721,7 @@ public class CollationMiscTest extends TestFmwk {
genericRulesStarter("[suppressContractions [\u0400-\u047f]]", testNoCont2);
}
@Test
public void TestCase() {
String gRules = "\u0026\u0030\u003C\u0031\u002C\u2460\u003C\u0061\u002C\u0041";
String[] testCase = {
@ -834,6 +846,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestIncompleteCnt() {
String[] cnt1 = {
"AA",
@ -896,6 +909,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestBlackBird() {
String[] shifted = {
"black bird",
@ -964,6 +978,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestFunkyA() {
String[] testSourceCases = {
"\u0041\u0300\u0301",
@ -1009,6 +1024,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestChMove() {
String[] chTest = {
"c",
@ -1046,6 +1062,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestImplicitTailoring() {
String rules[] = {
/* Tailor b and c before U+4E00. */
@ -1070,6 +1087,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestFCDProblem() {
String s1 = "\u0430\u0306\u0325";
String s2 = "\u04D1\u0325";
@ -1087,6 +1105,7 @@ public class CollationMiscTest extends TestFmwk {
CollationTest.doTest(this, (RuleBasedCollator)coll, s1, s2, 0);
}
@Test
public void TestEmptyRule() {
String rulez = "";
try {
@ -1099,6 +1118,7 @@ public class CollationMiscTest extends TestFmwk {
/* superseded by TestBeforePinyin, since Chinese collation rules have changed */
/*
@Test
public void TestJ784() {
String[] data = {
"A", "\u0101", "\u00e1", "\u01ce", "\u00e0",
@ -1112,6 +1132,7 @@ public class CollationMiscTest extends TestFmwk {
}
*/
@Test
public void TestJ815() {
String data[] = {
"aa",
@ -1133,6 +1154,7 @@ public class CollationMiscTest extends TestFmwk {
genericRulesStarter("[backwards 2]&A<<\u00e6/e<<<\u00c6/E", data);
}
@Test
public void TestJ3087()
{
String rule[] = {
@ -1174,6 +1196,9 @@ public class CollationMiscTest extends TestFmwk {
}
}
// TODO(junit): not running before
@Ignore
@Test
public void DontTestJ831() { // Latvian does not use upper first
String[] data = {
"I",
@ -1184,6 +1209,7 @@ public class CollationMiscTest extends TestFmwk {
genericLocaleStarter(new Locale("lv", ""), data);
}
@Test
public void TestBefore() {
String data[] = {
"\u0101", "\u00e1", "\u01ce", "\u00e0", "A",
@ -1202,6 +1228,7 @@ public class CollationMiscTest extends TestFmwk {
+ "&u<\u01d6<\u01d8<\u01da<\u01dc<\u00fc", data);
}
@Test
public void TestHangulTailoring() {
String[] koreanData = {
"\uac00", "\u4f3d", "\u4f73", "\u5047", "\u50f9", "\u52a0", "\u53ef", "\u5475",
@ -1237,6 +1264,7 @@ public class CollationMiscTest extends TestFmwk {
// genericLocaleStarter(new Locale("ko__LOTUS", ""), koreanData);
}
@Test
public void TestIncrementalNormalize() {
Collator coll = null;
// logln("Test 1 ....");
@ -1387,6 +1415,7 @@ public class CollationMiscTest extends TestFmwk {
*/
}
@Test
public void TestContraction() {
String[] testrules = {
"&A = AB / B",
@ -1518,6 +1547,7 @@ public class CollationMiscTest extends TestFmwk {
} */
}
@Test
public void TestExpansion() {
String[] testrules = {
/*
@ -1554,6 +1584,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestContractionEndCompare()
{
String rules = "&b=ch";
@ -1569,8 +1600,9 @@ public class CollationMiscTest extends TestFmwk {
CollationTest.doTest(this, (RuleBasedCollator)coll, src, tgt, 1);
}
@Test
public void TestLocaleRuleBasedCollators() {
if (getInclusion() < 5) {
if (TestFmwk.getExhaustiveness() < 5) {
// not serious enough to run this
return;
}
@ -1618,6 +1650,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestOptimize() {
/* this is not really a test - just trying out
* whether copying of UCA contents will fail
@ -1637,6 +1670,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestIdenticalCompare()
{
try {
@ -1651,6 +1685,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestMergeSortKeys()
{
String cases[] = {"abc", "abcd", "abcde"};
@ -1701,6 +1736,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestVariableTop()
{
// ICU 53+: The character must be in a supported reordering group,
@ -1771,6 +1807,7 @@ public class CollationMiscTest extends TestFmwk {
}
// ported from cmsccoll.c
@Test
public void TestVariableTopSetting() {
int varTopOriginal = 0, varTop1, varTop2;
Collator coll = Collator.getInstance(ULocale.ROOT);
@ -1853,6 +1890,7 @@ public class CollationMiscTest extends TestFmwk {
}
// ported from cmsccoll.c
@Test
public void TestMaxVariable() {
int oldMax, max;
@ -1928,6 +1966,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestUCARules()
{
try {
@ -1952,6 +1991,7 @@ public class CollationMiscTest extends TestFmwk {
/**
* Jitterbug 2726
*/
@Test
public void TestShifted()
{
RuleBasedCollator collator = (RuleBasedCollator) Collator.getInstance();
@ -1965,6 +2005,7 @@ public class CollationMiscTest extends TestFmwk {
* Test for CollationElementIterator previous and next for the whole set of
* unicode characters with normalization on.
*/
@Test
public void TestNumericCollation()
{
String basicTestStrings[] = {"hello1", "hello2", "hello123456"};
@ -2049,6 +2090,7 @@ public class CollationMiscTest extends TestFmwk {
logln("After set Numeric to default, the setting is: " + coll.getNumericCollation());
}
@Test
public void Test3249()
{
String rule = "&x < a &z < a";
@ -2062,6 +2104,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestTibetanConformance()
{
String test[] = {"\u0FB2\u0591\u0F71\u0061", "\u0FB2\u0F71\u0061"};
@ -2078,6 +2121,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestJ3347()
{
try {
@ -2091,6 +2135,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestPinyinProblem()
{
String test[] = { "\u4E56\u4E56\u7761", "\u4E56\u5B69\u5B50" };
@ -2098,6 +2143,7 @@ public class CollationMiscTest extends TestFmwk {
}
/* supercedes TestJ784 */
@Test
public void TestBeforePinyin() {
String rules =
"&[before 2]A << \u0101 <<< \u0100 << \u00E1 <<< \u00C1 << \u01CE <<< \u01CD << \u00E0 <<< \u00C0" +
@ -2157,6 +2203,7 @@ public class CollationMiscTest extends TestFmwk {
genericLocaleStarter(new Locale("zh","",""), test2);
}
@Test
public void TestUpperFirstQuaternary()
{
String tests[] = { "B", "b", "Bb", "bB" };
@ -2165,6 +2212,7 @@ public class CollationMiscTest extends TestFmwk {
genericLocaleStarterWithOptions(new Locale("root","",""), tests, att, attVals);
}
@Test
public void TestJ4960()
{
String tests[] = { "\\u00e2T", "aT" };
@ -2184,6 +2232,7 @@ public class CollationMiscTest extends TestFmwk {
genericRulesStarterWithOptionsAndResult(rule, tests2, att2, attVals2, 0);
}
@Test
public void TestJB5298(){
ULocale[] locales = Collator.getAvailableULocales();
logln("Number of collator locales returned : " + locales.length);
@ -2316,6 +2365,7 @@ public class CollationMiscTest extends TestFmwk {
}
@Test
public void Test6179()
{
String rules[] = {
@ -2414,6 +2464,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestUCAPrecontext()
{
String rules[] = {
@ -2638,6 +2689,7 @@ public class CollationMiscTest extends TestFmwk {
};
// Tests the compact list with ASCII codepoints.
@Test
public void TestSameStrengthList() {
String[] rules = new String[] {
// Normal
@ -2652,6 +2704,7 @@ public class CollationMiscTest extends TestFmwk {
doTestCollation(m_rangeTestCases_, rules);
}
@Test
public void TestSameStrengthListQuoted() {
String[] rules = new String[] {
"&'\u0061'<*bcd &b<<*klm &k<<<*xyz &y<*f'\u0067\u0068'e &a=1=2=3",
@ -2665,6 +2718,7 @@ public class CollationMiscTest extends TestFmwk {
}
// Tests the compact list with ASCII codepoints in non-codepoint order.
@Test
public void TestSameStrengthListQwerty() {
String[] rules = new String[] {
"&q<w<e<r &w<<t<<y<<u &t<<<i<<<o<<<p &o=a=s=d", // Normal
@ -2675,6 +2729,7 @@ public class CollationMiscTest extends TestFmwk {
}
// Tests the compact list with supplemental codepoints.
@Test
public void TestSameStrengthListWithSupplementalCharacters() {
String[] rules = new String[] {
// ** Rule without compact list syntax **
@ -2699,6 +2754,7 @@ public class CollationMiscTest extends TestFmwk {
// Tests the compact range syntax with ASCII codepoints.
@Test
public void TestSameStrengthListRanges() {
String[] rules = new String[] {
// Ranges
@ -2716,6 +2772,7 @@ public class CollationMiscTest extends TestFmwk {
}
// Tests the compact range syntax with supplemental codepoints.
@Test
public void TestSameStrengthListRangesWithSupplementalCharacters() {
String[] rules = new String[] {
// \u4e00 <* \ufffb\U00010000 \U00010001
@ -2729,6 +2786,7 @@ public class CollationMiscTest extends TestFmwk {
}
// Tests the compact range syntax with special characters used as syntax characters in rules.
@Test
public void TestSpecialCharacters() {
String rules[] = new String[] {
// Normal
@ -2756,6 +2814,7 @@ public class CollationMiscTest extends TestFmwk {
doTestCollation(testCases, rules);
}
@Test
public void TestInvalidListsAndRanges() {
String[] invalidRules = new String[] {
// Range not in starred expression
@ -2791,6 +2850,7 @@ public class CollationMiscTest extends TestFmwk {
// This is the same example above with ' and space added.
// They work a little different than expected. Desired rules are commented out.
@Test
public void TestQuoteAndSpace() {
String rules[] = new String[] {
// These are working as expected.
@ -2828,6 +2888,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Tests the method public boolean equals(Object target) in CollationKey
*/
@Test
public void TestCollationKeyEquals() {
CollationKey ck = new CollationKey("", (byte[]) null);
@ -2859,6 +2920,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Tests the method public int hashCode() in CollationKey
*/
@Test
public void TestCollationKeyHashCode() {
CollationKey ck = new CollationKey("", (byte[]) null);
@ -2872,6 +2934,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Tests the method public CollationKey getBound(int boundType, int noOfLevels)
*/
@Test
public void TestGetBound() {
CollationKey ck = new CollationKey("", (byte[]) null);
@ -2898,6 +2961,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Tests the method public CollationKey merge(CollationKey source)
*/
@Test
public void TestMerge() {
byte b[] = {};
CollationKey ck = new CollationKey("", b);
@ -2916,6 +2980,7 @@ public class CollationMiscTest extends TestFmwk {
}
/* Test the method public int compareTo(RawCollationKey rhs) */
@Test
public void TestRawCollationKeyCompareTo(){
RawCollationKey rck = new RawCollationKey();
byte[] b = {(byte) 10, (byte) 20};
@ -2933,6 +2998,7 @@ public class CollationMiscTest extends TestFmwk {
}
/* Track7223: CollationElementIterator does not return correct order for Hungarian */
@Test
public void TestHungarianTailoring(){
String rules = new String("&DZ<dzs<<<Dzs<<<DZS" +
"&G<gy<<<Gy<<<GY" +
@ -2988,6 +3054,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestImport(){
try{
RuleBasedCollator vicoll = (RuleBasedCollator)Collator.getInstance(new ULocale("vi"));
@ -3016,6 +3083,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestImportWithType(){
try{
RuleBasedCollator vicoll = (RuleBasedCollator)Collator.getInstance(new ULocale("vi"));
@ -3048,6 +3116,7 @@ public class CollationMiscTest extends TestFmwk {
* This test ensures that characters placed before a character in a different script have the same lead byte
* in their collation key before and after script reordering.
*/
@Test
public void TestBeforeRuleWithScriptReordering() throws Exception
{
/* build collator */
@ -3101,6 +3170,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Test that in a primary-compressed sort key all bytes except the first one are unchanged under script reordering.
*/
@Test
public void TestNonLeadBytesDuringCollationReordering() throws Exception
{
Collator myCollation;
@ -3149,6 +3219,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Test reordering API.
*/
@Test
public void TestReorderingAPI() throws Exception
{
Collator myCollation;
@ -3243,6 +3314,7 @@ public class CollationMiscTest extends TestFmwk {
/*
* Test reordering API.
*/
@Test
public void TestReorderingAPIWithRuleCreatedCollator() throws Exception
{
Collator myCollation;
@ -3291,6 +3363,7 @@ public class CollationMiscTest extends TestFmwk {
return false;
}
@Test
public void TestEquivalentReorderingScripts() {
// Beginning with ICU 55, collation reordering moves single scripts
// rather than groups of scripts,
@ -3375,6 +3448,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestGreekFirstReorderCloning() {
String[] testSourceCases = {
"\u0041",
@ -3445,6 +3519,7 @@ public class CollationMiscTest extends TestFmwk {
}
}
@Test
public void TestGreekFirstReorder()
{
String[] strRules = {
@ -3471,6 +3546,7 @@ public class CollationMiscTest extends TestFmwk {
doTestOneReorderingAPITestCase(privateUseCharacterStrings, apiRules);
}
@Test
public void TestGreekLastReorder()
{
String[] strRules = {
@ -3496,6 +3572,7 @@ public class CollationMiscTest extends TestFmwk {
doTestOneReorderingAPITestCase(privateUseCharacterStrings, apiRules);
}
@Test
public void TestNonScriptReorder()
{
String[] strRules = {
@ -3523,6 +3600,7 @@ public class CollationMiscTest extends TestFmwk {
doTestOneReorderingAPITestCase(privateUseCharacterStrings, apiRules);
}
@Test
public void TestHaniReorder()
{
String[] strRules = {
@ -3549,6 +3627,7 @@ public class CollationMiscTest extends TestFmwk {
doTestOneReorderingAPITestCase(privateUseCharacterStrings, apiRules);
}
@Test
public void TestHaniReorderWithOtherRules()
{
String[] strRules = {
@ -3570,6 +3649,7 @@ public class CollationMiscTest extends TestFmwk {
doTestCollation(privateUseCharacterStrings, strRules);
}
@Test
public void TestMultipleReorder()
{
String[] strRules = {
@ -3593,6 +3673,7 @@ public class CollationMiscTest extends TestFmwk {
doTestOneReorderingAPITestCase(collationTestCases, apiRules);
}
@Test
public void TestFrozeness()
{
Collator myCollation = Collator.getInstance(ULocale.CANADA);
@ -3643,6 +3724,7 @@ public class CollationMiscTest extends TestFmwk {
// Test case for Ticket#9409
// Unknown collation type should be ignored, without printing stack trace
@Test
public void TestUnknownCollationKeyword() {
Collator coll1 = Collator.getInstance(new ULocale("en_US@collation=bogus"));
Collator coll2 = Collator.getInstance(new ULocale("en_US"));

View file

@ -15,6 +15,8 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import java.util.Random;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
@ -31,10 +33,7 @@ public class CollationMonkeyTest extends TestFmwk {
private String source = "-abcdefghijklmnopqrstuvwxyz#&^$@";
public static void main(String[] args) throws Exception {
new CollationMonkeyTest().run(args);
}
@Test
public void TestCollationKey() {
if(source.length() == 0) {
errln("CollationMonkeyTest.TestCollationKey(): source is empty - ICU_DATA not set or data missing?");
@ -107,6 +106,7 @@ public class CollationMonkeyTest extends TestFmwk {
}
// perform monkey tests using Collator.compare
@Test
public void TestCompare() {
if(source.length() == 0) {
errln("CollationMonkeyTest.TestCompare(): source is empty - ICU_DATA not set or data missing?");
@ -185,6 +185,7 @@ public class CollationMonkeyTest extends TestFmwk {
}
}
@Test
public void TestRules() {
String testSourceCases[] = {
"\u0061\u0062\u007a",

View file

@ -17,6 +17,8 @@ import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationElementIterator;
import com.ibm.icu.text.CollationKey;
@ -24,14 +26,11 @@ import com.ibm.icu.text.Collator;
import com.ibm.icu.text.RuleBasedCollator;
public class CollationRegressionTest extends TestFmwk {
public static void main(String[] args) throws Exception{
new CollationRegressionTest().run(args);
}
// @bug 4048446
//
// CollationElementIterator.reset() doesn't work
//
@Test
public void Test4048446() {
final String test1 = "XFILE What subset of all possible test cases has the highest probability of detecting the most errors?";
//final String test2 = "Xf_ile What subset of all possible test cases has the lowest probability of detecting the least errors?";
@ -78,6 +77,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator -> rules -> Collator round-trip broken for expanding characters
//
@Test
public void Test4051866() {
String rules = "&n < o & oe ,o\u3080& oe ,\u1530 ,O& OE ,O\u3080& OE ,\u1520< p ,P";
@ -111,6 +111,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator thinks "black-bird" == "black"
//
@Test
public void Test4053636() {
RuleBasedCollator en_us = (RuleBasedCollator) Collator.getInstance(Locale.US);
if (en_us.equals("black_bird", "black")) {
@ -123,6 +124,7 @@ public class CollationRegressionTest extends TestFmwk {
// CollationElementIterator will not work correctly if the associated
// Collator object's mode is changed
//
@Test
public void Test4054238(/* char* par */) {
final char[] chars3 = {0x61, 0x00FC, 0x62, 0x65, 0x63, 0x6b, 0x20, 0x47, 0x72, 0x00F6, 0x00DF, 0x65, 0x20, 0x4c, 0x00FC, 0x62, 0x63, 0x6b, 0};
final String test3 = new String(chars3);
@ -139,6 +141,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator::IDENTICAL documented but not implemented
//
@Test
public void Test4054734(/* char* par */) {
//Here's the original Java:
@ -267,6 +270,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Full Decomposition mode not implemented
//
@Test
public void Test4054736(/* char* par */) {
RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.US);
@ -281,6 +285,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator::createInstance() causes an ArrayIndexOutofBoundsException for Korean
//
@Test
public void Test4058613(/* char* par */) {
// Creating a default collator doesn't work when Korean is the default
// locale
@ -312,6 +317,7 @@ public class CollationRegressionTest extends TestFmwk {
// RuleBasedCollator.getRules does not return the exact pattern as input
// for expanding character sequences
//
@Test
public void Test4059820(/* char* par */) {
RuleBasedCollator c = null;
String rules = "&9 < a < b , c/a < d < z";
@ -332,6 +338,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// MergeCollation::fixEntry broken for "& H < \u0131, \u0130, i, I"
//
@Test
public void Test4060154(/* char* par */) {
String rules ="&f < g, G < h, H < i, I < j, J & H < \u0131, \u0130, i, I";
@ -371,6 +378,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Secondary/Tertiary comparison incorrect in French Secondary
//
@Test
public void Test4062418(/* char* par */) {
RuleBasedCollator c = null;
try {
@ -392,6 +400,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator::compare() method broken if either string contains spaces
//
@Test
public void Test4065540(/* char* par */) {
RuleBasedCollator en_us = (RuleBasedCollator) Collator.getInstance(Locale.US);
if (en_us.compare("abcd e", "abcd f") == 0) {
@ -405,6 +414,7 @@ public class CollationRegressionTest extends TestFmwk {
// correct result. For example,
// u1EB1 -> \u0103 + \u0300 -> a + \u0306 + \u0300.
//
@Test
public void Test4066189(/* char* par */) {
final String test1 = "\u1EB1";
final String test2 = "\u0061\u0306\u0300";
@ -427,6 +437,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// French secondary collation checking at the end of compare iteration fails
//
@Test
public void Test4066696(/* char* par */) {
RuleBasedCollator c = null;
try {
@ -447,6 +458,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Bad canonicalization of same-class combining characters
//
@Test
public void Test4076676(/* char* par */) {
// These combining characters are all in the same class, so they should not
// be reordered, and they should compare as unequal.
@ -465,6 +477,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// RuleBasedCollator breaks on "< a < bb" rule
//
@Test
public void Test4078588(/* char *par */) {
RuleBasedCollator rbc = null;
try {
@ -485,6 +498,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// RuleBasedCollator::operator==(NULL) throws NullPointerException
//
@Test
public void Test4079231(/* char* par */) {
RuleBasedCollator en_us = (RuleBasedCollator) Collator.getInstance(Locale.US);
try {
@ -500,6 +514,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Combining characters in different classes not reordered properly.
//
@Test
public void Test4081866(/* char* par */) {
// These combining characters are all in different classes,
// so they should be reordered and the strings should compare as equal.
@ -522,6 +537,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// string comparison errors in Scandinavian collators
//
@Test
public void Test4087241(/* char* par */) {
Locale da_DK = new Locale("da", "DK");
RuleBasedCollator c = null;
@ -544,6 +560,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// CollationKey takes ignorable strings into account when it shouldn't
//
@Test
public void Test4087243(/* char* par */) {
RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.US);
c.setStrength(Collator.TERTIARY);
@ -558,6 +575,7 @@ public class CollationRegressionTest extends TestFmwk {
// Mu/micro conflict
// Micro symbol and greek lowercase letter Mu should sort identically
//
@Test
public void Test4092260(/* char* par */) {
Locale el = new Locale("el", "");
Collator c = null;
@ -577,6 +595,7 @@ public class CollationRegressionTest extends TestFmwk {
// @bug 4095316
//
@Test
public void Test4095316(/* char* par */) {
Locale el_GR = new Locale("el", "GR");
Collator c = null;
@ -598,6 +617,7 @@ public class CollationRegressionTest extends TestFmwk {
// @bug 4101940
//
@Test
public void Test4101940(/* char* par */) {
RuleBasedCollator c = null;
String rules = "&9 < a < b";
@ -619,6 +639,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator::compare not handling spaces properly
//
@Test
public void Test4103436(/* char* par */) {
RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.US);
c.setStrength(Collator.TERTIARY);
@ -633,6 +654,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collation not Unicode conformant with Hangul syllables
//
@Test
public void Test4114076(/* char* par */) {
RuleBasedCollator c = (RuleBasedCollator) Collator.getInstance(Locale.US);
c.setStrength(Collator.TERTIARY);
@ -671,6 +693,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collation with decomposition off doesn't work for Europe
//
@Test
public void Test4114077(/* char* par */) {
// Ensure that we get the same results with decomposition off
// as we do with it on....
@ -700,6 +723,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Collator::getCollationKey was hanging on certain character sequences
//
@Test
public void Test4124632(/* char* par */) {
Collator coll = null;
try {
@ -722,6 +746,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// sort order of french words with multiple accents has errors
//
@Test
public void Test4132736(/* char* par */) {
Collator c = null;
try {
@ -742,6 +767,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// The sorting using java.text.CollationKey is not in the exact order
//
@Test
public void Test4133509(/* char* par */) {
RuleBasedCollator en_us = (RuleBasedCollator) Collator.getInstance(Locale.US);
String test1[] = {
@ -758,6 +784,7 @@ public class CollationRegressionTest extends TestFmwk {
// getCollationKey throws exception for spanish text
// Cannot reproduce this bug on 1.2, however it DOES fail on 1.1.6
//
@Test
public void Test4139572(/* char* par */) {
//
// Code pasted straight from the bug report
@ -786,6 +813,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// Support for Swedish gone in 1.1.6 (Can't create Swedish collator)
//
@Test
public void Test4141640(/* char* par */) {
//
// Rather than just creating a Swedish collator, we might as well
@ -821,6 +849,7 @@ public class CollationRegressionTest extends TestFmwk {
}
}
@Test
public void Test4171974() {
// test French accent ordering more thoroughly
/*String[] frenchList = {
@ -896,6 +925,7 @@ public class CollationRegressionTest extends TestFmwk {
checkListOrder(englishList, english);
}
@Test
public void Test4179216() throws Exception {
// you can position a CollationElementIterator in the middle of
// a contracting character sequence, yielding a bogus collation
@ -994,6 +1024,7 @@ public class CollationRegressionTest extends TestFmwk {
}
}
@Test
public void Test4216006() throws Exception {
// rule parser barfs on "<\u00e0=a\u0300", and on other cases
// where the same token (after normalization) appears twice in a row
@ -1024,6 +1055,7 @@ public class CollationRegressionTest extends TestFmwk {
// CollationElementIterator.previous broken for expanding char sequences
//
@Test
public void Test4179686() throws Exception {
RuleBasedCollator en_us = (RuleBasedCollator) Collator.getInstance(Locale.US);
// Create a collator with a few expanding character sequences in it....
@ -1058,9 +1090,7 @@ public class CollationRegressionTest extends TestFmwk {
}
}
protected void init()throws Exception{
}
@Test
public void Test4244884() throws Exception {
RuleBasedCollator coll = (RuleBasedCollator)Collator.getInstance(Locale.US);
coll = new RuleBasedCollator(coll.getRules()
@ -1088,6 +1118,7 @@ public class CollationRegressionTest extends TestFmwk {
}
// CollationElementIterator set doesn't work propertly with next/prev
@Test
public void Test4663220() {
RuleBasedCollator collator = (RuleBasedCollator)Collator.getInstance(Locale.US);
java.text.StringCharacterIterator stringIter = new java.text.StringCharacterIterator("fox");
@ -1116,6 +1147,7 @@ public class CollationRegressionTest extends TestFmwk {
}
// Fixing the infinite loop for surrogates
@Test
public void Test8484()
{
String s = "\u9FE1\uCEF3\u2798\uAAB6\uDA7C";
@ -1124,6 +1156,7 @@ public class CollationRegressionTest extends TestFmwk {
logln("Pass: " + collKey.toString() + " generated OK.");
}
@Test
public void TestBengaliSortKey() throws Exception {
char rules[] = { 0x26, 0x9fa, 0x3c, 0x98c, 0x3c, 0x9e1, 0x3c, 0x98f, 0x3c, 0x990, 0x3c, 0x993,
0x3c, 0x994, 0x3c, 0x9bc, 0x3c, 0x982, 0x3c, 0x983, 0x3c, 0x981, 0x3c, 0x9b0, 0x3c,
@ -1166,6 +1199,7 @@ public class CollationRegressionTest extends TestFmwk {
* Test case for ticket#8624
* Bad collation key with upper first option.
*/
@Test
public void TestCaseFirstCompression() {
RuleBasedCollator col = (RuleBasedCollator)Collator.getInstance(Locale.US);
@ -1181,6 +1215,7 @@ public class CollationRegressionTest extends TestFmwk {
caseFirstCompressionSub(col, "lower first");
}
@Test
public void TestTrailingComment() throws Exception {
// ICU ticket #8070:
// Check that the rule parser handles a comment without terminating end-of-line.
@ -1189,6 +1224,7 @@ public class CollationRegressionTest extends TestFmwk {
assertTrue("b<a", coll.compare("b", "a") < 0);
}
@Test
public void TestBeforeWithTooStrongAfter() {
// ICU ticket #9959:
// Forbid rules with a before-reset followed by a stronger relation.
@ -1247,6 +1283,7 @@ public class CollationRegressionTest extends TestFmwk {
//
// RuleBasedCollator doesn't use createCollationElementIterator internally
//
@Test
public void Test4146160() {
//
// Use a custom collator class whose createCollationElementIterator

View file

@ -17,16 +17,15 @@ import java.util.Map;
import java.util.MissingResourceException;
import java.util.Set;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.Collator.CollatorFactory;
import com.ibm.icu.util.ULocale;
public class CollationServiceTest extends TestFmwk {
public static void main(String[] args) {
new CollationServiceTest().run(args);
}
@Test
public void TestRegister() {
// register a singleton
Collator frcol = Collator.getInstance(ULocale.FRANCE);
@ -121,6 +120,7 @@ public class CollationServiceTest extends TestFmwk {
}
}
@Test
public void TestRegisterFactory() {
class CollatorInfo {
@ -334,6 +334,7 @@ public class CollationServiceTest extends TestFmwk {
"stroke"
};
@Test
public void TestSeparateTrees() {
String kw[] = Collator.getKeywords();
if (!assertTrue("getKeywords != null", kw!=null)) return;
@ -368,6 +369,7 @@ public class CollationServiceTest extends TestFmwk {
}
}
@Test
public void TestGetFunctionalEquivalent() {
String kw[] = Collator.getKeywords();
final String DATA[] = {
@ -457,6 +459,7 @@ public class CollationServiceTest extends TestFmwk {
return false;
}
@Test
public void TestGetKeywordValues(){
final String[][] PREFERRED = {
{"und", "standard", "eor", "search"},

View file

@ -14,15 +14,14 @@
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
public class CollationSpanishTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationSpanishTest().run(args);
}
private static char[][] testSourceCases = {
{0x61, 0x6c, 0x69, 0x61, 0x73},
{0x45, 0x6c, 0x6c, 0x69, 0x6f, 0x74},
@ -65,11 +64,14 @@ import com.ibm.icu.text.Collator;
private Collator myCollation = null;
public CollationSpanishTest() {
}
protected void init()throws Exception{
@Before
public void init() throws Exception {
myCollation = Collator.getInstance(new Locale("es", "ES"));
}
@Test
public void TestTertiary(){
int i = 0;
myCollation.setStrength(Collator.TERTIARY);
@ -78,6 +80,7 @@ import com.ibm.icu.text.Collator;
}
}
@Test
public void TestPrimary(){
int i;
myCollation.setStrength(Collator.PRIMARY);

View file

@ -15,6 +15,8 @@ import java.text.ParseException;
import java.util.HashSet;
import java.util.Set;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.TestUtil;
import com.ibm.icu.impl.Norm2AllModes;
@ -47,10 +49,6 @@ import com.ibm.icu.util.Output;
import com.ibm.icu.util.ULocale;
public class CollationTest extends TestFmwk {
public static void main(String[] args) throws Exception{
new CollationTest().run(args);
}
public CollationTest() {
}
@ -207,7 +205,6 @@ public class CollationTest extends TestFmwk {
RuleBasedCollator myCollation,
String source, String target, int result)
{
boolean printInfo = false;
int compareResult = myCollation.compare(source, target);
if (compareResult != result) {
@ -217,27 +214,18 @@ public class CollationTest extends TestFmwk {
// would it work to have the 'verbose' flag let you
// suppress warnings? Are there ever some warnings you
// want to suppress, and others you don't?
if(!test.isModularBuild()){
test.errln("Comparing \"" + Utility.hex(source) + "\" with \""
+ Utility.hex(target) + "\" expected " + result
+ " but got " + compareResult);
}else{
printInfo = true;
}
test.errln("Comparing \"" + Utility.hex(source) + "\" with \""
+ Utility.hex(target) + "\" expected " + result
+ " but got " + compareResult);
}
CollationKey ssk = myCollation.getCollationKey(source);
CollationKey tsk = myCollation.getCollationKey(target);
compareResult = ssk.compareTo(tsk);
if (compareResult != result) {
if(!test.isModularBuild()){
test.errln("Comparing CollationKeys of \"" + Utility.hex(source)
+ "\" with \"" + Utility.hex(target)
+ "\" expected " + result + " but got "
+ compareResult);
}else{
printInfo = true;
}
test.errln("Comparing CollationKeys of \"" + Utility.hex(source)
+ "\" with \"" + Utility.hex(target)
+ "\" expected " + result + " but got "
+ compareResult);
}
RawCollationKey srsk = new RawCollationKey();
myCollation.getRawCollationKey(source, srsk);
@ -245,28 +233,15 @@ public class CollationTest extends TestFmwk {
myCollation.getRawCollationKey(target, trsk);
compareResult = ssk.compareTo(tsk);
if (compareResult != result) {
if(!test.isModularBuild()){
test.errln("Comparing RawCollationKeys of \""
+ Utility.hex(source)
+ "\" with \"" + Utility.hex(target)
+ "\" expected " + result + " but got "
+ compareResult);
}else{
printInfo = true;
}
}
// hmmm, but here we issue a warning
// only difference is, one warning or two, and detailed info or not?
// hmmm, does seem preferable to omit detail if we know it is due to missing resource data.
// well, if we label the errors as warnings, we can let people know the details, but
// also know they may be due to missing resource data. basically this code is asserting
// that the errors are due to missing resource data, which may or may not be true.
if (printInfo) {
test.warnln("Could not load locale data skipping.");
test.errln("Comparing RawCollationKeys of \""
+ Utility.hex(source)
+ "\" with \"" + Utility.hex(target)
+ "\" expected " + result + " but got "
+ compareResult);
}
}
@Test
public void TestMinMax() {
setRootCollator();
RuleBasedCollator rbc = (RuleBasedCollator)coll;
@ -293,6 +268,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestImplicits() {
CollationData cd = CollationRoot.getData();
@ -358,6 +334,7 @@ public class CollationTest extends TestFmwk {
}
// ICU4C: TestNulTerminated / renamed for ICU4J
@Test
public void TestSubSequence() {
CollationData data = CollationRoot.getData();
final String s = "abab"; // { 0x61, 0x62, 0x61, 0x62 }
@ -390,6 +367,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestShortFCDData() {
UnicodeSet expectedLccc = new UnicodeSet("[:^lccc=0:]");
expectedLccc.add(0xdc00, 0xdfff); // add all trail surrogates
@ -526,6 +504,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestFCD() {
CollationData data = CollationRoot.getData();
@ -615,6 +594,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestCollationWeights() {
CollationWeights cw = new CollationWeights();
@ -842,6 +822,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestRootElements() {
CollationData root = CollationRoot.getData();
@ -957,6 +938,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestTailoredElements() {
CollationData root = CollationRoot.getData();
CollationRootElements rootElements = new CollationRootElements(root.rootElements);
@ -1661,6 +1643,7 @@ public class CollationTest extends TestFmwk {
}
}
@Test
public void TestDataDriven() {
nfd = Normalizer2.getNFDInstance();
fcd = Norm2AllModes.getFCDNormalizer2();

View file

@ -18,6 +18,8 @@ import java.util.Arrays;
import java.util.Comparator;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.TestUtil;
import com.ibm.icu.text.CollationElementIterator;
@ -29,14 +31,11 @@ public class CollationThaiTest extends TestFmwk {
final int MAX_FAILURES_TO_SHOW = -1;
public static void main(String[] args) throws Exception {
new CollationThaiTest().run(args);
}
/**
* Odd corner conditions taken from "How to Sort Thai Without Rewriting Sort",
* by Doug Cooper, http://seasrc.th.net/paper/thaisort.zip
*/
@Test
public void TestCornerCases() {
String TESTS[] = {
// Shorter words precede longer
@ -117,6 +116,7 @@ public class CollationThaiTest extends TestFmwk {
* sorted order, and confirm that the collator compares each line as
* preceding the following line.
*/
@Test
public void TestDictionary() {
RuleBasedCollator coll = null;
try {
@ -206,6 +206,7 @@ public class CollationThaiTest extends TestFmwk {
logln("Words checked: " + wordCount);
}
@Test
public void TestInvalidThai()
{
String tests[] = { "\u0E44\u0E01\u0E44\u0E01",
@ -243,6 +244,7 @@ public class CollationThaiTest extends TestFmwk {
}
}
@Test
public void TestReordering()
{
String tests[] = {

View file

@ -15,10 +15,6 @@ import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.Collator;
public class CollationThreadTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new CollationThreadTest().run(args);
}
private static final String[] threadTestData;
static {
final Collator collator = Collator.getInstance(new Locale("pl", "", ""));
@ -247,6 +243,7 @@ public class CollationThreadTest extends TestFmwk {
}
}
@org.junit.Test
public void testThreads() {
final Collator theCollator = Collator.getInstance(new Locale("pl", "", ""));
final Random r = new Random();
@ -270,6 +267,7 @@ public class CollationThreadTest extends TestFmwk {
runThreads(threads, control);
}
@org.junit.Test
public void testFrozen() {
final Collator theCollator = Collator.getInstance(new Locale("pl", "", ""));
theCollator.freeze();

View file

@ -14,15 +14,14 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
public class CollationTurkishTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new CollationTurkishTest().run(args);
}
private static char[][] testSourceCases = {
{0x73, 0x0327},
{0x76, 0x00E4, 0x74},
@ -71,10 +70,13 @@ public class CollationTurkishTest extends TestFmwk{
public CollationTurkishTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception{
myCollation = Collator.getInstance(new Locale("tr", ""));
}
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);
@ -83,6 +85,7 @@ public class CollationTurkishTest extends TestFmwk{
}
}
@Test
public void TestPrimary() {
int i;
myCollation.setStrength(Collator.PRIMARY);

View file

@ -14,17 +14,14 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.RuleBasedCollator;
public class G7CollationTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new G7CollationTest().run(args);
// new G7CollationTest().TestDemo3();
}
private static String[] testCases = {
"blackbirds", "Pat", "p\u00E9ch\u00E9", "p\u00EAche", "p\u00E9cher",
"p\u00EAcher", "Tod", "T\u00F6ne", "Tofu", "blackbird", "Ton",
@ -60,6 +57,7 @@ public class G7CollationTest extends TestFmwk{
private static final int TOTALTESTSET = 30;
// perform test with added rules " & Z < p, P"
@Test
public void TestDemo1() {
logln("Demo Test 1 : Create a new table collation with rules \"& Z < p, P\"");
@ -87,6 +85,7 @@ public class G7CollationTest extends TestFmwk{
// perorm test with added rules "& C < ch , cH, Ch, CH"
@Test
public void TestDemo2() {
logln("Demo Test 2 : Create a new table collation with rules \"& C < ch , cH, Ch, CH\"");
Collator col = Collator.getInstance(Locale.ENGLISH);
@ -114,6 +113,7 @@ public class G7CollationTest extends TestFmwk{
// perform test with added rules
// "& Question'-'mark ; '?' & Hash'-'mark ; '#' & Ampersand ; '&'"
@Test
public void TestDemo3() {
// logln("Demo Test 3 : Create a new table collation with rules \"& Question'-'mark ; '?' & Hash'-'mark ; '#' & Ampersand ; '&'\"");
Collator col = Collator.getInstance(Locale.ENGLISH);
@ -141,6 +141,7 @@ public class G7CollationTest extends TestFmwk{
// perform test with added rules
// " & aa ; a'-' & ee ; e'-' & ii ; i'-' & oo ; o'-' & uu ; u'-' "
@Test
public void TestDemo4() {
logln("Demo Test 4 : Create a new table collation with rules \" & aa ; a'-' & ee ; e'-' & ii ; i'-' & oo ; o'-' & uu ; u'-' \"");
Collator col = Collator.getInstance(Locale.ENGLISH);
@ -164,6 +165,7 @@ public class G7CollationTest extends TestFmwk{
}
}
@Test
public void TestG7Data() {
Locale locales[] = {
Locale.US,

View file

@ -14,15 +14,14 @@ package com.ibm.icu.dev.test.collator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.CollationKey;
import com.ibm.icu.text.Collator;
public class LotusCollationKoreanTest extends TestFmwk{
public static void main(String[] args) throws Exception{
new LotusCollationKoreanTest().run(args);
}
private static char[][] testSourceCases = {
{0xac00}
};
@ -39,11 +38,15 @@ public class LotusCollationKoreanTest extends TestFmwk{
public LotusCollationKoreanTest() {
}
protected void init()throws Exception{
@Before
public void init()throws Exception {
myCollation = Collator.getInstance(Locale.KOREAN);
myCollation.setDecomposition(Collator.CANONICAL_DECOMPOSITION);
}
// performs test with strength TERIARY
@Test
public void TestTertiary() {
int i = 0;
myCollation.setStrength(Collator.TERTIARY);

View file

@ -1,56 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 1996-2010, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.collator;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all collation and search tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"CollationTest",
"CollationAPITest",
"CollationCurrencyTest",
"CollationCreationMethodTest",
//"CollationDanishTest", //Danish is already tested through data driven tests
"CollationDummyTest",
"CollationEnglishTest",
"CollationFinnishTest",
"CollationFrenchTest",
"CollationGermanTest",
"CollationIteratorTest",
"CollationKanaTest",
"CollationMonkeyTest",
"CollationRegressionTest",
"CollationSpanishTest",
"CollationThaiTest",
"CollationTurkishTest",
"G7CollationTest",
"LotusCollationKoreanTest",
"CollationMiscTest",
"CollationChineseTest",
"CollationServiceTest",
"CollationThreadTest",
//"RandomCollator", //Disabled until the problem in the test case is resolved #5747
"UCAConformanceTest",
// don't test Search API twice!
//"com.ibm.icu.dev.test.search.SearchTest"
"AlphabeticIndexTest"
},
"All Collation Tests"
);
}
public static final String CLASS_TARGET_NAME = "Collator";
}

View file

@ -10,8 +10,16 @@ package com.ibm.icu.dev.test.collator;
import java.util.Comparator;
import org.junit.Ignore;
import org.junit.Test;
public class TestComparator {
// TODO(junit): apparently orphaned - added dummy test to pass ant junit
@Ignore
@Test
public void dummyTest() {}
// test the symmetry and transitivity
public void test(Comparator comp, int count) {
Object c = null;

View file

@ -14,6 +14,9 @@ package com.ibm.icu.dev.test.collator;
import java.io.BufferedReader;
import java.io.IOException;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.TestUtil;
import com.ibm.icu.lang.UCharacter;
@ -26,39 +29,36 @@ import com.ibm.icu.util.VersionInfo;
public class UCAConformanceTest extends TestFmwk {
/**
* @param args
*/
public static void main(String[] args) {
new UCAConformanceTest().run(args);
}
public UCAConformanceTest() {
}
@Override
protected void init() throws Exception{
@Before
public void init() throws Exception {
UCA = (RuleBasedCollator)Collator.getInstance(ULocale.ROOT);
comparer = new UTF16.StringComparator(true, false, UTF16.StringComparator.FOLD_CASE_DEFAULT);
}
private RuleBasedCollator UCA;
private RuleBasedCollator rbUCA;
private UTF16.StringComparator comparer;
private boolean isAtLeastUCA62 =
UCharacter.getUnicodeVersion().compareTo(VersionInfo.UNICODE_6_2) >= 0;
@Test
public void TestTableNonIgnorable() {
setCollNonIgnorable(UCA);
openTestFile("NON_IGNORABLE");
conformanceTest(UCA);
}
@Test
public void TestTableShifted() {
setCollShifted(UCA);
openTestFile("SHIFTED");
conformanceTest(UCA);
}
@Test
public void TestRulesNonIgnorable() {
if(logKnownIssue("cldrbug:6745", "UCARules.txt has problems")) { return; }
initRbUCA();
@ -69,6 +69,7 @@ public class UCAConformanceTest extends TestFmwk {
conformanceTest(rbUCA);
}
@Test
public void TestRulesShifted() {
logln("This test is currently disabled, as it is impossible to "+
"wholly represent fractional UCA using tailoring rules.");

View file

@ -12,6 +12,8 @@ import java.util.List;
import java.util.MissingResourceException;
import java.util.ResourceBundle;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.BreakIterator;
import com.ibm.icu.text.Collator;
@ -31,11 +33,7 @@ import com.ibm.icu.util.ULocale;
public class GlobalizationPreferencesTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new GlobalizationPreferencesTest().run(args);
}
@Test
public void TestDefault() {
GlobalizationPreferences gp = new GlobalizationPreferences();
ULocale defLocale = new ULocale("en_US");
@ -112,6 +110,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestFreezable() {
logln("Create a new GlobalizationPreference object");
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -265,6 +264,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
{"de_DE", "de", "es", "fr_FR", "fr"},
};
@Test
public void TestSetLocales() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -388,6 +388,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestResourceBundle() {
String baseName = "com.ibm.icu.dev.data.resources.TestDataElements";
ResourceBundle rb;
@ -443,6 +444,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestTerritory() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -511,6 +513,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestCurrency() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -605,6 +608,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestCalendar() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -684,6 +688,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestTimeZone() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -766,6 +771,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestCollator() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -850,6 +856,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestBreakIterator() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -976,6 +983,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
*/
}
@Test
public void TestDisplayName() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -1159,6 +1167,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
}
@Test
public void TestDateFormat() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -1370,6 +1379,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
}
@Test
public void TestNumberFormat() {
GlobalizationPreferences gp = new GlobalizationPreferences();
@ -1543,6 +1553,7 @@ public class GlobalizationPreferencesTest extends TestFmwk {
* JB#5380 GlobalizationPreferences#getCalendar() should return a Calendar object
* initialized with the current time
*/
@Test
public void TestJB5380() {
GlobalizationPreferences gp = new GlobalizationPreferences();
GregorianCalendar gcal = new GregorianCalendar();

View file

@ -11,6 +11,8 @@ import java.text.ParseException;
import java.util.Locale;
import java.util.Random;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.text.RbnfScannerProviderImpl;
import com.ibm.icu.text.RbnfLenientScannerProvider;
@ -20,21 +22,11 @@ import com.ibm.icu.util.ULocale;
public class RbnfLenientScannerTest extends TestFmwk {
private static final RbnfLenientScannerProvider provider = new RbnfScannerProviderImpl();
public static void main(String[] args) {
try {
new RbnfLenientScannerTest().run(args);
}
catch (Throwable e) {
System.out.println("Entire test failed because of exception: "
+ e.toString());
e.printStackTrace();
}
}
/**
* Ensure that the default provider is instantiated and used if none is set
* and lenient parse is on.
*/
@Test
public void TestDefaultProvider() {
RuleBasedNumberFormat formatter
= new RuleBasedNumberFormat(Locale.US,
@ -51,6 +43,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
/**
* Perform a simple spot check on the English spellout rules
*/
@Test
public void TestEnglishSpellout() {
RuleBasedNumberFormat formatter
= new RuleBasedNumberFormat(Locale.US,
@ -74,6 +67,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
/**
* Perform a simple spot check on the duration-formatting rules
*/
@Test
public void TestDurations() {
RuleBasedNumberFormat formatter
= new RuleBasedNumberFormat(Locale.US,
@ -89,6 +83,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
/**
* Perform a simple spot check on the French spellout rules
*/
@Test
public void TestFrenchSpellout() {
RuleBasedNumberFormat formatter
= new RuleBasedNumberFormat(Locale.FRANCE,
@ -105,6 +100,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
/**
* Perform a simple spot check on the German spellout rules
*/
@Test
public void TestGermanSpellout() {
RuleBasedNumberFormat formatter
= new RuleBasedNumberFormat(Locale.GERMANY,
@ -117,6 +113,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
doLenientParseTest(formatter, lpTestData);
}
@Test
public void TestAllLocales() {
StringBuffer errors = null;
ULocale[] locales = ULocale.getAvailableLocales();
@ -137,7 +134,7 @@ public class RbnfLenientScannerTest extends TestFmwk {
ULocale loc = locales[i];
int count = numbers.length;
boolean testParse = true;
if (getInclusion() <= 5) {
if (TestFmwk.getExhaustiveness() <= 5) {
testParse = false;
for (int k = 0; k < parseLocales.length; k++) {
if (loc.toString().equals(parseLocales[k])) {

View file

@ -24,6 +24,9 @@ import static com.ibm.icu.text.SearchIterator.ElementComparisonType.STANDARD_ELE
import java.text.StringCharacterIterator;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.BreakIterator;
import com.ibm.icu.text.Collator;
@ -531,7 +534,8 @@ public class SearchTest extends TestFmwk {
}
protected void init()throws Exception{
@Before
public void init() throws Exception {
m_en_us_ = (RuleBasedCollator)Collator.getInstance(Locale.US);
m_fr_fr_ = (RuleBasedCollator)Collator.getInstance(Locale.FRANCE);
m_de_ = (RuleBasedCollator)Collator.getInstance(new Locale("de", "DE"));
@ -544,10 +548,6 @@ public class SearchTest extends TestFmwk {
m_es_ = new RuleBasedCollator(rules);
}
public static void main(String[] args) throws Exception {
new SearchTest().run(args);
// new SearchTest().TestContraction();
}
RuleBasedCollator getCollator(String collator) {
if (collator == null) {
@ -738,6 +738,7 @@ public class SearchTest extends TestFmwk {
return true;
}
@Test
public void TestConstructor()
{
String pattern = "pattern";
@ -784,6 +785,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestBasic() {
for (int count = 0; count < BASIC.length; count++) {
if (!assertEqual(BASIC[count])) {
@ -792,6 +794,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestBreakIterator() {
String text = BREAKITERATOREXACT[0].text;
@ -862,6 +865,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestBreakIteratorCanonical() {
int count = 0;
while (count < 4) {
@ -915,6 +919,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestCanonical() {
for (int count = 0; count < BASICCANONICAL.length; count++) {
if (!assertCanonicalEqual(BASICCANONICAL[count])) {
@ -923,6 +928,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestCollator() {
// test collator that thinks "o" and "p" are the same thing
String text = COLLATOR[0].text;
@ -965,6 +971,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestCollatorCanonical() {
/* test collator that thinks "o" and "p" are the same thing */
String text = COLLATORCANONICAL[0].text;
@ -1011,6 +1018,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestCompositeBoundaries() {
for (int count = 0; count < COMPOSITEBOUNDARIES.length; count++) {
// logln("composite " + count);
@ -1020,6 +1028,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestCompositeBoundariesCanonical() {
for (int count = 0; count < COMPOSITEBOUNDARIESCANONICAL.length; count++) {
// logln("composite " + count);
@ -1029,6 +1038,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestContraction() {
String rules = CONTRACTIONRULE;
RuleBasedCollator collator = null;
@ -1059,6 +1069,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestContractionCanonical() {
String rules = CONTRACTIONRULE;
RuleBasedCollator collator = null;
@ -1090,6 +1101,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestGetMatch() {
SearchData search = MATCH[0];
String text = search.text;
@ -1135,6 +1147,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestGetSetAttribute() {
String pattern = "pattern";
String text = "text";
@ -1176,6 +1189,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestGetSetOffset() {
String pattern = "1234567890123456";
String text = "12345678901234567890123456789012";
@ -1249,6 +1263,7 @@ public class SearchTest extends TestFmwk {
strsrch.getCollator().setStrength(TERTIARY);
}
@Test
public void TestGetSetOffsetCanonical() {
String text = "text";
@ -1319,6 +1334,7 @@ public class SearchTest extends TestFmwk {
strsrch.getCollator().setDecomposition(Collator.NO_DECOMPOSITION);
}
@Test
public void TestIgnorable() {
String rules = IGNORABLERULE;
int count = 0;
@ -1352,6 +1368,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestInitialization() {
String pattern;
String text;
@ -1382,6 +1399,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestNormCanonical() {
m_en_us_.setDecomposition(Collator.CANONICAL_DECOMPOSITION);
for (int count = 0; count < NORMCANONICAL.length; count++) {
@ -1392,6 +1410,7 @@ public class SearchTest extends TestFmwk {
m_en_us_.setDecomposition(Collator.NO_DECOMPOSITION);
}
@Test
public void TestNormExact() {
int count;
@ -1414,6 +1433,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestOpenClose() {
StringSearch result;
BreakIterator breakiter = m_en_wordbreaker_;
@ -1525,6 +1545,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestOverlap() {
int count;
@ -1574,6 +1595,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestOverlapCanonical() {
int count;
@ -1615,6 +1637,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestPattern() {
m_en_us_.setStrength(PATTERN[0].strength);
StringSearch strsrch = new StringSearch(PATTERN[0].pattern, new StringCharacterIterator(PATTERN[0].text), m_en_us_, null);
@ -1684,6 +1707,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestPatternCanonical() {
//StringCharacterIterator text = new StringCharacterIterator(PATTERNCANONICAL[0].text);
m_en_us_.setStrength(PATTERNCANONICAL[0].strength);
@ -1733,6 +1757,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestReset() {
StringCharacterIterator text = new StringCharacterIterator("fish fish");
String pattern = "s";
@ -1754,6 +1779,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestSetMatch() {
for (int count = 0; count < MATCH.length; count++) {
SearchData search = MATCH[count];
@ -1796,6 +1822,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestStrength() {
for (int count = 0; count < STRENGTH.length; count++) {
if (!assertEqual(STRENGTH[count])) {
@ -1804,6 +1831,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestStrengthCanonical() {
for (int count = 0; count < STRENGTHCANONICAL.length; count++) {
if (!assertCanonicalEqual(STRENGTHCANONICAL[count])) {
@ -1812,6 +1840,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestSupplementary() {
for (int count = 0; count < SUPPLEMENTARY.length; count++) {
if (!assertEqual(SUPPLEMENTARY[count])) {
@ -1820,6 +1849,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestSupplementaryCanonical() {
for (int count = 0; count < SUPPLEMENTARYCANONICAL.length; count++) {
if (!assertCanonicalEqual(SUPPLEMENTARYCANONICAL[count])) {
@ -1828,6 +1858,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestText() {
SearchData TEXT[] = {
SD("the foxy brown fox", "fox", null, TERTIARY, STANDARD_ELEMENT_COMPARISON, null, IA(4, 15, -1), IA(3, 3)),
@ -1857,6 +1888,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestTextCanonical() {
StringCharacterIterator t = new StringCharacterIterator(TEXTCANONICAL[0].text);
StringSearch strsrch = new StringSearch(TEXTCANONICAL[0].pattern, t, m_en_us_, null);
@ -1898,6 +1930,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestVariable() {
m_en_us_.setAlternateHandlingShifted(true);
for (int count = 0; count < VARIABLE.length; count++) {
@ -1909,6 +1942,7 @@ public class SearchTest extends TestFmwk {
m_en_us_.setAlternateHandlingShifted(false);
}
@Test
public void TestVariableCanonical() {
m_en_us_.setAlternateHandlingShifted(true);
for (int count = 0; count < VARIABLE.length; count++) {
@ -1920,6 +1954,7 @@ public class SearchTest extends TestFmwk {
m_en_us_.setAlternateHandlingShifted(false);
}
@Test
public void TestSubClass()
{
class TestSearch extends SearchIterator
@ -2002,6 +2037,7 @@ public class SearchTest extends TestFmwk {
}
//Test for ticket 5024
@Test
public void TestDiactricMatch() {
String pattern = "pattern";
String text = "text";
@ -2028,6 +2064,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestUsingSearchCollator() {
String scKoText =
" " +
@ -2174,6 +2211,7 @@ public class SearchTest extends TestFmwk {
}
}
@Test
public void TestIndicPrefixMatch() {
for (int count = 0; count < INDICPREFIXMATCH.length; count++) {
if (!assertEqual(INDICPREFIXMATCH[count])) {

View file

@ -8,6 +8,8 @@ package com.ibm.icu.dev.test.util;
import java.util.MissingResourceException;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.ICUData;
import com.ibm.icu.impl.ICUResourceBundle;
@ -22,10 +24,7 @@ public final class ICUResourceBundleCollationTest extends TestFmwk {
private static final String DEFAULT_NAME = "default";
private static final String STANDARD_NAME = "standard";
public static void main(String args[]) throws Exception {
new ICUResourceBundleCollationTest().run(args);
}
@Test
public void TestFunctionalEquivalent(){
String[] collCases = {
// avail locale equiv
@ -76,6 +75,7 @@ public final class ICUResourceBundleCollationTest extends TestFmwk {
COLLATION_RESNAME, COLLATION_KEYWORD, true, collCases);
}
@Test
public void TestGetWithFallback(){
/*
UResourceBundle bundle =(UResourceBundle) UResourceBundle.getBundleInstance("com/ibm/icu/dev/data/testdata","te_IN");
@ -113,6 +113,7 @@ public final class ICUResourceBundleCollationTest extends TestFmwk {
}
}
@Test
public void TestKeywordValues(){
String kwVals[];
boolean foundStandard = false;
@ -141,6 +142,7 @@ public final class ICUResourceBundleCollationTest extends TestFmwk {
}
}
@Test
public void TestOpen(){
UResourceBundle bundle = (UResourceBundle)UResourceBundle.getBundleInstance(ICUData.ICU_COLLATION_BASE_NAME, "en_US_POSIX");
if(bundle==null){

View file

@ -9,6 +9,9 @@ package com.ibm.icu.dev.test.util;
import java.util.HashMap;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.text.Collator;
import com.ibm.icu.util.ULocale;
@ -30,24 +33,22 @@ public class LocaleAliasCollationTest extends com.ibm.icu.dev.test.TestFmwk {
};
private static final int _LOCALE_NUMBER = _LOCALES.length;
private static ULocale[] available = null;
private ULocale[] available = null;
private HashMap availableMap = new HashMap();
private static final ULocale _DEFAULT_LOCALE = ULocale.US;
public static void main(String[] args) {
new LocaleAliasCollationTest().run(args);
}
public LocaleAliasCollationTest() {
}
protected void init(){
@Before
public void init() {
available = ULocale.getAvailableLocales();
for(int i=0; i<available.length;i++){
availableMap.put(available[i].toString(),"");
}
}
@Test
public void TestCollation() {
ULocale defLoc = ULocale.getDefault();
ULocale.setDefault(_DEFAULT_LOCALE);

View file

@ -20,6 +20,8 @@ import java.util.List;
import java.util.Locale;
import java.util.Set;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.Collator;
import com.ibm.icu.text.DisplayContext;
@ -30,11 +32,7 @@ import com.ibm.icu.util.IllformedLocaleException;
import com.ibm.icu.util.ULocale;
public class ULocaleCollationTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new ULocaleCollationTest().run(args);
}
@Test
public void TestCollator() {
checkService("ja_JP_YOKOHAMA", new ServiceFacade() {
public Object create(ULocale req) {
@ -232,6 +230,7 @@ public class ULocaleCollationTest extends TestFmwk {
}
}
@Test
public void TestNameList() {
String[][][] tests = {
/* name in French, name in self, minimized, modified */
@ -319,6 +318,7 @@ public class ULocaleCollationTest extends TestFmwk {
}
}
@Test
public void TestIllformedLocale() {
ULocale french = ULocale.FRENCH;
Collator collator = Collator.getInstance(french);

View file

@ -7,5 +7,16 @@
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-langdata"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-regiondata"/>
<classpathentry combineaccessrules="false" kind="src" path="/icu4j-currdata"/>
<classpathentry kind="lib" path="/external-libraries/hamcrest-core-1.3.jar"/>
<classpathentry kind="lib" path="/external-libraries/junit-4.12.jar" sourcepath="/external-libraries/junit-4.12-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/junit-4.12-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="lib" path="/external-libraries/JUnitParams-1.0.5.jar" sourcepath="/external-libraries/JUnitParams-1.0.5-sources.jar">
<attributes>
<attribute name="javadoc_location" value="jar:platform:/resource/external-libraries/JUnitParams-1.0.5-javadoc.jar!/"/>
</attributes>
</classpathentry>
<classpathentry kind="output" path="out/bin"/>
</classpath>

View file

@ -10,6 +10,7 @@
<import file="${shared.dir}/build/common-targets.xml"/>
<path id="javac.classpathref">
<path refid="junit.jars"/>
<path refid="javac.classpathref.${ant.project.name}"/>
</path>
<property name="jar.name" value="icu4j-${ant.project.name}.jar"/>

View file

@ -1,44 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 2010, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
public class TestAllCore extends TestGroup {
public static void main(String[] args) {
new TestAllCore().run(args);
}
public TestAllCore() {
super(
new String[] {
"com.ibm.icu.dev.test.format.TestAll",
"com.ibm.icu.dev.test.compression.TestAll",
"com.ibm.icu.dev.test.rbbi.TestAll",
"com.ibm.icu.dev.test.shaping.ArabicShapingRegTest",
"com.ibm.icu.dev.test.calendar.TestAll",
"com.ibm.icu.dev.test.timezone.TestAll",
"com.ibm.icu.dev.test.lang.TestAll",
"com.ibm.icu.dev.test.text.TestAll",
"com.ibm.icu.dev.test.normalizer.TestAll",
"com.ibm.icu.dev.test.util.TestAll",
"com.ibm.icu.dev.test.iterator.TestUCharacterIterator", // not a group
"com.ibm.icu.dev.test.bigdec.DiagBigDecimal", // not a group
"com.ibm.icu.dev.test.impl.TestAll",
"com.ibm.icu.dev.test.stringprep.TestAll",
"com.ibm.icu.dev.test.timescale.TestAll",
"com.ibm.icu.dev.test.charsetdet.TestCharsetDetector",
"com.ibm.icu.dev.test.bidi.TestAll",
"com.ibm.icu.dev.test.duration.TestAll",
"com.ibm.icu.dev.test.serializable.SerializableTest" // *is* a group
},
"All core tests in ICU");
}
public static final String CLASS_TARGET_NAME = "Core";
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.bidi;
import java.io.BufferedReader;
import java.io.IOException;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.TestUtil;
import com.ibm.icu.lang.UCharacterDirection;
@ -21,11 +23,9 @@ import com.ibm.icu.text.BidiClassifier;
* Ported from ICU4C intltest/bidiconf.cpp .
*/
public class BiDiConformanceTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new BiDiConformanceTest().run(args);
}
public BiDiConformanceTest() {}
@Test
public void TestBidiTest() throws IOException {
BufferedReader bidiTestFile = TestUtil.getDataReader("unicode/BidiTest.txt");
try {
@ -161,6 +161,7 @@ outerLoop:
*
*******************************************************************************
*/
@Test
public void TestBidiCharacterTest() throws IOException {
BufferedReader bidiTestFile = TestUtil.getDataReader("unicode/BidiCharacterTest.txt");
try {

View file

@ -22,7 +22,7 @@ import com.ibm.icu.util.VersionInfo;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class BidiTest extends TestFmwk {
public class BidiFmwk extends TestFmwk {
protected static final char[] charFromDirProp = {
/* L R EN ES ET AN CS B S WS ON */

View file

@ -1,43 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 2001-2012, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
*/
package com.ibm.icu.dev.test.bidi;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"com.ibm.icu.dev.test.bidi.TestCharFromDirProp",
"com.ibm.icu.dev.test.bidi.TestBidi",
"com.ibm.icu.dev.test.bidi.TestInverse",
"com.ibm.icu.dev.test.bidi.TestReorder",
"com.ibm.icu.dev.test.bidi.TestReorderArabicMathSymbols",
"com.ibm.icu.dev.test.bidi.TestFailureRecovery",
"com.ibm.icu.dev.test.bidi.TestMultipleParagraphs",
"com.ibm.icu.dev.test.bidi.TestReorderingMode",
"com.ibm.icu.dev.test.bidi.TestReorderRunsOnly",
"com.ibm.icu.dev.test.bidi.TestStreaming",
"com.ibm.icu.dev.test.bidi.TestClassOverride",
"com.ibm.icu.dev.test.bidi.TestCompatibility",
"com.ibm.icu.dev.test.bidi.TestContext",
"com.ibm.icu.dev.test.bidi.BiDiConformanceTest"
},
"Bidi tests");
}
public static final String CLASS_TARGET_NAME = "Bidi";
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.bidi;
import java.util.Arrays;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
import com.ibm.icu.text.BidiRun;
@ -18,11 +20,12 @@ import com.ibm.icu.text.BidiRun;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestBidi extends BidiTest {
public class TestBidi extends BidiFmwk {
private static final int MAXLEN = 256;
private static final String levelString = "............................";
@Test
public void testBidi() {
Bidi bidi;
Bidi bidiLine;
@ -569,14 +572,4 @@ public class TestBidi extends BidiTest {
String lastHebrewOthersEnglishDigit = "\u0031\u0032\u0033\u05F1";
assertEquals("\nWrong direction through fast detection #15", Bidi.RTL, Bidi.getBaseDirection(lastHebrewOthersEnglishDigit));
}
public static void main(String[] args) {
try {
new TestBidi().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.impl.Utility;
import com.ibm.icu.lang.UCharacter;
import com.ibm.icu.lang.UCharacterDirection;
@ -17,9 +19,10 @@ import com.ibm.icu.lang.UCharacterDirection;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestCharFromDirProp extends BidiTest {
public class TestCharFromDirProp extends BidiFmwk {
/* verify that the exemplar characters have the expected bidi classes */
@Test
public void testCharFromDirProp() {
logln("\nEntering TestCharFromDirProp");
@ -32,13 +35,4 @@ public class TestCharFromDirProp extends BidiTest {
}
logln("\nExiting TestCharFromDirProp");
}
public static void main(String[] args) {
try {
new TestCharFromDirProp().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
import com.ibm.icu.text.BidiClassifier;
@ -16,7 +18,7 @@ import com.ibm.icu.text.BidiClassifier;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestClassOverride extends BidiTest {
public class TestClassOverride extends BidiFmwk {
private static final int DEF = TestData.DEF;
private static final int L = TestData.L;
@ -108,6 +110,7 @@ public class TestClassOverride extends BidiTest {
CustomClassifier classifier = null;
@Test
public void testClassOverride()
{
Bidi bidi;
@ -131,14 +134,4 @@ public class TestClassOverride extends BidiTest {
logln("\nExiting TestClassOverride\n");
}
public static void main(String[] args) {
try {
new TestClassOverride().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -12,6 +12,8 @@ import java.awt.font.TextAttribute;
import java.text.AttributedCharacterIterator;
import java.text.AttributedString;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
/**
@ -20,7 +22,7 @@ import com.ibm.icu.text.Bidi;
* @author Matitiahu Allouche
*/
public class TestCompatibility extends BidiTest {
public class TestCompatibility extends BidiFmwk {
void compareBidi(Bidi bidi, java.text.Bidi jbidi)
{
@ -134,6 +136,7 @@ public class TestCompatibility extends BidiTest {
*/
}
@Test
public void testCompatibility()
{
// This test case does not work well on Java 1.4/1.4.1 environment,
@ -284,13 +287,4 @@ public class TestCompatibility extends BidiTest {
logln("\nExiting TestCompatibility\n");
}
public static void main(String[] args) {
try {
new TestCompatibility().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
/**
@ -15,7 +17,7 @@ import com.ibm.icu.text.Bidi;
* @author Matitiahu Allouche
*/
public class TestContext extends BidiTest {
public class TestContext extends BidiFmwk {
private class ContextCase {
String prologue;
@ -63,6 +65,7 @@ public class TestContext extends BidiTest {
};
private final int CONTEXT_COUNT = contextData.length;
@Test
public void testContext()
{
String prologue, epilogue, src, dest;
@ -96,13 +99,4 @@ public class TestContext extends BidiTest {
logln("\nExiting TestContext\n");
}
public static void main(String[] args) {
try {
new TestContext().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
/**
@ -15,8 +17,9 @@ import com.ibm.icu.text.Bidi;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestFailureRecovery extends BidiTest {
public class TestFailureRecovery extends BidiFmwk {
@Test
public void testFailureRecovery()
{
logln("\nEntering TestFailureRecovery\n");
@ -116,14 +119,4 @@ public class TestFailureRecovery extends BidiTest {
logln("\nExiting TestFailureRecovery\n");
}
public static void main(String[] args) {
try {
new TestFailureRecovery().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.bidi;
import java.util.Arrays;
import org.junit.Test;
import com.ibm.icu.impl.Utility;
import com.ibm.icu.text.Bidi;
@ -18,7 +20,7 @@ import com.ibm.icu.text.Bidi;
* ported from C by Lina Kemmel, Matitiahu Allouche
*/
public class TestInverse extends BidiTest {
public class TestInverse extends BidiFmwk {
private int countRoundtrips = 0;
private int countNonRoundtrips = 0;
@ -31,6 +33,7 @@ public class TestInverse extends BidiTest {
"\u0061\u0062\u0020\u0061\u0062\u0020\u0661\u0662"
};
@Test
public void testInverse() {
Bidi bidi;
int i;
@ -261,15 +264,4 @@ public class TestInverse extends BidiTest {
assertEquals("\nInvalid output with RLM at both sides",
"\u200f \u200f", out);
}
public static void main(String[] args) {
try {
new TestInverse().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.bidi;
import java.util.Arrays;
import org.junit.Test;
import com.ibm.icu.impl.Utility;
import com.ibm.icu.text.Bidi;
import com.ibm.icu.text.BidiRun;
@ -19,7 +21,7 @@ import com.ibm.icu.text.BidiRun;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestMultipleParagraphs extends BidiTest {
public class TestMultipleParagraphs extends BidiFmwk {
private static final String text =
"__ABC\u001c" /* Para #0 offset 0 */
@ -73,6 +75,7 @@ public class TestMultipleParagraphs extends BidiTest {
0, 0, 0, 0
};
@Test
public void testMultipleParagraphs()
{
byte gotLevel;
@ -449,14 +452,4 @@ public class TestMultipleParagraphs extends BidiTest {
}
}
}
public static void main(String[] args) {
try {
new TestMultipleParagraphs().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
@ -16,7 +18,7 @@ import com.ibm.icu.text.Bidi;
* ported from C by Lina Kemmel, Matitiahu Allouche
*/
public class TestReorder extends BidiTest {
public class TestReorder extends BidiFmwk {
private static final String[] logicalOrder = {
"del(KC)add(K.C.&)",
@ -108,6 +110,7 @@ public class TestReorder extends BidiTest {
"hello ZYXW"
};
@Test
public void testReorder() {
Bidi bidi = new Bidi();
int testNumber;
@ -247,15 +250,4 @@ public class TestReorder extends BidiTest {
logln("\nExiting TestReorder\n");
}
public static void main(String[] args) {
try {
new TestReorder().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -6,6 +6,8 @@
*/
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
@ -15,7 +17,7 @@ import com.ibm.icu.text.Bidi;
* Ported from C by Ramy Said
*/
public class TestReorderArabicMathSymbols extends BidiTest {
public class TestReorderArabicMathSymbols extends BidiFmwk {
private static final String[] logicalOrder = {
/* Arabic mathematical Symbols "\u1EE00 - "\u1EE1B */
@ -103,6 +105,7 @@ public class TestReorderArabicMathSymbols extends BidiTest {
"\uD83B\uDE4B\uD83B\uDE49\uD83B\uDE47\uD83B\uDE42"
};
@Test
public void testReorderArabicMathSymbols() {
Bidi bidi = new Bidi();
int testNumber;
@ -135,14 +138,4 @@ public class TestReorderArabicMathSymbols extends BidiTest {
logln("\nExiting TestReorderArabicMathSymbols\n");
}
public static void main(String[] args) {
try {
new TestReorderArabicMathSymbols().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
/**
@ -15,8 +17,7 @@ import com.ibm.icu.text.Bidi;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestReorderRunsOnly extends BidiTest {
public class TestReorderRunsOnly extends BidiFmwk {
static class TestCase {
String textIn;
@ -107,6 +108,8 @@ public class TestReorderRunsOnly extends BidiTest {
new int[] {0, 0})
};
@Test
public void testReorderRunsOnly() {
Bidi bidi = new Bidi();
@ -175,16 +178,5 @@ public class TestReorderRunsOnly extends BidiTest {
logln("\nExiting TestReorderRunsOnly\n");
}
public static void main(String[] args) {
try {
new TestReorderRunsOnly().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.bidi;
import java.util.Arrays;
import org.junit.Test;
import com.ibm.icu.text.Bidi;
/**
@ -17,7 +19,7 @@ import com.ibm.icu.text.Bidi;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestReorderingMode extends BidiTest {
public class TestReorderingMode extends BidiFmwk {
static final String[] textIn = {
/* (0) 123 */
@ -195,6 +197,7 @@ public class TestReorderingMode extends BidiTest {
static final int OPTIONS_COUNT = options.length;
static final int LEVELS_COUNT = paraLevels.length;
@Test
public void testReorderingMode() {
String src, dest;
@ -699,15 +702,4 @@ public class TestReorderingMode extends BidiTest {
}
return testOK;
}
public static void main(String[] args) {
try {
new TestReorderingMode().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.bidi;
import org.junit.Test;
import com.ibm.icu.impl.Utility;
import com.ibm.icu.text.Bidi;
@ -16,7 +18,7 @@ import com.ibm.icu.text.Bidi;
* @author Lina Kemmel, Matitiahu Allouche
*/
public class TestStreaming extends BidiTest {
public class TestStreaming extends BidiFmwk {
static final int MAXPORTIONS = 10;
@ -66,6 +68,7 @@ public class TestStreaming extends BidiTest {
static final int MAXLOOPS = 20;
static final byte[] paraLevels = { Bidi.LTR, Bidi.RTL };
@Test
public void testStreaming()
{
String src, subsrc;
@ -135,15 +138,4 @@ public class TestStreaming extends BidiTest {
}
logln("\nExiting TestStreaming\n");
}
public static void main(String[] args) {
try {
new TestStreaming().run(args);
}
catch (Exception e) {
System.out.println(e);
}
}
}

View file

@ -5516,10 +5516,7 @@ public class DiagBigDecimal extends TestFmwk {
* if the first word is '<code>continue</code>' then try and run
* all tests, otherwise stop after the first failing test group.
*/
public static void main(String[] args) throws Exception {
new DiagBigDecimal().run(args);
}
@org.junit.Test
public void TestBigDecimal() {
boolean $continue;
int fails;

View file

@ -11,6 +11,8 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.CalendarAstronomer;
import com.ibm.icu.impl.CalendarAstronomer.Ecliptic;
@ -24,12 +26,9 @@ import com.ibm.icu.util.TimeZone;
// TODO: try finding next new moon after 07/28/1984 16:00 GMT
public class AstroTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new AstroTest().run(args);
}
static final double PI = Math.PI;
@Test
public void TestSolarLongitude() {
GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC"));
CalendarAstronomer astro = new CalendarAstronomer();
@ -83,6 +82,7 @@ public class AstroTest extends TestFmwk {
}
}
@Test
public void TestLunarPosition() {
GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0, "UTC"));
CalendarAstronomer astro = new CalendarAstronomer();
@ -123,12 +123,14 @@ public class AstroTest extends TestFmwk {
}
}
@Test
public void TestCoordinates() {
CalendarAstronomer astro = new CalendarAstronomer();
Equatorial result = astro.eclipticToEquatorial(139.686111 * PI/ 180.0, 4.875278* PI / 180.0);
logln("result is " + result + "; " + result.toHmsString());
}
@Test
public void TestCoverage() {
GregorianCalendar cal = new GregorianCalendar(1958, Calendar.AUGUST, 15);
Date then = cal.getTime();
@ -179,6 +181,7 @@ public class AstroTest extends TestFmwk {
static final long DAY_MS = 24*60*60*1000L;
@Test
public void TestSunriseTimes() {
// logln("Sunrise/Sunset times for San Jose, California, USA");
@ -316,6 +319,7 @@ public class AstroTest extends TestFmwk {
// long r = a.getSunRiseSet2(true);
}
@Test
public void TestBasics() {
// Check that our JD computation is the same as the book's (p. 88)
CalendarAstronomer astro = new CalendarAstronomer();
@ -345,6 +349,7 @@ public class AstroTest extends TestFmwk {
// astro.foo();
}
@Test
public void TestMoonAge(){
GregorianCalendar gc = new GregorianCalendar(new SimpleTimeZone(0,"GMT"));
CalendarAstronomer calastro = new CalendarAstronomer();

View file

@ -18,6 +18,8 @@ import java.util.HashSet;
import java.util.Locale;
import java.util.MissingResourceException;
import org.junit.Test;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.NumberFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -36,10 +38,6 @@ import com.ibm.icu.util.ULocale;
* 4174361 4177484 4197699 4209071 4288792
*/
public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
public static void main(String[] args) throws Exception {
new CalendarRegression().run(args);
}
static final String[] FIELD_NAME = {
"ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
"DAY_OF_MONTH", "DAY_OF_YEAR", "DAY_OF_WEEK",
@ -69,6 +67,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
result=1901-04-05 06:08:13.1234567
*/
@Test
public void Test4031502() {
try{
// This bug actually occurs on Windows NT as well, and doesn't
@ -127,6 +126,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4035301() {
try {
@ -145,6 +145,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4040996() {
try {
String[] ids = TimeZone.getAvailableIDs(-8 * 60 * 60 * 1000);
@ -181,6 +182,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4051765() {
try {
Calendar cal = Calendar.getInstance();
@ -243,6 +245,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* in hours }
*/
@Test
public void Test4059654() {
// try {
// work around bug for jdk1.4 on solaris 2.6, which uses funky
@ -275,6 +278,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
// }
}
@Test
public void Test4061476() {
SimpleDateFormat fmt = new SimpleDateFormat("ddMMMyy", Locale.UK);
Calendar cal = GregorianCalendar.getInstance(TimeZone.getTimeZone("GMT"),
@ -296,6 +300,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: Want 19 Got " + cal.get(Calendar.HOUR_OF_DAY));
}
@Test
public void Test4070502() {
java.util.Calendar tempcal = java.util.Calendar.getInstance();
tempcal.clear();
@ -334,6 +339,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
return cal.getTime();
}
@Test
public void Test4071197() {
dowTest(false);
dowTest(true);
@ -358,6 +364,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("FAIL: Day of week should be SUNDAY Got " + dow);
}
@Test
public void Test4071385() {
// work around bug for jdk1.4 on solaris 2.6, which uses funky timezone
// names
@ -377,6 +384,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail");
}
@Test
public void Test4073929() {
GregorianCalendar foo1 = new GregorianCalendar(1997, 8, 27);
foo1.add(Calendar.DAY_OF_MONTH, +1);
@ -389,6 +397,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: Calendar not initialized");
}
@Test
public void Test4083167() {
TimeZone saveZone = TimeZone.getDefault();
try {
@ -420,6 +429,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4086724() {
SimpleDateFormat date;
TimeZone saveZone = TimeZone.getDefault();
@ -449,6 +459,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
logln("*** THE RESULTS OF THIS TEST MUST BE VERIFIED MANUALLY ***");
}
@Test
public void Test4092362() {
GregorianCalendar cal1 = new GregorianCalendar(1997, 10, 11, 10, 20, 40);
/*
@ -476,6 +487,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: Milliseconds randomized");
}
@Test
public void Test4095407() {
GregorianCalendar a = new GregorianCalendar(1997,Calendar.NOVEMBER, 13);
int dow = a.get(Calendar.DAY_OF_WEEK);
@ -483,6 +495,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: Want THURSDAY Got " + dow);
}
@Test
public void Test4096231() {
TimeZone GMT = TimeZone.getTimeZone("GMT");
TimeZone PST = TimeZone.getTimeZone("PST");
@ -539,6 +552,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: Calendar zone behavior faulty");
}
@Test
public void Test4096539() {
int[] y = {31,28,31,30,31,30,31,31,30,31,30,31};
@ -561,6 +575,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
@Test
public void Test4100311() {
GregorianCalendar cal = (GregorianCalendar)Calendar.getInstance();
cal.set(Calendar.YEAR, 1997);
@ -571,6 +586,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
errln("Fail: DAY_OF_YEAR not set");
}
@Test
public void Test4103271() {
SimpleDateFormat sdf = new SimpleDateFormat();
int numYears=40, startYear=1997, numDays=15;
@ -753,6 +769,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
if (fail) errln("Fail: Week of year misbehaving");
}
@Test
public void Test4106136() {
Locale saveLocale = Locale.getDefault();
String[] names = { "Calendar", "DateFormat", "NumberFormat" };
@ -776,6 +793,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4108764() {
java.util.Calendar tempcal = java.util.Calendar.getInstance();
tempcal.clear();
@ -833,6 +851,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4114578() {
int ONE_HOUR = 60*60*1000;
Calendar cal = Calendar.getInstance();
@ -897,6 +916,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Make sure maximum for HOUR field is 11, not 12.
*/
@Test
public void Test4118384() {
Calendar cal = Calendar.getInstance();
if (cal.getMaximum(Calendar.HOUR) != 11 ||
@ -908,6 +928,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Check isLeapYear for BC years.
*/
@Test
public void Test4125881() {
GregorianCalendar cal = (GregorianCalendar) Calendar.getInstance();
DateFormat fmt = new SimpleDateFormat("MMMM d, yyyy G");
@ -931,6 +952,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Prove that GregorianCalendar is proleptic (it used to cut off at 45 BC,
* and not have leap years before then).
*/
@Test
public void Test4125892() {
GregorianCalendar cal = (GregorianCalendar) Calendar.getInstance();
//DateFormat fmt = new SimpleDateFormat("MMMM d, yyyy G");
@ -951,6 +973,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Calendar needs a good implementation that subclasses can override, and
* GregorianCalendar should use that implementation.
*/
@Test
public void Test4136399() {
/*
* Note: This test is actually more strict than it has to be.
@ -1023,6 +1046,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* GregorianCalendar.equals() ignores cutover date
*/
@Test
public void Test4141665() {
GregorianCalendar cal = new GregorianCalendar();
GregorianCalendar cal2 = (GregorianCalendar)cal.clone();
@ -1042,6 +1066,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Bug states that ArrayIndexOutOfBoundsException is thrown by
* GregorianCalendar.roll() when IllegalArgumentException should be.
*/
@Test
public void Test4142933() {
GregorianCalendar calendar = new GregorianCalendar();
try {
@ -1066,6 +1091,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* to therefore only check the behavior of a calendar with a zero raw offset
* zone.
*/
@Test
public void Test4145158() {
GregorianCalendar calendar = new GregorianCalendar();
@ -1087,6 +1113,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Maximum value for YEAR field wrong.
*/
@Test
public void Test4145983() {
GregorianCalendar calendar = new GregorianCalendar();
calendar.setTimeZone(TimeZone.getTimeZone("GMT"));
@ -1108,6 +1135,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* report test was written. In reality the bug is restricted to the
* DAY_OF_YEAR field. - liu 6/29/98
*/
@Test
public void Test4147269() {
GregorianCalendar calendar = new GregorianCalendar();
calendar.setLenient(false);
@ -1142,6 +1170,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Date(Long.MAX_VALUE) doesn't behave as a pure Julian calendar. CANNOT
* REPRODUCE THIS BUG
*/
@Test
public void Test4149677() {
TimeZone[] zones = { TimeZone.getTimeZone("GMT"),
TimeZone.getTimeZone("PST"),
@ -1175,6 +1204,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Calendar and Date HOUR broken. If HOUR is out-of-range, Calendar and Date
* classes will misbehave.
*/
@Test
public void Test4162587() {
TimeZone tz = TimeZone.getTimeZone("PST");
TimeZone.setDefault(tz);
@ -1211,6 +1241,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Adding 12 months behaves differently from adding 1 year
*/
@Test
public void Test4165343() {
GregorianCalendar calendar = new GregorianCalendar(1996, Calendar.FEBRUARY, 29);
Date start = calendar.getTime();
@ -1233,6 +1264,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* GregorianCalendar.getActualMaximum() does not account for first day of
* week.
*/
@Test
public void Test4166109() {
/*
* Test month:
@ -1272,6 +1304,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Calendar.getActualMaximum(YEAR) works wrong.
*/
@Test
public void Test4167060() {
int field = Calendar.YEAR;
DateFormat format = new SimpleDateFormat("EEE MMM dd HH:mm:ss zzz yyyy G",
@ -1334,6 +1367,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Calendar.roll broken This bug relies on the TimeZone bug 4173604 to also
* be fixed.
*/
@Test
public void Test4173516() {
int fieldsList[][] = {
{ 1997, Calendar.FEBRUARY, 1, 10, 45, 15, 900 },
@ -1433,6 +1467,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void Test4174361() {
GregorianCalendar calendar = new GregorianCalendar(1996, 1, 29);
@ -1455,6 +1490,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Calendar does not update field values when setTimeZone is called.
*/
@Test
public void Test4177484() {
TimeZone PST = TimeZone.getTimeZone("PST");
TimeZone EST = TimeZone.getTimeZone("EST");
@ -1485,6 +1521,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Week of year is wrong at the start and end of the year.
*/
@Test
public void Test4197699() {
GregorianCalendar cal = new GregorianCalendar();
cal.setFirstDayOfWeek(Calendar.MONDAY);
@ -1523,6 +1560,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* MONTH + DAY_OF_MONTH MONTH + WEEK_OF_MONTH + DAY_OF_WEEK MONTH +
* DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK DAY_OF_YEAR WEEK_OF_YEAR + DAY_OF_WEEK
*/
@Test
public void Test4209071() {
Calendar cal = Calendar.getInstance(Locale.US);
@ -1662,6 +1700,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* WEEK_OF_YEAR computed incorrectly. A failure of this test can indicate a problem in several different places in
* the
*/
@Test
public void Test4288792() throws Exception {
TimeZone savedTZ = TimeZone.getDefault();
TimeZone.setDefault(TimeZone.getTimeZone("GMT"));
@ -1715,6 +1754,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Test fieldDifference().
*/
@Test
public void TestJ438() throws Exception {
int DATA[] = {
2000, Calendar.JANUARY, 20, 2010, Calendar.JUNE, 15,
@ -1762,6 +1802,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void TestT5555() throws Exception
{
Calendar cal = Calendar.getInstance();
@ -1796,6 +1837,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Set behavior of DST_OFFSET field. ICU4J Jitterbug 9.
*/
@Test
public void TestJ9() {
int HOURS = 60*60*1000;
Calendar cal = new GregorianCalendar(TimeZone.getTimeZone("PST"),
@ -1871,6 +1913,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* DateFormat.getDateInstance, it returns time instance - If a Calendar is
* passed to DateFormat.getTimeInstance, it returns date instance
*/
@Test
public void TestDateFormatFactoryJ26() {
TimeZone zone = TimeZone.getDefault();
try {
@ -1929,6 +1972,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void TestRegistration() {
/*
* Set names = Calendar.getCalendarFactoryNames();
@ -1970,6 +2014,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* test serialize-and-modify.
* @throws ClassNotFoundException
*/
@Test
public void TestSerialization3474() {
try {
ByteArrayOutputStream icuStream = new ByteArrayOutputStream();
@ -2068,6 +2113,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
@Test
public void TestYearJump3279() {
final long time = 1041148800000L;
Calendar c = new GregorianCalendar();
@ -2090,6 +2136,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
logln("Year remained " + year2 + " - PASS.");
}
}
@Test
public void TestCalendarType6816() {
Locale loc = new Locale("en", "TH");
Calendar cal = Calendar.getInstance(loc);
@ -2099,6 +2146,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void TestGetKeywordValuesForLocale(){
final String[][] PREFERRED = {
@ -2164,6 +2212,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
}
}
@Test
public void TestTimeStamp() {
long start = 0, time;
@ -2194,6 +2243,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* validation should be done only for fields set by user code explicitly
* in non-lenient mode.
*/
@Test
public void TestT8057() {
// Set the calendar to the last day in a leap year
GregorianCalendar cal = new GregorianCalendar();
@ -2222,6 +2272,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Setting an year followed by getActualMaximum(Calendar.WEEK_OF_YEAR)
* may result wrong maximum week.
*/
@Test
public void TestT8596() {
GregorianCalendar gc = new GregorianCalendar(TimeZone.getTimeZone("Etc/GMT"));
gc.setFirstDayOfWeek(Calendar.MONDAY);
@ -2248,6 +2299,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
/**
* Test case for ticket:9019
*/
@Test
public void Test9019() {
GregorianCalendar cal1 = new GregorianCalendar(TimeZone.GMT_ZONE,ULocale.US);
GregorianCalendar cal2 = new GregorianCalendar(TimeZone.GMT_ZONE,ULocale.US);
@ -2268,6 +2320,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Test case for ticket 9452
* Calendar addition fall onto the missing date - 2011-12-30 in Samoa
*/
@Test
public void TestT9452() {
TimeZone samoaTZ = TimeZone.getTimeZone("Pacific/Apia");
GregorianCalendar cal = new GregorianCalendar(samoaTZ);
@ -2304,6 +2357,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* In strict mode an IllegalIcuArgumentException will be thrown
* In lenient mode the value will be pinned to the relative min/max
*/
@Test
public void TestT9403() {
Calendar myCal = Calendar.getInstance();
long dateBit1, dateBit2, testMillis = 0L;
@ -2340,6 +2394,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
* Test case for ticket 9968
* subparse fails to return an error indication when start pos is 0
*/
@Test
public void TestT9968() {
SimpleDateFormat sdf0 = new SimpleDateFormat("-MMMM");
ParsePosition pos0 = new ParsePosition(0);
@ -2360,6 +2415,7 @@ public class CalendarRegression extends com.ibm.icu.dev.test.TestFmwk {
assertTrue("Fail: failed to detect bad parse", pos2.getErrorIndex() == 0);
}
@Test
public void TestWeekendData_10560() {
final Calendar.WeekData worldWeekData = new Calendar.WeekData(2, 1, 7, 0, 1, 86400000);
final Calendar.WeekData usWeekData = new Calendar.WeekData(1, 1, 7, 0, 1, 86400000);

View file

@ -24,7 +24,7 @@ import com.ibm.icu.util.SimpleTimeZone;
* A base class for classes that test individual Calendar subclasses.
* Defines various useful utility methods and constants
*/
public class CalendarTest extends TestFmwk {
public class CalendarTestFmwk extends TestFmwk {
// Constants for use by subclasses, solely to save typing
public final static int SUN = Calendar.SUNDAY;
@ -70,7 +70,7 @@ public class CalendarTest extends TestFmwk {
* makes sure that the time-to-fields and fields-to-time calculations work
* correnctly for the values in each test case.
*/
public void doTestCases(TestCase[] cases, Calendar cal)
protected void doTestCases(TestCase[] cases, Calendar cal)
{
cal.setTimeZone(UTC);
@ -153,7 +153,7 @@ public class CalendarTest extends TestFmwk {
* @param roll <code>true</code> or <code>ROLL</code> to test the <code>roll</code> method;
* <code>false</code> or <code>ADD</code> to test the <code>add</code method
*/
public void doRollAdd(boolean roll, Calendar cal, int[][] tests)
protected void doRollAdd(boolean roll, Calendar cal, int[][] tests)
{
String name = roll ? "rolling" : "adding";
@ -220,7 +220,7 @@ public class CalendarTest extends TestFmwk {
* @param testDuration if positive, the number of days to be tested.
* If negative, the number of seconds to run the test.
*/
public void doLimitsTest(Calendar cal, int[] fieldsToTest,
protected void doLimitsTest(Calendar cal, int[] fieldsToTest,
Date startDate, int testDuration) {
GregorianCalendar greg = new GregorianCalendar();
greg.setTime(startDate);
@ -340,8 +340,8 @@ public class CalendarTest extends TestFmwk {
/**
* doLimitsTest with default test duration
*/
public void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) {
int testTime = getInclusion() <= 5 ? -3 : -120; // in seconds
protected void doLimitsTest(Calendar cal, int[] fieldsToTest, Date startDate) {
int testTime = TestFmwk.getExhaustiveness() <= 5 ? -3 : -120; // in seconds
doLimitsTest(cal, fieldsToTest, startDate, testTime);
}
@ -351,7 +351,7 @@ public class CalendarTest extends TestFmwk {
* @param cal The calendar instance to be tested.
* @param leapMonth true if the calendar system has leap months
*/
public void doTheoreticalLimitsTest(Calendar cal, boolean leapMonth) {
protected void doTheoreticalLimitsTest(Calendar cal, boolean leapMonth) {
int nDOW = cal.getMaximum(Calendar.DAY_OF_WEEK);
int maxDOY = cal.getMaximum(Calendar.DAY_OF_YEAR);
int lmaxDOW = cal.getLeastMaximum(Calendar.DAY_OF_YEAR);

View file

@ -7,6 +7,8 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.text.ChineseDateFormat;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.DateFormatSymbols;
@ -59,15 +61,11 @@ import com.ibm.icu.util.ULocale;
* Tue May 22 2096 = 4733-04*-01, Year 53, Cycle 79
* Sun Mar 22 2099 = 4736-02*-01, Year 56, Cycle 79
*/
public class ChineseTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new ChineseTest().run(args);
}
public class ChineseTest extends CalendarTestFmwk {
/**
* Test basic mapping to and from Gregorian.
*/
@Test
public void TestMapping() {
final int[] DATA = {
@ -150,6 +148,7 @@ public class ChineseTest extends CalendarTest {
* month zero. This was a problem with some of the astronomical
* new moon determinations.
*/
@Test
public void TestZeroDOM() {
ChineseCalendar cal = new ChineseCalendar();
GregorianCalendar greg = new GregorianCalendar(1989, Calendar.SEPTEMBER, 1);
@ -171,6 +170,7 @@ public class ChineseTest extends CalendarTest {
/**
* Test minimum and maximum functions.
*/
@Test
public void TestLimits() {
// The number of days and the start date can be adjusted
// arbitrarily to either speed up the test or make it more
@ -190,6 +190,7 @@ public class ChineseTest extends CalendarTest {
/**
* Run through several standard tests from Dershowitz & Reingold.
*/
@Test
public void TestJulianDayMapping() {
final TestCase[] tests = {
@ -257,6 +258,7 @@ public class ChineseTest extends CalendarTest {
* associated calendar, as per ICU ticket #9043. This test should be timebombed
* until that ticket is addressed.
*/
@Test
public void TestFormat() {
ChineseCalendar cal = new ChineseCalendar();
DateFormat fmt = DateFormat.getDateTimeInstance(cal,
@ -291,6 +293,7 @@ public class ChineseTest extends CalendarTest {
/**
* Make sure IS_LEAP_MONTH participates in field resolution.
*/
@Test
public void TestResolution() {
ChineseCalendar cal = new ChineseCalendar();
DateFormat fmt = DateFormat.getDateInstance(cal, DateFormat.DEFAULT);
@ -385,6 +388,7 @@ public class ChineseTest extends CalendarTest {
/**
* Test the behavior of fields that are out of range.
*/
@Test
public void TestOutOfRange() {
int[] DATA = new int[] {
// Input Output
@ -425,6 +429,7 @@ public class ChineseTest extends CalendarTest {
* Test the behavior of ChineseCalendar.add(). The only real
* nastiness with roll is the MONTH field around leap months.
*/
@Test
public void TestAdd() {
int[][] tests = new int[][] {
// MONTHS ARE 1-BASED HERE
@ -450,6 +455,7 @@ public class ChineseTest extends CalendarTest {
* Test the behavior of ChineseCalendar.roll(). The only real
* nastiness with roll is the MONTH field around leap months.
*/
@Test
public void TestRoll() {
int[][] tests = new int[][] {
// MONTHS ARE 1-BASED HERE
@ -538,6 +544,7 @@ public class ChineseTest extends CalendarTest {
// }
// }
@Test
public void TestCoverage() {
// Coverage for constructors
{
@ -651,6 +658,7 @@ public class ChineseTest extends CalendarTest {
logln("Chinese calendar time: " + time2 + " result: " + str2);
}
}
@Test
public void TestScratch(){
String[] strMonths = {"Januari", "Pebruari", "Maret", "April", "Mei", "Juni",
"Juli", "Agustus", "September", "Oktober", "Nopember", "Desember"};
@ -673,6 +681,7 @@ public class ChineseTest extends CalendarTest {
logln(locInd.toString());
}
@Test
public void TestInitWithCurrentTime() {
// jb4555
// if the chinese calendar current millis isn't called, the default year is wrong.
@ -701,6 +710,7 @@ public class ChineseTest extends CalendarTest {
assertEquals("chinese and gregorian date should match", target, result);
}
@Test
public void Test6510()
{
Calendar gregorianCalendar;

View file

@ -15,6 +15,8 @@ import java.io.ObjectOutputStream;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.util.Calendar;
import com.ibm.icu.util.GregorianCalendar;
@ -22,11 +24,6 @@ import com.ibm.icu.util.SimpleTimeZone;
import com.ibm.icu.util.TimeZone;
public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
public static void main(String argv[]) throws Exception {
new CompatibilityTest().run(argv);
}
static final String[] FIELD_NAME = {
"ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
"DAY_OF_MONTH", "DAY_OF_YEAR", "DAY_OF_WEEK",
@ -39,6 +36,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
/**
* Test the behavior of the GregorianCalendar around the changeover.
*/
@Test
public void TestGregorianChangeover() {
java.util.TimeZone jdkGMT = java.util.TimeZone.getTimeZone("GMT");
@ -109,6 +107,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
* of this test, we don't care about timezones and week data
* (first day of week, minimal days in first week).
*/
@Test
public void TestMapping() {
if (false) {
Date PURE_GREGORIAN = new Date(Long.MIN_VALUE);
@ -260,6 +259,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
year2 + "-" + (month2+1) + "-" + dom2);
}
@Test
public void TestGenericAPI() {
// not used String str;
@ -440,6 +440,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify Roger Webster's bug
@Test
public void TestRog() {
GregorianCalendar gc = new GregorianCalendar();
@ -460,6 +461,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify DAY_OF_WEEK
@Test
public void TestDOW943() {
dowTest(false);
dowTest(true);
@ -483,6 +485,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
// Verify that the clone method produces distinct objects with no
// unintentionally shared fields.
@Test
public void TestClonesUnique908() {
Calendar c = Calendar.getInstance();
Calendar d = (Calendar)c.clone();
@ -495,6 +498,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify effect of Gregorian cutoff value
@Test
public void TestGregorianChange768() {
boolean b;
GregorianCalendar c = new GregorianCalendar();
@ -513,6 +517,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Test the correct behavior of the disambiguation algorithm.
@Test
public void TestDisambiguation765() throws Exception {
Calendar c = Calendar.getInstance();
c.setLenient(false);
@ -628,6 +633,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Test the behavior of GMT vs. local time
@Test
public void TestGMTvsLocal4064654() {
// Sample output 1:
// % /usr/local/java/jdk1.1.3/solaris/bin/java test 1997 1 1 12 0 0
@ -683,6 +689,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
// Verify that add and set work regardless of the order in which
// they are called.
@Test
public void TestAddSetOrder621() {
java.util.Calendar tempcal = java.util.Calendar.getInstance();
tempcal.clear();
@ -714,6 +721,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify that add works.
@Test
public void TestAdd520() {
int y = 1997, m = Calendar.FEBRUARY, d = 1;
GregorianCalendar temp = new GregorianCalendar( y, m, d );
@ -755,6 +763,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify that add works across ZONE_OFFSET and DST_OFFSET transitions
@Test
public void TestAddAcrossOffsetTransitions() {
class TransitionItem {
private String zoneName;
@ -805,6 +814,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Verify that setting fields works. This test fails when an exception is thrown.
@Test
public void TestFieldSet4781() {
try {
GregorianCalendar g = new GregorianCalendar();
@ -828,6 +838,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Test serialization of a Calendar object
@Test
public void TestSerialize337() {
Calendar cal = Calendar.getInstance();
@ -868,6 +879,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
static final String FILENAME = "tmp337.bin";
// Try to zero out the seconds field
@Test
public void TestSecondsZero121() {
Calendar cal = new GregorianCalendar();
// Initialize with current date/time
@ -880,6 +892,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
}
// Try various sequences of add, set, and get method calls.
@Test
public void TestAddSetGet0610() {
//
// Error case 1:
@ -943,6 +956,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
static String EXPECTED_0610 = "1993/0/5";
// Test that certain fields on a certain date are as expected.
@Test
public void TestFields060() {
int year = 1997;
int month = java.util.Calendar.OCTOBER; //october
@ -970,6 +984,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
// Verify that the fields are as expected (mostly zero) at the epoch start.
// Note that we adjust for the default timezone to get most things to zero.
@Test
public void TestEpochStartFields() {
TimeZone z = TimeZone.getDefault();
Calendar c = Calendar.getInstance();
@ -999,6 +1014,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
// Verify that as you add days to the calendar (e.g., 24 day periods),
// the day of the week shifts in the expected pattern.
@Test
public void TestDOWProgression() {
Calendar cal =
new GregorianCalendar(1972, Calendar.OCTOBER, 26);
@ -1026,6 +1042,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
while (newDOW != initialDOW);
}
@Test
public void TestActualMinMax() {
Calendar cal = new GregorianCalendar(1967, Calendar.MARCH, 10);
cal.setFirstDayOfWeek(Calendar.SUNDAY);
@ -1066,6 +1083,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
cal.getActualMaximum(Calendar.WEEK_OF_YEAR));
}
@Test
public void TestRoll() {
Calendar cal = new GregorianCalendar(1997, Calendar.JANUARY, 31);
@ -1126,6 +1144,7 @@ public class CompatibilityTest extends com.ibm.icu.dev.test.TestFmwk {
if (f != 0) errln("Rolling HOUR=3 delta=9 gave " + f + " Wanted 0");
}
@Test
public void TestComputeJulianDay4406() {
// jb4406 is probably not a bug, this is to document the behavior
GregorianCalendar cal = new GregorianCalendar();

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -22,12 +24,8 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>CopticCalendar</code> class.
*/
public class CopticTest extends CalendarTest
public class CopticTest extends CalendarTestFmwk
{
public static void main(String args[]) throws Exception {
new CopticTest().run(args);
}
/** Constants to save typing. */
public static final int TOUT = CopticCalendar.TOUT;
public static final int BABA = CopticCalendar.BABA;
@ -91,6 +89,7 @@ public class CopticTest extends CalendarTest
/** A huge list of test cases to make sure that computeTime and computeFields
* work properly for a wide range of data in the civil calendar.
*/
@Test
public void TestCases()
{
final TestCase[] tests = {
@ -140,6 +139,7 @@ public class CopticTest extends CalendarTest
}
// basic sanity check that the conversion algorithm round-trips
@Test
public void TestCopticToJD() {
CopticCalendar cal = new CopticCalendar();
cal.clear();
@ -169,6 +169,7 @@ public class CopticTest extends CalendarTest
// basic check to see that we print out eras ok
// eventually should modify to use locale strings and formatter appropriate to coptic calendar
@Test
public void TestEraStart() {
SimpleDateFormat fmt = new SimpleDateFormat("EEE MMM dd, yyyy GG");
SimpleDateFormat copticFmt = new SimpleDateFormat("EEE MMM dd, yyyy GG");
@ -184,6 +185,7 @@ public class CopticTest extends CalendarTest
assertEquals("Gregorian Date", "Thu Aug 30, 0283 AD", fmt.format(cal.getTime()));
}
@Test
public void TestBasic() {
CopticCalendar cal = new CopticCalendar();
cal.clear();
@ -203,6 +205,7 @@ public class CopticTest extends CalendarTest
/**
* Test limits of the Coptic calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(2007, Calendar.JANUARY, 1);
@ -215,6 +218,7 @@ public class CopticTest extends CalendarTest
* Test for track ticket 6379 - proper reporting of
* maximum month lengths
*/
@Test
public void Test6379()
{
CopticCalendar copticCal = new CopticCalendar();
@ -239,6 +243,7 @@ public class CopticTest extends CalendarTest
}
}
@Test
public void TestCoverage() {
{
@ -332,6 +337,7 @@ public class CopticTest extends CalendarTest
}
}
@Test
public void TestYear() {
// Gregorian Calendar
Calendar gCal= new GregorianCalendar();
@ -362,6 +368,7 @@ public class CopticTest extends CalendarTest
" + 2 months = " + eDF.format(eFuture));
}
@Test
public void TestAddSet() {
class TestAddSetItem {
private int startYear;

View file

@ -7,6 +7,8 @@
package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import org.junit.Test;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.util.Calendar;
import com.ibm.icu.util.DangiCalendar;
@ -14,15 +16,11 @@ import com.ibm.icu.util.GregorianCalendar;
import com.ibm.icu.util.TimeZone;
import com.ibm.icu.util.ULocale;
public class DangiTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new DangiTest().run(args);
}
public class DangiTest extends CalendarTestFmwk {
/**
* Test basic mapping to and from Gregorian.
*/
@Test
public void TestMapping() {
final int[] DATA = {
// (Note: months are 1-based)
@ -128,6 +126,7 @@ public class DangiTest extends CalendarTest {
* month zero. This was a problem with some of the astronomical
* new moon determinations.
*/
@Test
public void TestZeroDOM() {
Calendar cal = Calendar.getInstance(new ULocale("ko_KR@calendar=dangi"));
GregorianCalendar greg = new GregorianCalendar(1989, Calendar.SEPTEMBER, 1);
@ -149,6 +148,7 @@ public class DangiTest extends CalendarTest {
/**
* Test minimum and maximum functions.
*/
@Test
public void TestLimits() {
// The number of days and the start date can be adjusted
// arbitrarily to either speed up the test or make it more
@ -168,6 +168,7 @@ public class DangiTest extends CalendarTest {
/**
* Make sure IS_LEAP_MONTH participates in field resolution.
*/
@Test
public void TestResolution() {
Calendar cal = Calendar.getInstance(new ULocale("ko_KR@calendar=dangi"));
DateFormat fmt = DateFormat.getDateInstance(cal, DateFormat.DEFAULT);
@ -250,6 +251,7 @@ public class DangiTest extends CalendarTest {
/**
* Test the behavior of fields that are out of range.
*/
@Test
public void TestOutOfRange() {
int[] DATA = new int[] {
// Input Output
@ -288,6 +290,7 @@ public class DangiTest extends CalendarTest {
* Test the behavior of KoreanLunarCalendar.add(). The only real
* nastiness with roll is the MONTH field around leap months.
*/
@Test
public void TestAdd() {
int[][] tests = new int[][] {
// MONTHS ARE 1-BASED HERE
@ -313,6 +316,7 @@ public class DangiTest extends CalendarTest {
* Test the behavior of KoreanLunarCalendar.roll(). The only real
* nastiness with roll is the MONTH field around leap months.
*/
@Test
public void TestRoll() {
int[][] tests = new int[][] {
// MONTHS ARE 1-BASED HERE
@ -376,6 +380,7 @@ public class DangiTest extends CalendarTest {
return "" + year + "/" + (month + 1) + ((isLeapMonth != 0) ? "(leap)" : "") + "/" + day;
}
@Test
public void TestCoverage() {
// DangiCalendar()
// DangiCalendar(Date)
@ -398,6 +403,7 @@ public class DangiTest extends CalendarTest {
assertEquals("getType()", "dangi", type);
}
@Test
public void TestInitWithCurrentTime() {
// If the chinese calendar current millis isn't called, the default year is wrong.
// this test is assuming the 'year' is the current cycle

View file

@ -8,10 +8,17 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Iterator;
import java.util.List;
import org.junit.Test;
import org.junit.runner.RunWith;
import com.ibm.icu.dev.test.ModuleTest;
import com.ibm.icu.dev.test.ModuleTest.TestDataPair;
import com.ibm.icu.dev.test.TestDataModule;
import com.ibm.icu.dev.test.TestDataModule.DataMap;
import com.ibm.icu.dev.test.TestDataModule.TestData;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.dev.test.util.CalendarFieldsSet;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -19,46 +26,54 @@ import com.ibm.icu.util.Calendar;
import com.ibm.icu.util.TimeZone;
import com.ibm.icu.util.ULocale;
import junitparams.JUnitParamsRunner;
import junitparams.Parameters;
/**
* @author srl
* @author sgill
*
* analog of dadrcal.cpp
*
*/
public class DataDrivenCalendarTest extends ModuleTest {
@RunWith(JUnitParamsRunner.class)
public class DataDrivenCalendarTest extends TestFmwk {
public DataDrivenCalendarTest() {
super("com/ibm/icu/dev/data/testdata/", "calendar");
//super("com/ibm/icu/dev/data/testdata/", "calendar");
}
@SuppressWarnings("unused")
private List<TestDataPair> getTestData() throws Exception {
return ModuleTest.getTestData("com/ibm/icu/dev/data/testdata/", "calendar");
}
/* (non-Javadoc)
* @see com.ibm.icu.dev.test.ModuleTest#processModules()
*/
public void processModules() {
//String testName = t.getName().toString();
@Test
@Parameters(method="getTestData")
public void calendarTest(TestDataPair pair) {
TestData td = pair.td;
DataMap settings = pair.dm;
for (Iterator siter = t.getSettingsIterator(); siter.hasNext();) {
// Iterate through and get each of the test case to process
DataMap settings = (DataMap) siter.next();
String type = settings.getString("Type");
if(type.equals("convert_fwd")) {
testConvert(t, settings, true);
} else if(type.equals("convert_rev")) {
testConvert(t, settings, false);
} else if(type.equals("ops")) {
testOps(t, settings);
} else {
errln("Unknown type: " + type);
}
String type = settings.getString("Type");
if(type.equals("convert_fwd")) {
testConvert(td, settings, true);
} else if(type.equals("convert_rev")) {
testConvert(td, settings, false);
} else if(type.equals("ops")) {
testOps(td, settings);
} else {
errln("Unknown type: " + type);
}
}
void testConvert(String caseString,
CalendarFieldsSet fromSet, Calendar fromCalendar,
CalendarFieldsSet toSet, Calendar toCalendar, boolean forward) {
CalendarFieldsSet fromSet, Calendar fromCalendar,
CalendarFieldsSet toSet, Calendar toCalendar, boolean forward) {
String thisString = caseString+(forward ? "forward"
: "reverse")+" "+fromCalendar.getType()+"->"+toCalendar.getType()+" ";
@ -108,8 +123,6 @@ public class DataDrivenCalendarTest extends ModuleTest {
}
}
private void testConvert(TestDataModule.TestData testData, DataMap settings, boolean forward) {
Calendar toCalendar= null;
// build to calendar
@ -123,12 +136,12 @@ public class DataDrivenCalendarTest extends ModuleTest {
for (Iterator iter = testData.getDataIterator(); iter.hasNext();) {
++n;
DataMap currentCase = (DataMap) iter.next();
String caseString = "["+testData.getName()+"#"+n+" "+"]";
String locale = testSetting = currentCase.getString("locale");
String locale = testSetting = currentCase.getString("locale");
ULocale fromLoc = new ULocale(testSetting);
Calendar fromCalendar = Calendar.getInstance(fromLoc);
fromSet.clear();
toSet.clear();
@ -149,26 +162,26 @@ public class DataDrivenCalendarTest extends ModuleTest {
}
}
}
private static final String kADD = "add";
private static final String kROLL = "roll";
private static final String kMILLIS = "MILLIS=";
private void testOps(TestDataModule.TestData testData, DataMap settings) {
// Get 'from' time
CalendarFieldsSet fromSet = new CalendarFieldsSet(), toSet = new CalendarFieldsSet(), paramsSet = new CalendarFieldsSet(), diffSet = new CalendarFieldsSet();
// DateFormat fmt = new SimpleDateFormat("EEE MMM dd yyyy / YYYY'-W'ww-ee");
// DateFormat fmt = new SimpleDateFormat("EEE MMM dd yyyy / YYYY'-W'ww-ee");
// Start the processing
int n = 0;
long fromDate = 0;
long toDate = 0;
boolean useDate = false;
for (Iterator iter = testData.getDataIterator(); iter.hasNext();) {
++n;
DataMap currentCase = (DataMap) iter.next();
String caseString = "[case "+n+"]";
// build to calendar
// Headers { "locale","from","operation","params","to" }
@ -206,12 +219,12 @@ public class DataDrivenCalendarTest extends ModuleTest {
// #4 'to' info
param = "to";
String to = testSetting=currentCase.getString(param);
if(to.startsWith(kMILLIS)){
if(to.startsWith(kMILLIS)){
useDate = true;
toDate = Long.parseLong(to.substring(kMILLIS.length()));
}else{
toSet.parseFrom(testSetting, fromSet);
}
}
//toSet.parseFrom(testSetting, fromSet); // parse with inheritance.
// System.err.println("toSet: ["+testSetting+"] >> " + toSet);
@ -228,11 +241,11 @@ public class DataDrivenCalendarTest extends ModuleTest {
}else {
fromSet.setOnCalendar(fromCalendar);
}
// from calendar: 'starting date'
diffSet.clear();
// Is the calendar sane after being set?
if (!fromSet.matches(fromCalendar, diffSet)) {
String diffs = diffSet.diffFrom(fromSet);
@ -241,7 +254,7 @@ public class DataDrivenCalendarTest extends ModuleTest {
} else {
logln(" "+caseString+" SET SOURCE calendar match."); // verifies that the requested fields were set.
}
// to calendar - copy of from calendar
Calendar toCalendar = (Calendar)fromCalendar.clone();
@ -264,26 +277,26 @@ public class DataDrivenCalendarTest extends ModuleTest {
diffSet.clear();
// toset contains 'expected'
if(useDate) {
if(toCalendar.getTimeInMillis()==toDate) {
logln(caseString + " SUCCESS: got=expected="+toDate);
logln("PASS: "+caseString+" matched! ");
} else {
// Note: With JDK TimeZone implementation, tz offset on dates earlier than
// mid-1900 might be different from the TZDB. Following test cases are
// failing because of this.
if ((caseString.equals("[case 31]") || caseString.equals("[case 36]"))
&& TimeZone.getDefaultTimeZoneType() == TimeZone.TIMEZONE_JDK) {
logln(caseString + " FAIL(expected): got " +
toCalendar.getTimeInMillis() + " expected " +
toDate);
} else {
errln(caseString + " FAIL: got " +
if(toCalendar.getTimeInMillis()==toDate) {
logln(caseString + " SUCCESS: got=expected="+toDate);
logln("PASS: "+caseString+" matched! ");
} else {
// Note: With JDK TimeZone implementation, tz offset on dates earlier than
// mid-1900 might be different from the TZDB. Following test cases are
// failing because of this.
if ((caseString.equals("[case 31]") || caseString.equals("[case 36]"))
&& TimeZone.getDefaultTimeZoneType() == TimeZone.TIMEZONE_JDK) {
logln(caseString + " FAIL(expected): got " +
toCalendar.getTimeInMillis() + " expected " +
toDate);
} else {
errln(caseString + " FAIL: got " +
toCalendar.getTimeInMillis() + " expected " +
toDate);
}
}
}
}else if (!toSet.matches(toCalendar, diffSet)) {
String diffs = diffSet.diffFrom(toSet);
errln((String)"FAIL: "+caseString+" - , "+caseContentsString
@ -291,17 +304,7 @@ public class DataDrivenCalendarTest extends ModuleTest {
} else{
logln("PASS: "+caseString+" matched! ");
}
}
}
/**
* @param args
*/
public static void main(String[] args) throws Exception {
new DataDrivenCalendarTest().run(args);
}
}

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -21,12 +23,8 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>EthiopicCalendar</code> class.
*/
public class EthiopicTest extends CalendarTest
public class EthiopicTest extends CalendarTestFmwk
{
public static void main(String args[]) throws Exception {
new EthiopicTest().run(args);
}
/** Constants to save typing. */
public static final int MESKEREM = EthiopicCalendar.MESKEREM;
public static final int TEKEMT = EthiopicCalendar.TEKEMT;
@ -43,7 +41,8 @@ public class EthiopicTest extends CalendarTest
public static final int PAGUMEN = EthiopicCalendar.PAGUMEN;
/* DY[20050507] I don't know what this is for yet:
public void TestRoll() {
@Test
public void TestRoll() {
int[][] tests = new int[][] {
// input roll by output
// year month day field amount year month day
@ -115,6 +114,7 @@ public class EthiopicTest extends CalendarTest
/** A huge list of test cases to make sure that computeTime and computeFields
* work properly for a wide range of data in the civil calendar.
*/
@Test
public void TestCases()
{
final TestCase[] tests = {
@ -229,6 +229,7 @@ public class EthiopicTest extends CalendarTest
// basic check to see that we print out eras ok
// eventually should modify to use locale strings and formatter appropriate to coptic calendar
@Test
public void TestEraStart() {
SimpleDateFormat fmt = new SimpleDateFormat("EEE MMM dd, yyyy GG");
fmt.setCalendar(new EthiopicCalendar());
@ -253,6 +254,7 @@ public class EthiopicTest extends CalendarTest
assertEquals("Gregorian Date", "Tue Aug 28, 0007 AD", fmt.format(gc));
}
@Test
public void TestBasic() {
EthiopicCalendar cal = new EthiopicCalendar();
cal.clear();
@ -269,6 +271,7 @@ public class EthiopicTest extends CalendarTest
cal.get(DATE));
}
@Test
public void TestJD(){
int jd = EthiopicCalendar.EthiopicToJD(1567,8,9);
EthiopicCalendar cal = new EthiopicCalendar();
@ -286,6 +289,7 @@ public class EthiopicTest extends CalendarTest
/**
* Test limits of the Coptic calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(2007, Calendar.JANUARY, 1);
@ -295,6 +299,7 @@ public class EthiopicTest extends CalendarTest
}
@Test
public void TestCoverage() {
{
@ -420,6 +425,7 @@ public class EthiopicTest extends CalendarTest
return alemawiCalendar;
}
@Test
public void TestAddSet() {
class TestAddSetItem {
private int startYear;

View file

@ -10,6 +10,8 @@ import java.util.Date;
import java.util.Locale;
import java.util.MissingResourceException;
import org.junit.Test;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.util.Calendar;
@ -20,11 +22,7 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>HebrewCalendar</code> class.
*/
public class HebrewTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new HebrewTest().run(args);
}
public class HebrewTest extends CalendarTestFmwk {
// Constants to save typing.
public static final int TISHRI = HebrewCalendar.TISHRI;
public static final int HESHVAN = HebrewCalendar.HESHVAN;
@ -45,6 +43,7 @@ public class HebrewTest extends CalendarTest {
* The only real nastiness with roll is the MONTH field, since a year can
* have a variable number of months.
*/
@Test
public void TestRoll() {
int[][] tests = new int[][] {
// input roll by output
@ -89,6 +88,7 @@ public class HebrewTest extends CalendarTest {
* The only real nastiness with roll is the MONTH field, since a year can
* have a variable number of months.
*/
@Test
public void TestAdd() {
int[][] tests = new int[][] {
// input add by output
@ -126,6 +126,7 @@ public class HebrewTest extends CalendarTest {
* A huge list of test cases to make sure that computeTime and computeFields
* work properly for a wide range of data.
*/
@Test
public void TestCases() {
try{
final TestCase[] testCases = {
@ -232,6 +233,7 @@ public class HebrewTest extends CalendarTest {
* Problem reported by Armand Bendanan in which setting of the MONTH
* field in a Hebrew calendar causes the time fields to go negative.
*/
@Test
public void TestTimeFields() {
try{
HebrewCalendar calendar = new HebrewCalendar(5761, 0, 11, 12, 28, 15);
@ -251,6 +253,7 @@ public class HebrewTest extends CalendarTest {
* in which setting of the MONTH field in a Hebrew calendar to
* ELUL on non leap years causes the date to be set on TISHRI next year.
*/
@Test
public void TestElulMonth() {
try{
HebrewCalendar cal = new HebrewCalendar();
@ -284,6 +287,7 @@ public class HebrewTest extends CalendarTest {
* handling in the Hebrew calendar because of the pattern of leap
* years.
*/
@Test
public void TestMonthMovement() {
try{
HebrewCalendar cal = new HebrewCalendar();
@ -356,6 +360,7 @@ public class HebrewTest extends CalendarTest {
* Test handling of ADAR_1.
*/
/*
@Test
public void TestAdar1() {
HebrewCalendar cal = new HebrewCalendar();
cal.clear();
@ -375,6 +380,7 @@ public class HebrewTest extends CalendarTest {
/**
* With no fields set, the calendar should use default values.
*/
@Test
public void TestDefaultFieldValues() {
try{
HebrewCalendar cal = new HebrewCalendar();
@ -388,6 +394,7 @@ public class HebrewTest extends CalendarTest {
/**
* Test limits of the Hebrew calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(2007, Calendar.JANUARY, 1);
@ -396,6 +403,7 @@ public class HebrewTest extends CalendarTest {
doTheoreticalLimitsTest(hebrew, true);
}
@Test
public void TestCoverage() {
try{
{
@ -459,6 +467,8 @@ public class HebrewTest extends CalendarTest {
warnln("Could not load the locale data. "+ ex.getMessage());
}
}
@Test
public void Test1624() {
HebrewCalendar hc = new HebrewCalendar (5742, HebrewCalendar.AV, 22);
@ -500,6 +510,7 @@ public class HebrewTest extends CalendarTest {
// Test case for Ticket#10313. HebrewCalendar requires
// special handling for validating month value, because
// month Adar I is only available in leap years.
@Test
public void TestMonthValidation() {
HebrewCalendar cal = new HebrewCalendar();
cal.setLenient(false);

View file

@ -9,6 +9,9 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Before;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.util.Calendar;
@ -25,21 +28,21 @@ import com.ibm.icu.util.ULocale;
* Tests for the <code>Holiday</code> class.
*/
public class HolidayTest extends TestFmwk {
public static void main(String args[]) throws Exception {
new HolidayTest().run(args);
}
protected void init()throws Exception{
@Before
public void init() throws Exception {
if(cal==null){
cal = new GregorianCalendar(1, 0, 1);
longTimeAgo = cal.getTime();
now = new Date();
}
}
static Calendar cal;
static Date longTimeAgo;
static Date now;
static long awhile = 3600L * 24 * 28; // 28 days
private Calendar cal;
private Date longTimeAgo;
private Date now;
private static long awhile = 3600L * 24 * 28; // 28 days
@Test
public void TestAPI() {
{
// getHolidays
@ -221,6 +224,7 @@ public class HolidayTest extends TestFmwk {
// }
}
@Test
public void TestCoverage(){
Holiday[] h = { new EasterHoliday("Ram's Easter"),
new SimpleHoliday(2, 29, 0, "Leap year", 1900, 2100)};
@ -259,6 +263,7 @@ public class HolidayTest extends TestFmwk {
exerciseHoliday(h[1], Locale.getDefault());
}
@Test
public void TestEaster(){
// Verify that Easter is working. Should be April 20, 2014
final Holiday h = new EasterHoliday("Easter Sunday");
@ -278,6 +283,7 @@ public class HolidayTest extends TestFmwk {
}
}
@Test
public void TestIsOn() {
// jb 1901
SimpleHoliday sh = new SimpleHoliday(Calendar.AUGUST, 15, "Doug's Day", 1958, 2058);
@ -322,6 +328,7 @@ public class HolidayTest extends TestFmwk {
}
}
@Test
public void TestDisplayName() {
Holiday[] holidays = Holiday.getHolidays(ULocale.US);
for (int i = 0; i < holidays.length; ++i) {

View file

@ -12,6 +12,8 @@ import java.util.Date;
import java.util.Locale;
import java.util.Set;
import org.junit.Test;
import com.ibm.icu.impl.CalendarAstronomer;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.impl.ZoneMeta;
@ -31,12 +33,7 @@ import com.ibm.icu.util.ULocale;
/**
* @summary Tests of new functionality in IBMCalendar
*/
public class IBMCalendarTest extends CalendarTest {
public static void main(String[] args) throws Exception {
new IBMCalendarTest().run(args);
}
public class IBMCalendarTest extends CalendarTestFmwk {
/**
* Test weekend support in IBMCalendar.
*
@ -47,6 +44,7 @@ public class IBMCalendarTest extends CalendarTest {
* a Calendar in the given locale (using getInstance()) and call
* that Calendar's isWeekend() etc. methods.
*/
@Test
public void TestWeekend() {
SimpleDateFormat fmt = new SimpleDateFormat("EEE MMM dd yyyy G HH:mm:ss.SSS");
@ -203,6 +201,7 @@ public class IBMCalendarTest extends CalendarTest {
* Verify that BuddhistCalendar shifts years to Buddhist Era but otherwise
* behaves like GregorianCalendar.
*/
@Test
public void TestBuddhist() {
quasiGregorianTest(new BuddhistCalendar(),
new int[] {
@ -211,6 +210,7 @@ public class IBMCalendarTest extends CalendarTest {
});
}
@Test
public void TestBuddhistCoverage() {
{
// new BuddhistCalendar(ULocale)
@ -307,6 +307,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Test limits of the Buddhist calendar.
*/
@Test
public void TestBuddhistLimits() {
// Final parameter is either number of days, if > 0, or test
// duration in seconds, if < 0.
@ -320,6 +321,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Default calendar for Thai (Ticket#6302)
*/
@Test
public void TestThaiDefault() {
// Buddhist calendar is used as the default calendar for
// Thai locale
@ -334,6 +336,7 @@ public class IBMCalendarTest extends CalendarTest {
* Verify that TaiwanCalendar shifts years to Minguo Era but otherwise
* behaves like GregorianCalendar.
*/
@Test
public void TestTaiwan() {
quasiGregorianTest(new TaiwanCalendar(),
new int[] {
@ -347,6 +350,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Test limits of the Taiwan calendar.
*/
@Test
public void TestTaiwanLimits() {
// Final parameter is either number of days, if > 0, or test
// duration in seconds, if < 0.
@ -357,6 +361,7 @@ public class IBMCalendarTest extends CalendarTest {
doTheoreticalLimitsTest(taiwan, false);
}
@Test
public void TestTaiwanCoverage() {
{
// new TaiwanCalendar(ULocale)
@ -454,6 +459,7 @@ public class IBMCalendarTest extends CalendarTest {
* Verify that JapaneseCalendar shifts years to Japanese Eras but otherwise
* behaves like GregorianCalendar.
*/
@Test
public void TestJapanese() {
// First make sure this test works for GregorianCalendar
int[] control = {
@ -480,6 +486,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Test limits of the Gregorian calendar.
*/
@Test
public void TestGregorianLimits() {
// Final parameter is either number of days, if > 0, or test
// duration in seconds, if < 0.
@ -494,6 +501,7 @@ public class IBMCalendarTest extends CalendarTest {
* Test behavior of fieldDifference around leap years. Also test a large
* field difference to check binary search.
*/
@Test
public void TestLeapFieldDifference() {
Calendar cal = Calendar.getInstance();
cal.set(2004, Calendar.FEBRUARY, 29);
@ -534,6 +542,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Test ms_MY "Malay (Malaysia)" locale. Bug 1543.
*/
@Test
public void TestMalaysianInstance() {
Locale loc = new Locale("ms", "MY"); // Malay (Malaysia)
Calendar cal = Calendar.getInstance(loc);
@ -547,6 +556,7 @@ public class IBMCalendarTest extends CalendarTest {
* field <=> time mapping, since they affect the interpretation of
* the WEEK_OF_MONTH or WEEK_OF_YEAR fields.
*/
@Test
public void TestWeekShift() {
Calendar cal = new GregorianCalendar(
TimeZone.getTimeZone("America/Los_Angeles"),
@ -616,6 +626,7 @@ public class IBMCalendarTest extends CalendarTest {
* different day. The DST adjustments we use to keep the hour
* constant across DST changes can backfire and change the day.
*/
@Test
public void TestTimeZoneTransitionAdd() {
Locale locale = Locale.US; // could also be CHINA
SimpleDateFormat dateFormat =
@ -647,6 +658,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestJB1684() {
class TestData {
int year;
@ -791,6 +803,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Test the ZoneMeta API.
*/
@Test
public void TestZoneMeta() {
// Test index by country API
@ -849,6 +862,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestComparable() {
GregorianCalendar c0 = new GregorianCalendar();
GregorianCalendar c1 = new GregorianCalendar();
@ -871,6 +885,7 @@ public class IBMCalendarTest extends CalendarTest {
/**
* Miscellaneous tests to increase coverage.
*/
@Test
public void TestCoverage() {
// BuddhistCalendar
BuddhistCalendar bcal = new BuddhistCalendar();
@ -1007,6 +1022,7 @@ public class IBMCalendarTest extends CalendarTest {
}
// Tests for jb 4541
@Test
public void TestJB4541() {
ULocale loc = new ULocale("en_US");
@ -1053,6 +1069,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestTypes() {
String[] locs = {
"en_US_VALLEYGIRL",
@ -1108,6 +1125,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestISO8601() {
final ULocale[] TEST_LOCALES = {
new ULocale("en_US@calendar=iso8601"),
@ -1219,6 +1237,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestAmbiguousWallTimeAPIs() {
Calendar cal = Calendar.getInstance();
@ -1247,6 +1266,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestRepeatedWallTime() {
final Object[][] TESTDATA = {
// Time zone Input wall time WALLTIME_LAST in GMT WALLTIME_FIRST in GMT
@ -1311,6 +1331,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestSkippedWallTime() {
final Object[][] TESTDATA = {
// Time zone Input wall time Valid wall time?
@ -1447,6 +1468,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestFieldDifference() {
class TFDItem {
public String tzname;
@ -1552,6 +1574,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestAddRollEra0AndEraBounds() {
final String[] localeIDs = {
// calendars with non-modern era 0 that goes backwards, max era == 1
@ -1720,6 +1743,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestWeekData() {
// Each line contains two locales using the same set of week rule data.
final String LOCALE_PAIRS[] = {
@ -1760,6 +1784,7 @@ public class IBMCalendarTest extends CalendarTest {
}
}
@Test
public void TestAddAcrossZoneTransition() {
class TestData {
String zone;

View file

@ -9,6 +9,8 @@ package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -21,11 +23,8 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>IndianCalendar</code> class.
*/
public class IndianTest extends CalendarTest
public class IndianTest extends CalendarTestFmwk
{
public static void main(String args[]) throws Exception {
new IndianTest().run(args);
}
// Months in indian calendar are 0-based. Here taking 1-based names:
public static final int CHAITRA = IndianCalendar.CHAITRA + 1;
public static final int VAISAKHA = IndianCalendar.VAISAKHA + 1;
@ -47,6 +46,7 @@ public class IndianTest extends CalendarTest
/** A huge list of test cases to make sure that computeTime and computeFields
* work properly for a wide range of data in the Indian civil calendar.
*/
@Test
public void TestCases()
{
final TestCase[] tests = {
@ -104,6 +104,7 @@ public class IndianTest extends CalendarTest
doTestCases(tests, testCalendar);
}
@Test
public void TestBasic() {
IndianCalendar cal = new IndianCalendar();
cal.clear();
@ -120,8 +121,8 @@ public class IndianTest extends CalendarTest
cal.get(DATE));
}
@Test
public void TestCoverage() {
{
// new IndianCalendar(TimeZone)
IndianCalendar cal = new IndianCalendar(TimeZone.getDefault());
@ -210,6 +211,7 @@ public class IndianTest extends CalendarTest
}
}
@Test
public void TestYear() {
// Gregorian Calendar
Calendar gCal= new GregorianCalendar();
@ -234,6 +236,7 @@ public class IndianTest extends CalendarTest
/**
* Test limits of the Indian calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(2007, Calendar.JANUARY, 1);
@ -247,6 +250,7 @@ public class IndianTest extends CalendarTest
* -- see ticket 8419 -- http://bugs.icu-project.org/trac/ticket/8419
* Problem with months out of range 0-11
*/
@Test
public void TestYearEdge() {
// Display dates in ISO 8601 format.
DateFormat fmt = new SimpleDateFormat("YYYY-MM-dd", ULocale.US);

View file

@ -14,6 +14,9 @@ import java.io.ObjectOutputStream;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -27,11 +30,7 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>IslamicCalendar</code> class.
*/
public class IslamicTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new IslamicTest().run(args);
}
public class IslamicTest extends CalendarTestFmwk {
/** Constants to save typing. */
public static final int MUHARRAM = IslamicCalendar.MUHARRAM;
public static final int SAFAR = IslamicCalendar.SAFAR;
@ -46,6 +45,7 @@ public class IslamicTest extends CalendarTest {
public static final int QIDAH = IslamicCalendar.DHU_AL_QIDAH;
public static final int HIJJAH = IslamicCalendar.DHU_AL_HIJJAH;
@Test
public void TestRoll() {
int[][] tests = new int[][] {
// input roll by output
@ -76,6 +76,7 @@ public class IslamicTest extends CalendarTest {
* A huge list of test cases to make sure that computeTime and computeFields
* work properly for a wide range of data in the civil calendar.
*/
@Test
public void TestCivilCases()
{
final TestCase[] tests = {
@ -128,6 +129,7 @@ public class IslamicTest extends CalendarTest {
doTestCases(tests, civilCalendar);
}
@Test
public void TestBasic() {
IslamicCalendar cal = newCivil();
cal.clear();
@ -147,6 +149,7 @@ public class IslamicTest extends CalendarTest {
/**
* Test limits of the Islamic calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(2007, Calendar.JANUARY, 1);
@ -160,11 +163,12 @@ public class IslamicTest extends CalendarTest {
IslamicCalendar islamic2 = new IslamicCalendar();
islamic2.setCalculationType(CalculationType.ISLAMIC);
int testTime = getInclusion() <= 5 ? 20000 : 800000;
int testTime = TestFmwk.getExhaustiveness() <= 5 ? 20000 : 800000;
doLimitsTest(islamic2, null, cal.getTime(), testTime);
doTheoreticalLimitsTest(islamic2, true);
}
@Test
public void Test7427() {
// Test the add month in a leap year problem as reported in ticket #7427
IslamicCalendar cal = new IslamicCalendar();
@ -178,6 +182,8 @@ public class IslamicTest extends CalendarTest {
cal.get(IslamicCalendar.MONTH) + " Year:" + cal.get(IslamicCalendar.YEAR));
}
}
@Test
public void TestCoverage() {
{
// new IslamicCalendar(TimeZone)
@ -325,7 +331,8 @@ public class IslamicTest extends CalendarTest {
errln("Expected calendar to be type " + expectType + " but instead it is " + theType);
}
}
@Test
public void Test8822() {
verifyType(newIslamic(),"islamic");
verifyType(newCivil(),"islamic-civil");
@ -360,7 +367,7 @@ public class IslamicTest extends CalendarTest {
}
}
@Test
public void TestIslamicUmAlQura() {
class GregoUmmAlQuraMap {
@ -894,6 +901,7 @@ public class IslamicTest extends CalendarTest {
}
}
@Test
public void TestSerialization8449() {
try {
ByteArrayOutputStream icuStream = new ByteArrayOutputStream();
@ -955,6 +963,7 @@ public class IslamicTest extends CalendarTest {
}
}
@Test
public void TestIslamicTabularDates() {
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
Date date = null;
@ -985,6 +994,7 @@ public class IslamicTest extends CalendarTest {
}
@Test
public void TestCreationByLocale() {
ULocale islamicLoc = new ULocale("ar_SA@calendar=islamic-umalqura");
IslamicCalendar is_cal = new IslamicCalendar(islamicLoc);

View file

@ -11,6 +11,8 @@ import java.text.ParsePosition;
import java.util.Date;
import java.util.Locale;
import org.junit.Test;
import com.ibm.icu.impl.LocaleUtility;
import com.ibm.icu.text.DateFormat;
import com.ibm.icu.text.SimpleDateFormat;
@ -22,126 +24,125 @@ import com.ibm.icu.util.ULocale;
/**
* Tests for the <code>JapaneseCalendar</code> class.
*/
public class JapaneseTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new JapaneseTest().run(args);
}
public class JapaneseTest extends CalendarTestFmwk {
@Test
public void TestCoverage() {
{
// new JapaneseCalendar(TimeZone)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone");
{
// new JapaneseCalendar(TimeZone)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone");
}
}
}
{
// new JapaneseCalendar(ULocale)
JapaneseCalendar cal = new JapaneseCalendar(ULocale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with ULocale");
{
// new JapaneseCalendar(ULocale)
JapaneseCalendar cal = new JapaneseCalendar(ULocale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with ULocale");
}
}
}
{
// new JapaneseCalendar(TimeZone, ULocale)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault(), ULocale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone ULocale");
{
// new JapaneseCalendar(TimeZone, ULocale)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault(), ULocale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone ULocale");
}
}
}
{
// new JapaneseCalendar(Locale)
JapaneseCalendar cal = new JapaneseCalendar(Locale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with Locale");
{
// new JapaneseCalendar(Locale)
JapaneseCalendar cal = new JapaneseCalendar(Locale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with Locale");
}
}
}
{
// new JapaneseCalendar(TimeZone, Locale)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault(), Locale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone Locale");
{
// new JapaneseCalendar(TimeZone, Locale)
JapaneseCalendar cal = new JapaneseCalendar(TimeZone.getDefault(), Locale.getDefault());
if(cal == null){
errln("could not create JapaneseCalendar with TimeZone Locale");
}
}
}
{
// new JapaneseCalendar(Date)
JapaneseCalendar cal = new JapaneseCalendar(new Date());
if(cal == null){
errln("could not create JapaneseCalendar with Date");
{
// new JapaneseCalendar(Date)
JapaneseCalendar cal = new JapaneseCalendar(new Date());
if(cal == null){
errln("could not create JapaneseCalendar with Date");
}
}
}
{
// new JapaneseCalendar(int year, int month, int date)
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1);
if(cal == null){
errln("could not create JapaneseCalendar with year,month,date");
{
// new JapaneseCalendar(int year, int month, int date)
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1);
if(cal == null){
errln("could not create JapaneseCalendar with year,month,date");
}
}
}
{
// new JapaneseCalendar(int era, int year, int month, int date)
JapaneseCalendar cal = new JapaneseCalendar(JapaneseCalendar.MEIJI, 43, Calendar.JANUARY, 1);
if(cal == null){
errln("could not create JapaneseCalendar with era,year,month,date");
{
// new JapaneseCalendar(int era, int year, int month, int date)
JapaneseCalendar cal = new JapaneseCalendar(JapaneseCalendar.MEIJI, 43, Calendar.JANUARY, 1);
if(cal == null){
errln("could not create JapaneseCalendar with era,year,month,date");
}
}
}
{
// new JapaneseCalendar(int year, int month, int date, int hour, int minute, int second)
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1, 1, 1, 1);
if(cal == null){
errln("could not create JapaneseCalendar with year,month,date,hour,min,second");
{
// new JapaneseCalendar(int year, int month, int date, int hour, int minute, int second)
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1, 1, 1, 1);
if(cal == null){
errln("could not create JapaneseCalendar with year,month,date,hour,min,second");
}
}
}
{
// limits
JapaneseCalendar cal = new JapaneseCalendar();
DateFormat fmt = cal.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.ENGLISH);
{
// limits
JapaneseCalendar cal = new JapaneseCalendar();
DateFormat fmt = cal.getDateTimeFormat(DateFormat.FULL, DateFormat.FULL, Locale.ENGLISH);
cal.set(Calendar.ERA, JapaneseCalendar.MEIJI);
logln("date: " + cal.getTime());
logln("min era: " + cal.getMinimum(Calendar.ERA));
logln("min year: " + cal.getMinimum(Calendar.YEAR));
cal.set(Calendar.YEAR, cal.getActualMaximum(Calendar.YEAR));
logln("date: " + fmt.format(cal.getTime()));
cal.add(Calendar.YEAR, 1);
logln("date: " + fmt.format(cal.getTime()));
}
cal.set(Calendar.ERA, JapaneseCalendar.MEIJI);
logln("date: " + cal.getTime());
logln("min era: " + cal.getMinimum(Calendar.ERA));
logln("min year: " + cal.getMinimum(Calendar.YEAR));
cal.set(Calendar.YEAR, cal.getActualMaximum(Calendar.YEAR));
logln("date: " + fmt.format(cal.getTime()));
cal.add(Calendar.YEAR, 1);
logln("date: " + fmt.format(cal.getTime()));
}
{
// data
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1);
Date time = cal.getTime();
{
// data
JapaneseCalendar cal = new JapaneseCalendar(1868, Calendar.JANUARY, 1);
Date time = cal.getTime();
String[] calendarLocales = {
"en", "ja_JP"
};
String[] calendarLocales = {
"en", "ja_JP"
};
String[] formatLocales = {
"en", "ja"
};
for (int i = 0; i < calendarLocales.length; ++i) {
String calLocName = calendarLocales[i];
Locale calLocale = LocaleUtility.getLocaleFromName(calLocName);
cal = new JapaneseCalendar(calLocale);
String[] formatLocales = {
"en", "ja"
};
for (int i = 0; i < calendarLocales.length; ++i) {
String calLocName = calendarLocales[i];
Locale calLocale = LocaleUtility.getLocaleFromName(calLocName);
cal = new JapaneseCalendar(calLocale);
for (int j = 0; j < formatLocales.length; ++j) {
String locName = formatLocales[j];
Locale formatLocale = LocaleUtility.getLocaleFromName(locName);
DateFormat format = DateFormat.getDateTimeInstance(cal, DateFormat.FULL, DateFormat.FULL, formatLocale);
logln(calLocName + "/" + locName + " --> " + format.format(time));
for (int j = 0; j < formatLocales.length; ++j) {
String locName = formatLocales[j];
Locale formatLocale = LocaleUtility.getLocaleFromName(locName);
DateFormat format = DateFormat.getDateTimeInstance(cal, DateFormat.FULL, DateFormat.FULL, formatLocale);
logln(calLocName + "/" + locName + " --> " + format.format(time));
}
}
}
}
}
@Test
public void Test3860()
{
ULocale loc = new ULocale("ja_JP@calendar=japanese");
@ -200,6 +201,7 @@ public class JapaneseTest extends CalendarTest {
}
}
@Test
public void Test5345parse() {
// Test parse with incomplete information
DateFormat fmt2= DateFormat.getDateInstance(); //DateFormat.LONG, Locale.US);
@ -271,7 +273,8 @@ public class JapaneseTest extends CalendarTest {
}
}
}
@Test
public void Test5345calendar() {
logln("** testIncompleteCalendar()");
// Test calendar with incomplete information
@ -328,7 +331,7 @@ public class JapaneseTest extends CalendarTest {
}
@Test
public void TestJapaneseYear3282() {
Calendar c = Calendar.getInstance(ULocale.ENGLISH);
c.set(2003,Calendar.SEPTEMBER,25);
@ -363,6 +366,7 @@ public class JapaneseTest extends CalendarTest {
/**
* Test limits of the Japanese calendar
*/
@Test
public void TestLimits() {
Calendar cal = Calendar.getInstance();
cal.set(1988, Calendar.DECEMBER, 1);

View file

@ -7,19 +7,17 @@
package com.ibm.icu.dev.test.calendar;
import java.util.Date;
import org.junit.Test;
import com.ibm.icu.util.Calendar;
import com.ibm.icu.util.PersianCalendar;
import com.ibm.icu.util.ULocale;
public class PersianTest extends CalendarTest {
public static void main(String args[]) throws Exception {
new PersianTest().run(args);
}
public class PersianTest extends CalendarTestFmwk {
/**
* Test basic mapping to and from Gregorian.
*/
@Test
public void TestMapping() {
final int[] DATA = {
// (Note: months are 1-based)

View file

@ -1,41 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 1996-2012, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.calendar;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other calendar tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"AstroTest",
"CalendarRegression",
"CompatibilityTest",
"CopticTest",
"EthiopicTest",
"HebrewTest",
"IBMCalendarTest",
"IslamicTest",
"JapaneseTest",
"ChineseTest",
"IndianTest",
"PersianTest",
"HolidayTest",
"DataDrivenCalendarTest"
},
"Calendars, Holiday, and Astro tests"
);
}
public static final String CLASS_TARGET_NAME = "Calendar";
}

View file

@ -191,20 +191,21 @@ public class TestCase {
for (int i=0; i < c.getFieldCount(); i++) {
if (isSet(i) && get(i) != c.get(i)) {
StringBuffer buf = new StringBuffer();
buf.append("Fail: " + CalendarTest.fieldName(i) + " = " + c.get(i) +
buf.append("Fail: " + CalendarTestFmwk.fieldName(i) + " = " + c.get(i) +
", expected " + get(i));
for (int j=0; j<c.getFieldCount(); ++j) {
if (isSet(j)) {
if (get(j) == c.get(j)) {
buf.append("\n ok: " + CalendarTest.fieldName(j) + " = " +
buf.append("\n ok: " + CalendarTestFmwk.fieldName(j) + " = " +
c.get(j));
} else {
buf.append("\n fail: " + CalendarTest.fieldName(j) + " = " +
buf.append("\n fail: " + CalendarTestFmwk.fieldName(j) + " = " +
c.get(j) + ", expected " + get(j));
}
}
}
log.errln(buf.toString());
// TODO(junit): blanked out TestLog
//log.errln(buf.toString());
return false;
}
}

View file

@ -18,6 +18,7 @@ import java.util.TreeMap;
import javax.xml.parsers.DocumentBuilder;
import javax.xml.parsers.DocumentBuilderFactory;
import org.junit.Test;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.NamedNodeMap;
@ -37,26 +38,10 @@ import com.ibm.icu.text.CharsetMatch;
*/
public class TestCharsetDetector extends TestFmwk
{
/**
* Constructor
*/
public TestCharsetDetector()
{
}
public static void main(String[] args) {
try
{
TestCharsetDetector test = new TestCharsetDetector();
test.run(args);
}
catch (Exception e)
{
e.printStackTrace();
}
}
private void CheckAssert(boolean exp) {
if (exp == false) {
String msg;
@ -91,6 +76,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestConstruction() {
int i;
CharsetDetector det = new CharsetDetector();
@ -136,6 +122,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestInputFilter() throws Exception
{
String s = "<a> <lot> <of> <English> <inside> <the> <markup> Un tr\u00E8s petit peu de Fran\u00E7ais. <to> <confuse> <the> <detector>";
@ -164,6 +151,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestUTF8() throws Exception {
String s = "This is a string with some non-ascii characters that will " +
@ -187,6 +175,7 @@ public class TestCharsetDetector extends TestFmwk
det.setDeclaredEncoding("UTF-8"); // Jitterbug 4451, for coverage
}
@Test
public void TestUTF16() throws Exception
{
String source =
@ -219,6 +208,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestC1Bytes() throws Exception
{
String sISO =
@ -249,6 +239,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestShortInput() {
// Test that detection with very short byte strings does not crash and burn.
// The shortest input that should produce positive detection result is two bytes,
@ -273,6 +264,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestBufferOverflow()
{
byte testStrings[][] = {
@ -324,6 +316,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestDetection()
{
//
@ -491,6 +484,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestJapanese() throws Exception {
String s = "\u3000\u3001\u3002\u3003\u3005\u3006\u3007\u3008\u3009\u300A\u300B\u300C\u300D\u300E\u300F\u3010\u3011\u3012\u3013\u3014" +
"\u3015\u301C\u3041\u3042\u3043\u3044\u3045\u3046\u3047\u3048\u3049\u304A\u304B\u304C\u304D\u304E\u304F\u3050\u3051\u3052" +
@ -524,6 +518,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestArabic() throws Exception {
String s = "\u0648\u0636\u0639\u062A \u0648\u0646\u0641\u0630\u062A \u0628\u0631\u0627" +
"\u0645\u062C \u062A\u0623\u0645\u064A\u0646 \u0639\u062F\u064A\u062F\u0629 \u0641\u064A " +
@ -643,6 +638,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestHebrew() throws Exception {
String s = "\u05D4\u05E4\u05E8\u05E7\u05DC\u05D9\u05D8 \u05D4\u05E6\u05D1\u05D0\u05D9 \u05D4" +
"\u05E8\u05D0\u05E9\u05D9, \u05EA\u05EA \u05D0\u05DC\u05D5\u05E3 \u05D0\u05D1\u05D9" +
@ -745,6 +741,7 @@ public class TestCharsetDetector extends TestFmwk
/*
* Test the method int match(CharsetDetector det) in CharsetRecog_UTF_16_LE
*/
@Test
public void TestCharsetRecog_UTF_16_LE_Match() {
byte[] in = { Byte.MIN_VALUE, Byte.MIN_VALUE, Byte.MIN_VALUE, Byte.MIN_VALUE };
CharsetDetector cd = new CharsetDetector();
@ -760,7 +757,8 @@ public class TestCharsetDetector extends TestFmwk
//
// Bug #8309, test case submitted with original bug report.
//
public void TestFreshDetectorEachTime() throws Exception
@Test
public void TestFreshDetectorEachTime() throws Exception
{
CharsetDetector detector1 = new CharsetDetector();
byte[] data1 = createData1();
@ -776,7 +774,8 @@ public class TestCharsetDetector extends TestFmwk
assertEquals("Expected ISO-8859-1, even though that isn't strictly correct", "ISO-8859-1", match2.getName());
}
public void TestReusingDetector() throws Exception
@Test
public void TestReusingDetector() throws Exception
{
CharsetDetector detector = new CharsetDetector();
@ -1124,6 +1123,7 @@ public class TestCharsetDetector extends TestFmwk
//
@Test
public void TestBug9267() {
// Test a long input of Lam Alef characters for CharsetRecog_IBM420_ar.
// Bug 9267 was an array out of bounds problem in the unshaping code for these.
@ -1137,6 +1137,7 @@ public class TestCharsetDetector extends TestFmwk
det.detect();
}
@Test
public void TestBug6954 () throws Exception {
// Ticket 6954 - trouble with the haveC1Bytes flag that is used to distinguish between
// similar Windows and non-Windows SBCS encodings. State was kept in the shared
@ -1171,6 +1172,7 @@ public class TestCharsetDetector extends TestFmwk
assertEquals("Wrong charset name after running a second charset detector", "windows-1252", name1);
}
@Test
public void TestBug6889() {
// Verify that CharsetDetector.detectAll() does not return the same encoding multiple times.
String text =
@ -1195,6 +1197,7 @@ public class TestCharsetDetector extends TestFmwk
}
}
@Test
public void TestMultithreaded() {
String s = "This is some random plain text to run charset detection on.";
final byte [] bytes;

View file

@ -1,29 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 1996-2005, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.cldr;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all collation and search tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(
new String[] {
"TestCLDRVsICU",
},
"All Cldr Vs ICU Tests"
);
}
public static final String CLASS_TARGET_NAME = "Cldr";
}

View file

@ -29,6 +29,8 @@ import java.util.regex.Pattern;
import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;
import org.junit.Ignore;
import org.junit.Test;
import org.xml.sax.Attributes;
import org.xml.sax.SAXException;
import org.xml.sax.helpers.DefaultHandler;
@ -103,12 +105,11 @@ public class TestCLDRVsICU extends TestFmwk {
return temp;
}
public static void main(String[] args) throws Exception {
new TestCLDRVsICU().run(args);
}
Set allLocales = new TreeSet();
// TODO(junit): seems to be failing with missing locales - maybe rewrite as parameterized
@Ignore
@Test
public void TestFiles() throws SAXException, IOException {
// only get ICU's locales
Set s = new TreeSet();
@ -142,7 +143,7 @@ public class TestCLDRVsICU extends TestFmwk {
return result;
}
public void _test(String localeName) throws SAXException, IOException {
private void _test(String localeName) throws SAXException, IOException {
// uLocale = new ULocale(localeName);
// oLocale = uLocale.toLocale();

View file

@ -6,14 +6,12 @@
*/
package com.ibm.icu.dev.test.compression;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.UnicodeDecompressor;
public class DecompressionTest extends TestFmwk {
public static void main(String[] args) throws Exception {
new DecompressionTest().run(args);
}
/** Print out a segment of a character array, if in verbose mode */
private void log(char [] chars, int start, int count) {
log("|");
@ -73,6 +71,7 @@ public class DecompressionTest extends TestFmwk {
}
@Test
public void TestDecompression() throws Exception {
String result;
@ -123,6 +122,7 @@ public class DecompressionTest extends TestFmwk {
/* Testing the method
* public int decompress(***
*/
@Test
public void TestDecompress(){
char[] charBufferBlank = {};
char[] charBuffer1 = {'a'};

View file

@ -6,16 +6,15 @@
*/
package com.ibm.icu.dev.test.compression;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.UnicodeCompressor;
import com.ibm.icu.text.UnicodeDecompressor;
public class ExhaustiveTest extends TestFmwk {
public static void main(String args[]) throws Exception {
new ExhaustiveTest().run(args);
}
/** Test simple compress/decompress API, returning # of errors */
@Test
public void testSimple() throws Exception {
for(int i = 0; i < fTestCases.length; i++) {
simpleTest(fTestCases[i]);
@ -37,6 +36,7 @@ public class ExhaustiveTest extends TestFmwk {
}
/** Test iterative compress/decompress API, returning # of errors */
@Test
public void testIterative() throws Exception {
for(int i = 0; i < fTestCases.length; i++) {
myTest(fTestCases[i].toCharArray(), fTestCases[i].length());
@ -74,6 +74,7 @@ public class ExhaustiveTest extends TestFmwk {
}
/** Test iterative compress/decompress API */
@Test
public void testMultipass() throws Exception {
for(int i = 0; i < fTestCases.length; i++) {
myMultipassTest(fTestCases[i].toCharArray(), fTestCases[i].length());

View file

@ -1,27 +0,0 @@
/*
*******************************************************************************
* Copyright (C) 1996-2004, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*/
package com.ibm.icu.dev.test.compression;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) throws Exception {
new TestAll().run(args);
}
public TestAll() {
super(new String[] {
"DecompressionTest",
"ExhaustiveTest",
});
}
public static final String CLASS_TARGET_NAME = "Compression";
}

View file

@ -12,19 +12,13 @@ package com.ibm.icu.dev.test.duration;
import java.io.StringReader;
import java.io.StringWriter;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.impl.XMLRecordReader;
import com.ibm.icu.impl.duration.impl.XMLRecordWriter;
public class DataReadWriteTest extends TestFmwk {
/**
* Invoke the tests.
*/
public static void main(String[] args) {
new DataReadWriteTest().run(args);
}
// strip line ends and trailing spaces
private String normalize(String str) {
StringBuffer sb = new StringBuffer();
@ -44,6 +38,7 @@ public class DataReadWriteTest extends TestFmwk {
return sb.toString();
}
@Test
public void testOpenClose() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);
@ -59,6 +54,7 @@ public class DataReadWriteTest extends TestFmwk {
assertTrue(null, xrr.close());
}
@Test
public void testBool() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);
@ -74,6 +70,7 @@ public class DataReadWriteTest extends TestFmwk {
assertFalse(null, xrr.bool("y"));
}
@Test
public void testBoolArray() {
boolean[][] datas = {
{},
@ -113,6 +110,7 @@ public class DataReadWriteTest extends TestFmwk {
}
}
@Test
public void testCharacter() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);
@ -128,6 +126,7 @@ public class DataReadWriteTest extends TestFmwk {
assertEquals(null, 'b', xrr.character("y"));
}
@Test
public void testCharacterArray() {
char[][] datas = {
{},
@ -167,6 +166,7 @@ public class DataReadWriteTest extends TestFmwk {
}
}
@Test
public void testNamedIndex() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);
@ -184,6 +184,7 @@ public class DataReadWriteTest extends TestFmwk {
assertEquals(null, 1, xrr.namedIndex("y", names));
}
@Test
public void testNamedIndexArray() {
String[] names = { "zero", "one" };
byte[][] datas = {
@ -224,6 +225,7 @@ public class DataReadWriteTest extends TestFmwk {
}
}
@Test
public void testString() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);
@ -243,6 +245,7 @@ public class DataReadWriteTest extends TestFmwk {
assertEquals("\n'" + res + "' == \n'" + s1 + "'", s1, res);
}
@Test
public void testStringArray() {
String s1 = "";
String s2 = " ";
@ -299,6 +302,7 @@ public class DataReadWriteTest extends TestFmwk {
}
}
@Test
public void testStringTable() {
String s1 = "";
String s2 = " ";
@ -333,6 +337,7 @@ public class DataReadWriteTest extends TestFmwk {
assertEquals("'" + str + "'", target, normalize(str));
}
@Test
public void testOmittedFields() {
StringWriter sw = new StringWriter();
XMLRecordWriter xrw = new XMLRecordWriter(sw);

View file

@ -17,6 +17,8 @@ import javax.xml.datatype.DatatypeConstants;
import javax.xml.datatype.DatatypeConstants.Field;
import javax.xml.datatype.Duration;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.text.DurationFormat;
import com.ibm.icu.util.Calendar;
@ -162,17 +164,10 @@ public class ICUDurationTest extends TestFmwk {
public ICUDurationTest() {
}
/**
* @param args
*/
public static void main(String[] args) {
new ICUDurationTest().run(args);
}
/**
* Basic test
*/
@Test
public void TestBasics() {
DurationFormat df;
String expect;
@ -214,6 +209,7 @@ public class ICUDurationTest extends TestFmwk {
}
}
@Test
public void TestSimpleXMLDuration() {
Duration d;
DurationFormat df;
@ -269,6 +265,7 @@ public class ICUDurationTest extends TestFmwk {
}
}
@Test
public void TestXMLDuration() {
final class TestCase {
final String localeString;
@ -324,6 +321,7 @@ public class ICUDurationTest extends TestFmwk {
}
@Test
public void TestBadObjectError() {
Runtime r = Runtime.getRuntime();
DurationFormat df = DurationFormat.getInstance(new ULocale("en"));
@ -343,6 +341,7 @@ public class ICUDurationTest extends TestFmwk {
}
}
@Test
public void TestBadLocaleError() {
try {
DurationFormat df = DurationFormat.getInstance(new ULocale("und"));
@ -355,6 +354,7 @@ public class ICUDurationTest extends TestFmwk {
}
}
@Test
public void TestResourceWithCalendar() {
DurationFormat df = DurationFormat.getInstance(new ULocale("th@calendar=buddhist"));
// should pass, but return a default formatter for th.
@ -366,6 +366,7 @@ public class ICUDurationTest extends TestFmwk {
/* Tests the class
* DurationFormat
*/
@Test
public void TestDurationFormat(){
@SuppressWarnings("serial")
class TestDurationFormat extends DurationFormat {
@ -387,6 +388,7 @@ public class ICUDurationTest extends TestFmwk {
} catch(Exception e){}
}
@Test
public void TestFromNowTo() {
class TestCase {
ULocale locale;

View file

@ -18,6 +18,8 @@ import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.BasicPeriodFormatterService;
import com.ibm.icu.impl.duration.Period;
@ -33,7 +35,7 @@ import com.ibm.icu.impl.duration.impl.DataRecord.EUnitVariant;
/**
* Test cases for en
*/
public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
public abstract class LanguageTestFmwk extends TestFmwk implements TimeUnitConstants {
private static final TimeUnit[] units = {
TimeUnit.YEAR, TimeUnit.MONTH, TimeUnit.WEEK, TimeUnit.DAY, TimeUnit.HOUR,
@ -75,7 +77,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
TestData data = (TestData) datacache.get(locale);
if (data == null) {
try {
InputStream is = LanguageTestRoot.class
InputStream is = LanguageTestFmwk.class
.getResourceAsStream("testdata/testdata_" + locale
+ ".txt");
// debug
@ -97,11 +99,11 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
return data;
}
public LanguageTestRoot(String locale, boolean ignore) {
public LanguageTestFmwk(String locale, boolean ignore) {
this(getTestData(locale), locale);
}
public LanguageTestRoot(TestData data, String locale) {
private LanguageTestFmwk(TestData data, String locale) {
if (data == null) {
data = DefaultData.getInstance();
}
@ -109,44 +111,44 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
this.locale = locale;
}
public static void writeData(PrintWriter pw, String locale)
throws Exception {
LanguageTestRoot test = new LanguageTestRoot(DefaultData.getInstance(),
locale);
test.writeData(pw);
}
// public static void writeData(PrintWriter pw, String locale)
// throws Exception {
// LanguageTestRoot test = new LanguageTestRoot(DefaultData.getInstance(),
// locale);
// test.writeData(pw);
// }
private void writeData(PrintWriter writer) throws Exception {
/*
pw = writer;
setUp();
testFullPluralizedForms();
tearDown();
setUp();
testMediumForms();
tearDown();
setUp();
testShortForms();
tearDown();
setUp();
testCustomMinutes();
tearDown();
setUp();
testLimitedUnits();
tearDown();
setUp();
testHalfUnits();
tearDown();
setUp();
testFractionalUnits();
tearDown();
setUp();
testMultipleUnits();
tearDown();
pw = null;
writer.flush();
*/
}
// private void writeData(PrintWriter writer) throws Exception {
///*
// pw = writer;
// setUp();
// testFullPluralizedForms();
// tearDown();
// setUp();
// testMediumForms();
// tearDown();
// setUp();
// testShortForms();
// tearDown();
// setUp();
// testCustomMinutes();
// tearDown();
// setUp();
// testLimitedUnits();
// tearDown();
// setUp();
// testHalfUnits();
// tearDown();
// setUp();
// testFractionalUnits();
// tearDown();
// setUp();
// testMultipleUnits();
// tearDown();
// pw = null;
// writer.flush();
//*/
// }
protected void xAssertEquals(String msg, String[] expected, int n,
String actual) {
@ -226,6 +228,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
pbFactory = pfs.newPeriodBuilderFactory().setLocale(locale);
}
@Test
public void testFullPluralizedForms() throws Exception {
setUp();
int[] counts = data.getFullPluralizedFormCounts();
@ -255,6 +258,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testMediumForms() throws Exception {
setUp();
String[] targets = data.getMediumFormTargets();
@ -276,6 +280,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testShortForms() throws Exception {
setUp();
String[] targets = data.getShortFormTargets();
@ -297,6 +302,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testCustomMinutes() throws Exception {
setUp();
String[] targets = data.getCustomMinuteTargets();
@ -319,6 +325,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testLimitedUnits() throws Exception {
setUp();
String[] targets = data.getLimitedUnitTargets();
@ -409,6 +416,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testHalfUnits() throws Exception {
setUp();
int[] counts = data.getHalfUnitCounts();
@ -439,6 +447,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testFractionalUnits() throws Exception {
setUp();
float[] counts = data.getFractionalUnitCounts();
@ -469,6 +478,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
}
@Test
public void testMultipleUnits() throws Exception {
setUp();
String[] targets = data.getMultipleUnitTargets();
@ -511,7 +521,7 @@ public class LanguageTestRoot extends TestFmwk implements TimeUnitConstants {
}
class FileTestData extends LanguageTestRoot.TestData {
class FileTestData extends LanguageTestFmwk.TestData {
private int[] fullPluralizedFormCounts;
private String[] fullPluralizedFormTargets;
private String[] mediumFormTargets;
@ -664,7 +674,7 @@ class FileTestData extends LanguageTestRoot.TestData {
}
}
class DefaultData extends LanguageTestRoot.TestData {
class DefaultData extends LanguageTestFmwk.TestData {
private static final int[] fullPluralizedFormCounts = { -3, -2, -1, 0, 1,
2, 3, 5, 10, 11, 12, 20, 21, 22, 23, 25 };

View file

@ -9,6 +9,8 @@
package com.ibm.icu.dev.test.duration;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.BasicPeriodFormatterService;
import com.ibm.icu.impl.duration.Period;
@ -25,13 +27,7 @@ public class PeriodBuilderFactoryTest extends TestFmwk implements TimeUnitConsta
60*60*1000L, 60*1000L, 1000L, 1L
};
/**
* Invoke the tests.
*/
public static void main(String[] args) {
new PeriodBuilderFactoryTest().run(args);
}
@Test
public void testSetAvailableUnitRange() {
// sanity check, make sure by default all units are set
pbf = BasicPeriodFormatterService.getInstance().newPeriodBuilderFactory();
@ -69,6 +65,7 @@ public class PeriodBuilderFactoryTest extends TestFmwk implements TimeUnitConsta
}
}
@Test
public void testSetUnitIsAvailable() {
pbf = BasicPeriodFormatterService.getInstance().newPeriodBuilderFactory();
pbf.setAvailableUnitRange(MONTH, MONTH);
@ -88,6 +85,7 @@ public class PeriodBuilderFactoryTest extends TestFmwk implements TimeUnitConsta
assertNotNull(null, pbf.getMultiUnitBuilder(2));
}
@Test
public void testBuilderFactoryPeriodConstruction() {
// see ticket #8307
pbf = BasicPeriodFormatterService.getInstance().newPeriodBuilderFactory();

View file

@ -1,22 +0,0 @@
/*
******************************************************************************
* Copyright (C) 2007, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
// Copyright 2006 Google Inc. All Rights Reserved.
package com.ibm.icu.dev.test.duration;
import com.ibm.icu.dev.test.TestFmwk;
public class PeriodBuilderTest extends TestFmwk {
/**
* Invoke the tests.
*/
public static void main(String[] args) {
new PeriodBuilderTest().run(args);
}
}

View file

@ -9,19 +9,14 @@
package com.ibm.icu.dev.test.duration;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.Period;
import com.ibm.icu.impl.duration.TimeUnit;
public class PeriodTest extends TestFmwk {
/**
* Invoke the tests.
*/
public static void main(String[] args) {
new PeriodTest().run(args);
}
@Test
public void testIsSet() {
Period p = Period.at(0, TimeUnit.YEAR);
assertTrue(null, p.isSet());
@ -32,6 +27,7 @@ public class PeriodTest extends TestFmwk {
assertFalse(null, p.isSet(TimeUnit.YEAR));
}
@Test
public void testMoreLessThan() {
Period p = Period.moreThan(1, TimeUnit.YEAR);
assertTrue(null, p.isMoreThan());
@ -57,6 +53,7 @@ public class PeriodTest extends TestFmwk {
assertEquals(null, 1f, p.getCount(TimeUnit.YEAR), .1f);
}
@Test
public void testFuturePast() {
Period p = Period.at(1, TimeUnit.YEAR).inFuture();
assertTrue(null, p.isInFuture());
@ -68,6 +65,7 @@ public class PeriodTest extends TestFmwk {
assertFalse(null, p.isInFuture());
}
@Test
public void testAnd() {
Period p = Period.at(1, TimeUnit.YEAR).and(3, TimeUnit.MONTH)
.inFuture();
@ -78,6 +76,7 @@ public class PeriodTest extends TestFmwk {
assertEquals(null, 2f, p.getCount(TimeUnit.MONTH), .1f);
}
@Test
public void testInvalidCount() {
try {
Period.at(-1, TimeUnit.YEAR);

View file

@ -6,6 +6,8 @@
*/
package com.ibm.icu.dev.test.duration;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.BasicPeriodFormatterService;
import com.ibm.icu.impl.duration.DurationFormatter;
@ -15,12 +17,8 @@ import com.ibm.icu.text.DurationFormat;
import com.ibm.icu.util.ULocale;
public class RegressionTest extends TestFmwk {
public static void main(String[] args) {
new RegressionTest().run(args);
}
// bug6397
@Test
public void TestDisallowedMillis() {
// original test case
// if we don't support milliseconds, format times less than 1 second as

View file

@ -12,19 +12,14 @@ package com.ibm.icu.dev.test.duration;
import java.util.Collection;
import java.util.Iterator;
import org.junit.Test;
import com.ibm.icu.dev.test.TestFmwk;
import com.ibm.icu.impl.duration.impl.PeriodFormatterData;
import com.ibm.icu.impl.duration.impl.ResourceBasedPeriodFormatterDataService;
public class ResourceBasedPeriodFormatterDataServiceTest extends TestFmwk {
/**
* Invoke the tests.
*/
public static void main(String[] args) {
new ResourceBasedPeriodFormatterDataServiceTest().run(args);
}
@Test
public void testAvailable() {
ResourceBasedPeriodFormatterDataService service =
ResourceBasedPeriodFormatterDataService.getInstance();

View file

@ -1,38 +0,0 @@
// Copyright 2006 Google Inc. All Rights Reserved.
/*
******************************************************************************
* Copyright (C) 2007, International Business Machines Corporation and *
* others. All Rights Reserved. *
******************************************************************************
*/
package com.ibm.icu.dev.test.duration;
import com.ibm.icu.dev.test.TestFmwk.TestGroup;
/**
* Top level test used to run all other tests as a batch.
*/
public class TestAll extends TestGroup {
public static void main(String[] args) {
new TestAll().run(args);
}
public TestAll() {
super(new String[] {
"com.ibm.icu.dev.test.duration.ICUDurationTest",
"com.ibm.icu.dev.test.duration.DataReadWriteTest",
"com.ibm.icu.dev.test.duration.PeriodBuilderFactoryTest",
"com.ibm.icu.dev.test.duration.PeriodBuilderTest",
"com.ibm.icu.dev.test.duration.PeriodTest",
"com.ibm.icu.dev.test.duration.ResourceBasedPeriodFormatterDataServiceTest",
"com.ibm.icu.dev.test.duration.languages.TestAll",
},
"Duration Tests");
}
public static final String CLASS_TARGET_NAME = "Duration";
}

Some files were not shown because too many files have changed in this diff Show more