房间迁移测试 MigrationTestHelper 版本
Room migration testing MigrationTestHelper version
好吧,我正在尝试测试我的数据库迁移。不幸的是,有些地方看起来不对劲。
@RunWith(AndroidJUnit4ClassRunner.class)
public class MigrationTest {
private static final String TEST_DB = "migration-test";
@Rule
public MigrationTestHelper helper;
public MigrationTest() {
helper = new MigrationTestHelper(InstrumentationRegistry.getInstrumentation(),
AppDatabase.class.getCanonicalName(),
new FrameworkSQLiteOpenHelperFactory());
}
@Test
public void migrateAll() throws IOException {
// Create earliest version of the database.
SupportSQLiteDatabase db = helper.createDatabase(TEST_DB, 1);
db.close();
// Open latest version of the database. Room will validate the schema
// once all migrations execute.
AppDatabase appDb = Room.databaseBuilder(
InstrumentationRegistry.getInstrumentation().getTargetContext(),
AppDatabase.class,
TEST_DB)
.addMigrations(ALL_MIGRATIONS).build();
appDb.getOpenHelper().getWritableDatabase();
appDb.close();
}
// Array of all migrations
private static final Migration[] ALL_MIGRATIONS = new Migration[]{MIGRATION_1_2};
}
迁移代码。
public static final Migration MIGRATION_1_2 = new Migration(1, 2) {
@Override
public void migrate(SupportSQLiteDatabase database) {
database.execSQL("ALTER TABLE mytable ADD COLUMN reference_code TEXT");
}
};
在实际迁移中一切正常,但在 junit 测试用例中出现以下错误。
E/SQLiteLog: (1) duplicate column name: reference_code
E/TestRunner: failed: migrateAll(com.apps.MigrationTest)
E/TestRunner: ----- begin exception -----
E/TestRunner: android.database.sqlite.SQLiteException: duplicate column name: reference_code (code 1 SQLITE_ERROR): , while compiling: ALTER TABLE mytable ADD COLUMN reference_code TEXT
at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:986)
at a
据我所知,SupportSQLiteDatabase db = helper.createDatabase(TEST_DB, 1);
似乎正在创建我的数据库的模式 V2(而不是版本 1)。
结果,新列被标记为重复。
要修复它,我必须将我的 version = 1
回滚到 @Database
class,然后再次开始我的 junit 测试。
有人可以帮我吗?
我遵循这里的 google 指南:https://developer.android.com/training/data-storage/room/migrating-db-versions.html
好吧,我终于找到了。我的资产文件夹中似乎生成了错误的架构。
为了解决这个问题,这是我所做的。
- 从资产文件夹中删除1.json和2.json个文件(每个文件包含数据库版本的结构)
- 回滚到版本 1 数据库(在我的代码中),build > make projet
- 您将在资产文件夹中看到 1.json
- 进行了更改,我的意思是在我的 Table.java 文件中添加我的新列
- 构建 > 制作项目
- 您将在资产文件夹中看到 2.json
- 运行 junit 测试,正在运行
这是我的 java 对象和数据库版本 1 和 2
之间的区别
@Entity(tableName = "Table")
public class Table implements Parcelable {
@ColumnInfo(name = COLUMN_REFERENCE_CODE)
private String referenceCode;
}
希望这会有所帮助。
好吧,我正在尝试测试我的数据库迁移。不幸的是,有些地方看起来不对劲。
@RunWith(AndroidJUnit4ClassRunner.class)
public class MigrationTest {
private static final String TEST_DB = "migration-test";
@Rule
public MigrationTestHelper helper;
public MigrationTest() {
helper = new MigrationTestHelper(InstrumentationRegistry.getInstrumentation(),
AppDatabase.class.getCanonicalName(),
new FrameworkSQLiteOpenHelperFactory());
}
@Test
public void migrateAll() throws IOException {
// Create earliest version of the database.
SupportSQLiteDatabase db = helper.createDatabase(TEST_DB, 1);
db.close();
// Open latest version of the database. Room will validate the schema
// once all migrations execute.
AppDatabase appDb = Room.databaseBuilder(
InstrumentationRegistry.getInstrumentation().getTargetContext(),
AppDatabase.class,
TEST_DB)
.addMigrations(ALL_MIGRATIONS).build();
appDb.getOpenHelper().getWritableDatabase();
appDb.close();
}
// Array of all migrations
private static final Migration[] ALL_MIGRATIONS = new Migration[]{MIGRATION_1_2};
}
迁移代码。
public static final Migration MIGRATION_1_2 = new Migration(1, 2) {
@Override
public void migrate(SupportSQLiteDatabase database) {
database.execSQL("ALTER TABLE mytable ADD COLUMN reference_code TEXT");
}
};
在实际迁移中一切正常,但在 junit 测试用例中出现以下错误。
E/SQLiteLog: (1) duplicate column name: reference_code
E/TestRunner: failed: migrateAll(com.apps.MigrationTest)
E/TestRunner: ----- begin exception -----
E/TestRunner: android.database.sqlite.SQLiteException: duplicate column name: reference_code (code 1 SQLITE_ERROR): , while compiling: ALTER TABLE mytable ADD COLUMN reference_code TEXT
at android.database.sqlite.SQLiteConnection.nativePrepareStatement(Native Method)
at android.database.sqlite.SQLiteConnection.acquirePreparedStatement(SQLiteConnection.java:986)
at a
据我所知,SupportSQLiteDatabase db = helper.createDatabase(TEST_DB, 1);
似乎正在创建我的数据库的模式 V2(而不是版本 1)。
结果,新列被标记为重复。
要修复它,我必须将我的 version = 1
回滚到 @Database
class,然后再次开始我的 junit 测试。
有人可以帮我吗?
我遵循这里的 google 指南:https://developer.android.com/training/data-storage/room/migrating-db-versions.html
好吧,我终于找到了。我的资产文件夹中似乎生成了错误的架构。
为了解决这个问题,这是我所做的。
- 从资产文件夹中删除1.json和2.json个文件(每个文件包含数据库版本的结构)
- 回滚到版本 1 数据库(在我的代码中),build > make projet
- 您将在资产文件夹中看到 1.json
- 进行了更改,我的意思是在我的 Table.java 文件中添加我的新列
- 构建 > 制作项目
- 您将在资产文件夹中看到 2.json
- 运行 junit 测试,正在运行
这是我的 java 对象和数据库版本 1 和 2
之间的区别@Entity(tableName = "Table")
public class Table implements Parcelable {
@ColumnInfo(name = COLUMN_REFERENCE_CODE)
private String referenceCode;
}
希望这会有所帮助。