Example #1
0
 /**
  * Test method for {@link
  * org.seasar.framework.mock.sql.MockResultSet#addRowData(org.seasar.framework.util.ArrayMap)}.
  */
 public void testAddAndGetRowData() {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   rowData.put("id", new Integer(1));
   rs.addRowData(rowData);
   assertSame(rowData, rs.getRowData(1));
 }
Example #2
0
 /** @throws Exception */
 public void testFirst() throws Exception {
   MockResultSet rs = new MockResultSet();
   rs.setType(ResultSet.TYPE_SCROLL_INSENSITIVE);
   ArrayMap rowData = new ArrayMap();
   Timestamp value = new Timestamp(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.first());
   assertTrue(rs.isFirst());
 }
Example #3
0
 /** @throws Exception */
 public void testIsLast() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Timestamp value = new Timestamp(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertFalse(rs.isLast());
   assertTrue(rs.next());
   assertTrue(rs.isLast());
 }
Example #4
0
 /** @throws Exception */
 public void testGetBoolean() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Boolean value = Boolean.TRUE;
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertTrue(rs.getBoolean(1));
   assertTrue(rs.getBoolean("hoge"));
 }
Example #5
0
 /** @throws Exception */
 public void testGetString() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   String value = "aaa";
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value, rs.getString(1));
   assertEquals(value, rs.getString("hoge"));
 }
Example #6
0
 /** @throws Exception */
 public void testGetShort() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Short value = new Short((short) 0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value.shortValue(), rs.getShort(1));
   assertEquals(value.shortValue(), rs.getShort("hoge"));
 }
Example #7
0
 /** @throws Exception */
 public void testGetObject() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Object value = new Object();
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertSame(value, rs.getObject(1));
   assertSame(value, rs.getObject("hoge"));
 }
Example #8
0
 /** @throws Exception */
 public void testGetLong() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Long value = new Long(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value.longValue(), rs.getLong(1));
   assertEquals(value.longValue(), rs.getLong("hoge"));
 }
Example #9
0
 /** @throws Exception */
 public void testGetInt() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Integer value = new Integer(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value.intValue(), rs.getInt(1));
   assertEquals(value.intValue(), rs.getInt("hoge"));
 }
Example #10
0
 /** @throws Exception */
 public void testGetFloat() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Float value = new Float(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value.floatValue(), rs.getFloat(1), 0);
   assertEquals(value.floatValue(), rs.getFloat("hoge"), 0);
 }
Example #11
0
 /** @throws Exception */
 public void testGetByte() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Byte value = new Byte((byte) 1);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals((byte) 1, rs.getByte(1));
   assertEquals((byte) 1, rs.getByte("hoge"));
 }
Example #12
0
 /** @throws Exception */
 public void testGetTimestamp() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Timestamp value = new Timestamp(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value, rs.getTimestamp(1));
   assertEquals(value, rs.getTimestamp("hoge"));
 }
Example #13
0
 /** @throws Exception */
 @Test
 public void testGetValue_null() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   rowData.put("hoge", null);
   rs.addRowData(rowData);
   rs.next();
   FloatType type = new FloatType();
   assertNull(type.getValue(rs, 1));
 }
Example #14
0
 /** @throws Exception */
 public void testGetColumnData() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Integer value = new Integer(1);
   rowData.put("id", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value, rs.getColumnData(1));
   assertEquals(value, rs.getColumnData("id"));
 }
Example #15
0
 /** @throws Exception */
 public void testNext() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   Integer value = new Integer(1);
   rowData.put("id", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(1, rs.getRow());
   assertFalse(rs.next());
   assertEquals(2, rs.getRow());
   assertFalse(rs.next());
   assertEquals(2, rs.getRow());
 }
Example #16
0
 /** @throws Exception */
 public void testGetBigDecimal() throws Exception {
   MockResultSet rs = new MockResultSet();
   ArrayMap rowData = new ArrayMap();
   BigDecimal value = new BigDecimal(1);
   rowData.put("id", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertEquals(value, rs.getBigDecimal(1));
   assertEquals(value, rs.getBigDecimal("id"));
   BigDecimal value2 = rs.getBigDecimal(1, 2);
   assertEquals(2, value2.scale());
   value2 = rs.getBigDecimal("id", 2);
   assertEquals(2, value2.scale());
 }
Example #17
0
 /** @throws Exception */
 public void testAbsolute() throws Exception {
   MockResultSet rs = new MockResultSet();
   rs.setType(ResultSet.TYPE_SCROLL_INSENSITIVE);
   ArrayMap rowData = new ArrayMap();
   Timestamp value = new Timestamp(0);
   rowData.put("hoge", value);
   rs.addRowData(rowData);
   rs.addRowData(rowData);
   assertTrue(rs.absolute(1));
   assertEquals(1, rs.getRow());
   assertTrue(rs.absolute(2));
   assertEquals(2, rs.getRow());
   assertFalse(rs.absolute(0));
   assertEquals(2, rs.getRow());
   assertFalse(rs.absolute(3));
   assertEquals(2, rs.getRow());
 }
Example #18
0
 /** @throws Exception */
 public void testPrevious() throws Exception {
   MockResultSet rs = new MockResultSet();
   try {
     rs.previous();
     fail();
   } catch (SQLException e) {
     System.out.println(e);
   }
   rs.setType(ResultSet.TYPE_SCROLL_INSENSITIVE);
   ArrayMap rowData = new ArrayMap();
   Integer value = new Integer(1);
   rowData.put("id", value);
   rs.addRowData(rowData);
   assertTrue(rs.next());
   assertFalse(rs.next());
   assertTrue(rs.previous());
   assertEquals(1, rs.getRow());
   assertFalse(rs.previous());
   assertEquals(0, rs.getRow());
 }