gpt4 book ai didi

android - 将 Robolectric 与 SQLiteAssetHelper 结合使用

转载 作者:太空狗 更新时间:2023-10-29 13:26:22 25 4
gpt4 key购买 nike

我是 Robolectric 的新手,所以如果我在这里遗漏了一些明显的东西,请提前致歉。我有一个应用程序使用 SQLiteAssetHelperassets 目录加载数据库,我想使用 Robolectric 测试该数据库框架。我能够获得对数据库的引用,但它似乎是空的。 SQLiteAssetHelper 向日志输出“成功打开数据库”消息,但数据库中没有表。

编辑:这是我使用下面发布的类 @user2953017 在我的 setUp 方法中获取数据库的代码:

@Before
public void setUp() {
Context context = Robolectric.getShadowApplication().getApplicationContext();
SQLiteDatabase db = (new DataBaseWrapper(context)).getReadableDatabase();

Cursor c = db.rawQuery("SELECT name FROM sqlite_master WHERE type='table'", null);
if (!c.moveToFirst()) {
Log.w("debug", "No tables!");
}

// My second query here fails, since the database contains no tables.
}

来自 logcat:

W/debug: No tables!
DEBUG: Loading resources for android from jar:/home/<name>/.m2/repository/org/robolectric/android-res/4.1.2_r1_rc/android-res-4.1.2_r1_rc-real.jar!/res...
E/Debug: java.lang.RuntimeException: SQL exception in query

SQL异常的原因是没有找到查询中指定的表名。

如有任何建议,我将不胜感激。

最佳答案

首先将您的数据库从 Assets 文件夹复制到您的应用程序数据库文件夹。这是将复制数据库的代码

public class DataBaseWrapper extends SQLiteOpenHelper
{
private static String TAG = DataBaseWrapper.class.getName();
private String DB_PATH; //= "/data/data/com.example.yourproject/databases/";
private static String DB_NAME = "Database.sqlite";
private SQLiteDatabase myDataBase = null;
private final Context myContext;

public DataBaseWrapper(Context context)
{
super(context, DB_NAME, null, 1);

this.myContext = context;
DB_PATH="/data/data/" + context.getPackageName() + "/" + "databases/";
Log.v("log_tag", "DBPath: " + DB_PATH);
// File f=getDatabasePath(DB_NAME);
}

public void createDataBase() throws IOException{
boolean dbExist = checkDataBase();
if(dbExist){
Log.v("log_tag", "database does exist");
}else{
Log.v("log_tag", "database does not exist");
this.getReadableDatabase();
try {
copyDataBase();
} catch (IOException e) {
throw new Error("Error copying database");
}
}
}

private void copyDataBase() throws IOException{
InputStream myInput = myContext.getAssets().open(DB_NAME);
String outFileName = DB_PATH + DB_NAME;
OutputStream myOutput = new FileOutputStream(outFileName);
byte[] buffer = new byte[1024];
int length;
while ((length = myInput.read(buffer))>0){
myOutput.write(buffer, 0, length);
}
myOutput.flush();
myOutput.close();
myInput.close();
}

private boolean checkDataBase(){

File dbFile = new File(DB_PATH + DB_NAME);
//Log.v("dbFile", dbFile + " "+ dbFile.exists());
return dbFile.exists();

}

public boolean openDataBase() throws SQLException
{
String mPath = DB_PATH + DB_NAME;
//Log.v("mPath", mPath);
myDataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.CREATE_IF_NECESSARY);
//mDataBase = SQLiteDatabase.openDatabase(mPath, null, SQLiteDatabase.NO_LOCALIZED_COLLATORS);
return myDataBase != null;

}


@Override
public synchronized void close()
{
if(myDataBase != null)
myDataBase.close();
super.close();
}

@Override
public void onCreate(SQLiteDatabase db)
{


}

@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion)
{
Log.v(TAG, "Upgrading database, this will drop database and recreate.");
}
}

同时检查这个链接..它可能对你有用 Testing SQLite database in Robolectric

试试这些:

1.从终端删除你的数据库

adb shell
cd /data/data/com.example.apploicationname/databases
rm *

然后在模拟器上重新安装您的应用程序。

  1. 尝试增加模拟器的内存。尽管我的所有数据都在数据库中,但当我将模拟器的内存从 1024 增加到 2000 时,我还是遇到了同样的错误。它起作用了。

  2. 将您的数据库从 DDMS 复制到您的系统文件系统并通过 sqlite 浏览器打开它并检查表是否存在。sqlite 浏览器链接 http://sourceforge.net/projects/sqlitebrowser/files/sqlitebrowser/

关于android - 将 Robolectric 与 SQLiteAssetHelper 结合使用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20929923/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com