⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 stringregressiontest.java

📁 在资料浩瀚的互联网中
💻 JAVA
📖 第 1 页 / 共 2 页
字号:
/*      Copyright (C) 2002-2004 MySQL AB      This program is free software; you can redistribute it and/or modify      it under the terms of version 2 of the GNU General Public License as       published by the Free Software Foundation.      There are special exceptions to the terms and conditions of the GPL       as it is applied to this software. View the full text of the       exception in file EXCEPTIONS-CONNECTOR-J in the directory of this       software distribution.      This program is distributed in the hope that it will be useful,      but WITHOUT ANY WARRANTY; without even the implied warranty of      MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the      GNU General Public License for more details.      You should have received a copy of the GNU General Public License      along with this program; if not, write to the Free Software      Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */package testsuite.regression;import com.mysql.jdbc.StringUtils;import testsuite.BaseTestCase;import testsuite.simple.BlobTest;import java.sql.Connection;import java.sql.DriverManager;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.Statement;import java.util.Properties;/** * Tests for regressions of bugs in String handling in the driver. * * @author Mark Matthews * @version StringRegressionTest.java,v 1.1 2002/11/04 14:58:25 mark_matthews Exp */public class StringRegressionTest extends BaseTestCase {    /**     * Creates a new StringTest object.     *     * @param name DOCUMENT ME!     */    public StringRegressionTest(String name) {        super(name);    }    /**     * Runs all test cases in this test suite     *     * @param args     */    public static void main(String[] args) {        junit.textui.TestRunner.run(StringRegressionTest.class);    }    /**     * Tests character conversion bug.     *     * @throws Exception if there is an internal error (which is a bug).     */    public void testAsciiCharConversion() throws Exception {        byte[] buf = new byte[10];        buf[0] = (byte) '?';        buf[1] = (byte) 'S';        buf[2] = (byte) 't';        buf[3] = (byte) 'a';        buf[4] = (byte) 't';        buf[5] = (byte) 'e';        buf[6] = (byte) '-';        buf[7] = (byte) 'b';        buf[8] = (byte) 'o';        buf[9] = (byte) 't';        String testString = "?State-bot";        String convertedString = StringUtils.toAsciiString(buf);        for (int i = 0; i < convertedString.length(); i++) {            System.out.println((byte) convertedString.charAt(i));        }        assertTrue("Converted string != test string",            testString.equals(convertedString));    }    /**     * Tests fix for BUG#4010 -- GBK encoding getting escaped doubly when     * database default character set is GBK.  Requires version older than     * 4.1.0 and server set to default  character set of 'gbk' to run.     *     * @throws Exception if the test fails.     */    public void testBug4010() throws Exception {        if (!versionMeetsMinimum(4, 1)) {            if ("GBK".equalsIgnoreCase(getMysqlVariable("character_set"))) {                String origString = "\u603d";                Properties props = new Properties();                props.put("useUnicode", "true");                props.put("characterEncoding", "GBK");                Connection unicodeConn = getConnectionWithProps(props);                Statement unicodeStmt = unicodeConn.createStatement();                PreparedStatement unicodePstmt = unicodeConn.prepareStatement(                        "INSERT INTO testBug4010 VALUES (?)");                try {                    unicodeStmt.executeUpdate(                        "DROP TABLE IF EXISTS testBug4010");                    unicodeStmt.executeUpdate(                        "CREATE TABLE testBug4010 (field1 varchar(10))");                    unicodePstmt.setString(1, origString);                    unicodePstmt.executeUpdate();                    this.rs = unicodeStmt.executeQuery(                            "SELECT * FROM testBug4010");                    assertTrue(this.rs.next());                    String stringFromDb = this.rs.getString(1);                    assertTrue("Retrieved string != sent string",                        origString.equals(stringFromDb));                } finally {                    unicodeStmt.executeUpdate(                        "DROP TABLE IF EXISTS testBug4010");                    unicodeStmt.close();                    unicodePstmt.close();                    unicodeConn.close();                }            } else {                System.err.println(                    "WARN: Test not valid for servers not running GBK encoding");            }        } else {            System.err.println(                "WARN: Test not valid for MySQL version > 4.1.0, skipping");        }    }    /**     * Tests for regression of encoding forced by user, reported by Jive     * Software     *     * @throws Exception when encoding is not supported (which is a bug)     */    public void testEncodingRegression() throws Exception {        Properties props = new Properties();        props.put("characterEncoding", "UTF-8");        props.put("useUnicode", "true");        DriverManager.getConnection(dbUrl, props).close();    }    /**     * Tests fix for BUG#879     *     * @throws Exception if the bug resurfaces.     */    public void testEscapeSJISDoubleEscapeBug() throws Exception {        String testString = "'It\\'s a boy!'";        byte[] testStringAsBytes = testString.getBytes("SJIS");        byte[] escapedStringBytes = StringUtils.escapeEasternUnicodeByteStream(testStringAsBytes,                testString, 0, testString.length());        String escapedString = new String(escapedStringBytes, "SJIS");        assertTrue(testString.equals(escapedString));        byte[] origByteStream = new byte[] {                (byte) 0x95, (byte) 0x5c, (byte) 0x8e, (byte) 0x96, (byte) 0x5c,                (byte) 0x62, (byte) 0x5c            };        String origString = "\u955c\u8e96\u5c62\\";        byte[] newByteStream = StringUtils.escapeEasternUnicodeByteStream(origByteStream,                origString, 0, origString.length());        assertTrue((newByteStream.length == (origByteStream.length + 2))            && (newByteStream[1] == 0x5c) && (newByteStream[2] == 0x5c)            && (newByteStream[5] == 0x5c) && (newByteStream[6] == 0x5c));        origByteStream = new byte[] {                (byte) 0x8d, (byte) 0xb2, (byte) 0x93, (byte) 0x91, (byte) 0x81,                (byte) 0x40, (byte) 0x8c, (byte) 0x5c            };        testString = new String(origByteStream, "SJIS");        Properties connProps = new Properties();        connProps.put("useUnicode", "true");        connProps.put("characterEncoding", "sjis");        Connection sjisConn = getConnectionWithProps(connProps);        Statement sjisStmt = sjisConn.createStatement();        try {            sjisStmt.executeUpdate("DROP TABLE IF EXISTS doubleEscapeSJISTest");            sjisStmt.executeUpdate(                "CREATE TABLE doubleEscapeSJISTest (field1 BLOB)");            PreparedStatement sjisPStmt = sjisConn.prepareStatement(                    "INSERT INTO doubleEscapeSJISTest VALUES (?)");            sjisPStmt.setString(1, testString);            sjisPStmt.executeUpdate();            this.rs = sjisStmt.executeQuery(                    "SELECT * FROM doubleEscapeSJISTest");            this.rs.next();            String retrString = this.rs.getString(1);            System.out.println(retrString.equals(testString));        } finally {            //sjisStmt.executeUpdate("DROP TABLE IF EXISTS doubleEscapeSJISTest");        }    }    /**     * DOCUMENT ME!     *     * @throws Exception DOCUMENT ME!     */    public void testGreekUtf8411() throws Exception {        if (versionMeetsMinimum(4, 1)) {            try {                Properties newProps = new Properties();                newProps.put("useUnicode", "true");                newProps.put("characterEncoding", "UTF-8");                Connection utf8Conn = this.getConnectionWithProps(newProps);                Statement utfStmt = utf8Conn.createStatement();                utfStmt.executeUpdate("DROP TABLE IF EXISTS greekunicode");                utfStmt.executeUpdate(                    "CREATE TABLE greekunicode(ID INTEGER NOT NULL "                    + " AUTO_INCREMENT,UpperCase VARCHAR (30),LowerCase VARCHAR (30),Accented "                    + " VARCHAR (30),Special VARCHAR (30),PRIMARY KEY(ID)) TYPE = InnoDB, DEFAULT "                    + "CHARACTER SET utf8");                String upper = "\u0394\u930F\u039A\u0399\u039C\u0397";                String lower = "\u03B4\u03BF\u03BA\u03B9\u03BC\u03B7";                String accented = "\u03B4\u03CC\u03BA\u03AF\u03BC\u03AE";                String special = "\u037E\u03C2\u03B0";                utfStmt.executeUpdate("INSERT INTO greekunicode VALUES "                    + "('1','" + upper + "','" + lower + "','" + accented                    + "','" + special + "')");                this.rs = utfStmt.executeQuery(                        "SELECT UpperCase, LowerCase, Accented, Special from greekunicode");                this.rs.next();                assertTrue(upper.equals(this.rs.getString(1)));                assertTrue(lower.equals(this.rs.getString(2)));                assertTrue(accented.equals(this.rs.getString(3)));                assertTrue(special.equals(this.rs.getString(4)));            } finally {                this.stmt.executeUpdate("DROP TABLE IF EXISTS greekunicode");            }        }    }    /**     * Tests that 'latin1' character conversion works correctly.     *     * @throws Exception if any errors occur     */    public void testLatin1Encoding() throws Exception {        char[] latin1Charset = {            0x0000, 0x0001, 0x0002, 0x0003, 0x0004, 0x0005, 0x0006, 0x0007,            0x0008, 0x0009, 0x000A, 0x000B, 0x000C, 0x000D, 0x000E, 0x000F,            0x0010, 0x0011, 0x0012, 0x0013, 0x0014, 0x0015, 0x0016, 0x0017,            0x0018, 0x0019, 0x001A, 0x001B, 0x001C, 0x001D, 0x001E, 0x001F,            0x0020, 0x0021, 0x0022, 0x0023, 0x0024, 0x0025, 0x0026, 0x0027,            0x0028, 0x0029, 0x002A, 0x002B, 0x002C, 0x002D, 0x002E, 0x002F,            0x0030, 0x0031, 0x0032, 0x0033, 0x0034, 0x0035, 0x0036, 0x0037,            0x0038, 0x0039, 0x003A, 0x003B, 0x003C, 0x003D, 0x003E, 0x003F,            0x0040, 0x0041, 0x0042, 0x0043, 0x0044, 0x0045, 0x0046, 0x0047,            0x0048, 0x0049, 0x004A, 0x004B, 0x004C, 0x004D, 0x004E, 0x004F,            0x0050, 0x0051, 0x0052, 0x0053, 0x0054, 0x0055, 0x0056, 0x0057,            0x0058, 0x0059, 0x005A, 0x005B, 0x005C, 0x005D, 0x005E, 0x005F,            0x0060, 0x0061, 0x0062, 0x0063, 0x0064, 0x0065, 0x0066, 0x0067,            0x0068, 0x0069, 0x006A, 0x006B, 0x006C, 0x006D, 0x006E, 0x006F,            0x0070, 0x0071, 0x0072, 0x0073, 0x0074, 0x0075, 0x0076, 0x0077,            0x0078, 0x0079, 0x007A, 0x007B, 0x007C, 0x007D, 0x007E, 0x007F,            0x0080, 0x0081, 0x0082, 0x0083, 0x0084, 0x0085, 0x0086, 0x0087,            0x0088, 0x0089, 0x008A, 0x008B, 0x008C, 0x008D, 0x008E, 0x008F,            0x0090, 0x0091, 0x0092, 0x0093, 0x0094, 0x0095, 0x0096, 0x0097,            0x0098, 0x0099, 0x009A, 0x009B, 0x009C, 0x009D, 0x009E, 0x009F,            0x00A0, 0x00A1, 0x00A2, 0x00A3, 0x00A4, 0x00A5, 0x00A6, 0x00A7,            0x00A8, 0x00A9, 0x00AA, 0x00AB, 0x00AC, 0x00AD, 0x00AE, 0x00AF,            0x00B0, 0x00B1, 0x00B2, 0x00B3, 0x00B4, 0x00B5, 0x00B6, 0x00B7,            0x00B8, 0x00B9, 0x00BA, 0x00BB, 0x00BC, 0x00BD, 0x00BE, 0x00BF,            0x00C0, 0x00C1, 0x00C2, 0x00C3, 0x00C4, 0x00C5, 0x00C6, 0x00C7,            0x00C8, 0x00C9, 0x00CA, 0x00CB, 0x00CC, 0x00CD, 0x00CE, 0x00CF,            0x00D0, 0x00D1, 0x00D2, 0x00D3, 0x00D4, 0x00D5, 0x00D6, 0x00D7,            0x00D8, 0x00D9, 0x00DA, 0x00DB, 0x00DC, 0x00DD, 0x00DE, 0x00DF,            0x00E0, 0x00E1, 0x00E2, 0x00E3, 0x00E4, 0x00E5, 0x00E6, 0x00E7,            0x00E8, 0x00E9, 0x00EA, 0x00EB, 0x00EC, 0x00ED, 0x00EE, 0x00EF,            0x00F0, 0x00F1, 0x00F2, 0x00F3, 0x00F4, 0x00F5, 0x00F6, 0x00F7,            0x00F8, 0x00F9, 0x00FA, 0x00FB, 0x00FC, 0x00FD, 0x00FE, 0x00FF        };        String latin1String = new String(latin1Charset);        PreparedStatement pStmt = null;        try {        	this.stmt.executeUpdate("DROP TABLE IF EXISTS latin1RegressTest");        	this.stmt.executeUpdate(                "CREATE TABLE latin1RegressTest (stringField TEXT)");            pStmt = this.conn.prepareStatement(                    "INSERT INTO latin1RegressTest VALUES (?)");            pStmt.setString(1, latin1String);            pStmt.executeUpdate();            ((com.mysql.jdbc.Connection) this.conn).setTraceProtocol(true);            this.rs = this.stmt.executeQuery("SELECT * FROM latin1RegressTest");            ((com.mysql.jdbc.Connection) this.conn).setTraceProtocol(false);

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -