1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
/*-------------------------------------------------------------------------
*
* Copyright (c) 2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
* $PostgreSQL: pgjdbc/org/postgresql/test/jdbc4/UUIDTest.java,v 1.2 2008/10/08 18:24:05 jurka Exp $
*
*-------------------------------------------------------------------------
*/
package org.postgresql.test.jdbc4;
import java.sql.*;
import java.util.UUID;
import junit.framework.TestCase;
import org.postgresql.test.TestUtil;
public class UUIDTest extends TestCase {
private Connection _conn;
public UUIDTest(String name) {
super(name);
}
protected void setUp() throws Exception {
_conn = TestUtil.openDB();
Statement stmt = _conn.createStatement();
stmt.execute("CREATE TEMP TABLE uuidtest(id uuid)");
stmt.close();
}
protected void tearDown() throws SQLException {
Statement stmt = _conn.createStatement();
stmt.execute("DROP TABLE uuidtest");
stmt.close();
TestUtil.closeDB(_conn);
}
public void testUUID() throws SQLException {
UUID uuid = UUID.randomUUID();
PreparedStatement ps = _conn.prepareStatement("INSERT INTO uuidtest VALUES (?)");
ps.setObject(1, uuid, Types.OTHER);
ps.executeUpdate();
ps.close();
Statement stmt = _conn.createStatement();
ResultSet rs = stmt.executeQuery("SELECT id FROM uuidtest");
assertTrue(rs.next());
UUID uuid2 = (UUID)rs.getObject(1);
assertEquals(uuid, rs.getObject(1));
assertEquals(uuid.toString(), rs.getString(1));
rs.close();
stmt.close();
}
}
|