2014-01-05 71 views
3

我對Robolectric非常陌生,所以如果我在這裏丟失了一些明顯的東西,請提前致歉。我有一個應用程序,它使用從assets目錄加載數據庫,並且我想使用Robolectric框架來測試該數據庫。我能夠獲得對數據庫的引用,但似乎是空的。 SQLiteAssetHelper向日志輸出「成功打開的數據庫」消息,但數據庫中沒有表。使用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異常的原因是找不到指定的表名。

我很感激任何意見。

回答

2

首先將您的數據庫從資產文件夾複製到您的應用程序數據庫文件夾。

1.Delete您從終端數據庫: 這裏是將複製數據庫

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

嘗試這些東西可能是有用

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

並在仿真器上重新安裝應用程序。

  1. 嘗試增加模擬器的RAM ..儘管我的數據庫中有所有數據,但是當我將模擬器的RAM從1024增加到2000時.. 有效。

  2. 將您的數據庫從DDMS複製到您的系統文件系統,並通過sqlite瀏覽器打開它並檢查表是否存在。 鏈接sqlite的瀏覽器 http://sourceforge.net/projects/sqlitebrowser/files/sqlitebrowser/

+2

非常感謝您的幫助。我從'copyDataBase()'的'FileOutputStream'構造函數中得到'FileNotFound'異常。 'outFileName'設置爲'/ data/data//databases/'。任何想法這裏有什麼問題? – Ben

+0

你在SD卡上寫這個文件嗎?如果是,那麼請在manifest.xml中添加這一行: ..並且不要硬編碼您的路徑使用DB_PATH + DB_NAME –

+0

我剛剛使用內部存儲,我從'DB_PATH + DB_NAME'獲得'outFileName'。不過,感謝您的幫助。我會更新這個問題,如果我設法讓這個工作,當我有一些時間再次捅一遍。 – Ben