3

我正在尝试使用 robolectric 测试 ORMLite DAO,但数据库行为与在我的 android 应用程序中使用时不同。我的 DAO 在 android 应用程序上运行良好。

阅读 robolectric 阴影和调试代码时,我遇到了ShadowSQLiteOpenHelper此处为代码)。

有谁知道这个Shadow是否足以测试ormlite daos?或者我必须创造自己的影子来实现这一目标?这里有任何线索/提示/建议/示例吗?

提前致谢。


额外信息:

测试方法:

@Test
public void basicTest() throws SQLException {
    assertNotNull(randomStringResource); // Injection of an android resource: OK
    assertThat(randomStringResource, equalTo("Event")); // With correct value: OK
    assertNotNull(eventDao); // Dao injection: OK
    assertThat(eventDao.countOf(), equalTo(0L)); // Table empty: OK

    Event e1 = new Event("e1", new Date());
    eventDao.create(e1);

    assertNotNull(e1.getId()); // ID generated by OrmLite: OK
    assertThat(eventDao.countOf(), equalTo(1L)); // Table not empty: OK
    assertThat("e1", equalTo(eventDao.queryForId(e1.getId()).getName())); // Query for inserted event: Throws exception
}

运行此测试时遇到的一些问题:

  • 使用“camelCased”属性名称查询实体时出错:在测试的最后一行抛出错误(相关问题)。运行 android 应用程序时从来没有遇到过这样的问题。
  • 当我更改其中一个属性名称(例如,isEnabled更改为enabled)以避免出现 camelCase 问题时,之前的错误仍然存​​在……似乎内存数据库没有应用我对实体所做的更改。

使用的版本:

  • 机器人电气 1.1
  • OrmLite 4.41
4

1 回答 1

6

很抱歉复活你的话题,但我遇到了同样的问题。

我正在使用 OrmLite 4.45 和 Robolectric 2.1。

ShadowSQLiteCursor.java中,cacheColumnNames方法调用toLowerCase每个列名。所以我决定ShadowSQLiteCursor用我自己的(不调用toLowerCase)进行扩展:

/**
* Simulates an Android Cursor object, by wrapping a JDBC ResultSet.
*/
@Implements(value = SQLiteCursor.class, inheritImplementationMethods = true)
public class ShadowCaseSensitiveSQLiteCursor extends ShadowSQLiteCursor {

private ResultSet resultSet;

public void __constructor__(SQLiteCursorDriver driver, String editTable, SQLiteQuery query) {}

/**
 * Stores the column names so they are retrievable after the resultSet has closed
 */
private void cacheColumnNames(ResultSet rs) {
    try {
        ResultSetMetaData metaData = rs.getMetaData();
        int columnCount = metaData.getColumnCount();
        columnNameArray = new String[columnCount];
        for(int columnIndex = 1; columnIndex <= columnCount; columnIndex++) {
            String cName = metaData.getColumnName(columnIndex);
            this.columnNames.put(cName, columnIndex - 1);
            this.columnNameArray[columnIndex - 1] = cName;
        }
    } catch(SQLException e) {
        throw new RuntimeException("SQL exception in cacheColumnNames", e);
    }
}
}

我的回答显然来得太晚了,但可能对其他人有所帮助!

于 2013-09-20T08:41:07.537 回答