房间迁移测试MigrationTestHelper版本

时间:2020-05-04 15:12:25

标签: android android-room database-migration android-testing

好吧,我正在尝试测试数据库迁移。不幸的是,看起来有些错误。

@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类,然后再次开始进行junit测试。

有人可以帮我吗?

我在这里遵循Google指南:https://developer.android.com/training/data-storage/room/migrating-db-versions.html

1 个答案:

答案 0 :(得分:0)

好吧,我终于找到了。看来我的资产文件夹中生成了错误的模式。

要解决此问题,这是我所做的。

  1. 从资产文件夹中删除1.json和2.json文件(每个文件都包含数据库版本的结构)
  2. 回滚到版本1数据库(在我的代码中),构建> make projet
  3. 您将在资产文件夹中看到1.json
  4. 进行更改,我的意思是在Table.java文件中添加新列
  5. 构建>制作projet
  6. 您将在资产文件夹中看到2.json
  7. 运行junit测试,现在可以工作

这是我的Java对象与数据库版本1和2之间的区别

char* str = malloc(sizeof(char) * (strlen(tribe_name) + 1));

希望这会有所帮助。

相关问题