scuffed-code/tools/unicodetools/com/ibm/text/UCD/TestNormalization.java

196 lines
7.5 KiB
Java
Raw Normal View History

2001-08-31 00:30:17 +00:00
/**
*******************************************************************************
* Copyright (C) 1996-2001, International Business Machines Corporation and *
* others. All Rights Reserved. *
*******************************************************************************
*
* $Source: /xsrl/Nsvn/icu/unicodetools/com/ibm/text/UCD/TestNormalization.java,v $
* $Date: 2002/06/13 21:14:05 $
* $Revision: 1.5 $
2001-08-31 00:30:17 +00:00
*
*******************************************************************************
*/
2001-08-30 20:50:18 +00:00
package com.ibm.text.UCD;
import java.util.*;
import java.io.*;
import com.ibm.text.utility.*;
public final class TestNormalization {
static final String DIR = "C:\\Documents and Settings\\Davis\\My Documents\\UnicodeData\\Update 3.0.1\\";
static final boolean SKIP_FILE = true;
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
static PrintWriter out = null;
static BufferedReader in = null;
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
static BitSet charsListed = new BitSet(0x110000);
static int errorCount = 0;
static int lineErrorCount = 0;
static String originalLine = "";
static String lastLine = "";
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
public static void main(String[] args) throws java.io.IOException {
System.out.println("Creating Normalizers");
2002-04-23 01:59:16 +00:00
Default.setUCD();
String[] testSet = {"a\u0304\u0328", "a\u0328\u0304"};
for (int i = 0; i < testSet.length; ++i) {
String s = testSet[i];
boolean test = Default.nfc.isFCD(s);
System.out.println(test + ": " + Default.ucd.getCodeAndName(s));
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
String x = UTF32.valueOf32(0x10000);
2002-04-23 01:59:16 +00:00
check("NFC", Default.nfc, x);
check("NFD", Default.nfd, x);
check("NFKC", Default.nfkc, x);
check("NFKD", Default.nfkd, x);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
out = new PrintWriter(
new BufferedWriter(
new OutputStreamWriter(
new FileOutputStream("NormalizationTestLog.txt"),
"UTF8"),
32*1024));
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
in = new BufferedReader (
new FileReader (DIR + "NormalizationTest.txt"),
32*1024);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
try {
String[] parts = new String[10];
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
System.out.println("Checking files");
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
int count = 0;
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
while (true) {
String line = in.readLine();
if ((count++ & 0x3FF) == 0) System.out.println("#LINE: " + line);
if (line == null) break;
originalLine = line;
int pos = line.indexOf('#');
if (pos >= 0) {
line = line.substring(0,pos);
}
line = line.trim();
if (line.length() == 0) continue;
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
int splitCount = Utility.split(line, ';', parts);
// FIX check splitCount
for (int i = 0; i < splitCount; ++i) {
parts[i] = Utility.fromHex(parts[i]);
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
if (UTF32.length32(parts[0]) == 1) {
int code = UTF32.char32At(parts[0],0);
charsListed.set(code);
if ((code & 0x3FF) == 0) System.out.println("# " + Utility.hex(code));
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
// c2 == NFC(c1) == NFC(c2) == NFC(c3)
2002-04-23 01:59:16 +00:00
errorCount += check("NFCa", Default.nfc, parts[1], parts[0]);
errorCount += check("NFCb", Default.nfc, parts[1], parts[1]);
errorCount += check("NFCc", Default.nfc, parts[1], parts[2]);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
// c4 == NFC(c4) == NFC(c5)
2002-04-23 01:59:16 +00:00
errorCount += check("NFCd", Default.nfc, parts[3], parts[3]);
errorCount += check("NFCe", Default.nfc, parts[3], parts[4]);
2001-08-30 20:50:18 +00:00
// c3 == NFD(c1) == NFD(c2) == NFD(c3)
2002-04-23 01:59:16 +00:00
errorCount += check("NFDa", Default.nfd, parts[2], parts[0]);
errorCount += check("NFDb", Default.nfd, parts[2], parts[1]);
errorCount += check("NFDc", Default.nfd, parts[2], parts[2]);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
// c5 == NFD(c4) == NFD(c5)
2002-04-23 01:59:16 +00:00
errorCount += check("NFDd", Default.nfd, parts[4], parts[3]);
errorCount += check("NFDe", Default.nfd, parts[4], parts[4]);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
// c4 == NFKC(c1) == NFKC(c2) == NFKC(c3) == NFKC(c4) == NFKC(c5)
2002-04-23 01:59:16 +00:00
errorCount += check("NFKCa", Default.nfkc, parts[3], parts[0]);
errorCount += check("NFKCb", Default.nfkc, parts[3], parts[1]);
errorCount += check("NFKCc", Default.nfkc, parts[3], parts[2]);
errorCount += check("NFKCd", Default.nfkc, parts[3], parts[3]);
errorCount += check("NFKCe", Default.nfkc, parts[3], parts[4]);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
// c5 == NFKD(c1) == NFKD(c2) == NFKD(c3) == NFKD(c4) == NFKD(c5)
2002-04-23 01:59:16 +00:00
errorCount += check("NFKDa", Default.nfkd, parts[4], parts[0]);
errorCount += check("NFKDb", Default.nfkd, parts[4], parts[1]);
errorCount += check("NFKDc", Default.nfkd, parts[4], parts[2]);
errorCount += check("NFKDd", Default.nfkd, parts[4], parts[3]);
errorCount += check("NFKDe", Default.nfkd, parts[4], parts[4]);
2001-08-30 20:50:18 +00:00
}
System.out.println("Total errors in file: " + errorCount
+ ", lines: " + lineErrorCount);
errorCount = lineErrorCount = 0;
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
System.out.println("Checking Missing");
checkMissing();
System.out.println("Total errors in unlisted items: " + errorCount
+ ", lines: " + lineErrorCount);
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
} finally {
if (in != null) in.close();
if (out != null) out.close();
}
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
static String lastBase = "";
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
public static int check(String type, Normalizer n, String base, String other) {
try {
String trans = n.normalize(other);
if (!trans.equals(base)) {
String temp = "";
if (!lastLine.equals(originalLine)) {
temp = "// " + originalLine;
lastLine = originalLine;
}
if (!base.equals(lastBase)) {
lastBase = base;
lineErrorCount++;
}
String otherList = "";
if (!base.equals(other)) {
2002-04-23 01:59:16 +00:00
otherList = "(" + Default.ucd.getCodeAndName(other) + ")";
2001-08-30 20:50:18 +00:00
}
2001-08-31 00:30:17 +00:00
out.println("DIFF " + type + ": "
2002-04-23 01:59:16 +00:00
+ Default.ucd.getCodeAndName(base) + " != "
2001-08-30 20:50:18 +00:00
+ type
+ otherList
2002-04-23 01:59:16 +00:00
+ " == " + Default.ucd.getCodeAndName(trans)
2001-08-30 20:50:18 +00:00
+ temp
);
return 1;
}
} catch (Exception e) {
2001-08-31 00:30:17 +00:00
throw new ChainException("DIFF " + type + ": "
2002-04-23 01:59:16 +00:00
+ Default.ucd.getCodeAndName(base) + " != "
+ type + "(" + Default.ucd.getCodeAndName(other) + ")", new Object[]{}, e);
2001-08-30 20:50:18 +00:00
}
return 0;
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
public static int check(String type, Normalizer n, String base) {
return check(type, n, base, base);
}
2001-08-31 00:30:17 +00:00
2001-08-30 20:50:18 +00:00
static void checkMissing() {
for (int missing = 0; missing < 0x100000; ++missing) {
if ((missing & 0xFFF) == 0) System.out.println("# " + Utility.hex(missing));
if (charsListed.get(missing)) continue;
String x = UTF32.valueOf32(missing);
2002-04-23 01:59:16 +00:00
errorCount += check("NFC", Default.nfc, x);
errorCount += check("NFD", Default.nfd, x);
errorCount += check("NFKC", Default.nfkc, x);
errorCount += check("NFKD", Default.nfkd, x);
2001-08-30 20:50:18 +00:00
}
2001-08-31 00:30:17 +00:00
}
2001-08-30 20:50:18 +00:00
}