在仪表化测试中找不到Room.inMemoryDatabaseBuilder()

时间:2017-12-12 00:08:12

标签: android android-room android-multidex android-architecture-components

我正在尝试为我的应用中的Room DB创建一个检测测试,但我一直收到此错误:

java.lang.NoSuchMethodError: No static method inMemoryDatabaseBuilder(Landroid/content/Context;Ljava/lang/Class;)Landroid/arch/persistence/room/RoomDatabase$Builder; in class Landroid/arch/persistence/room/Room; or its super classes (declaration of 'android.arch.persistence.room.Room' appears in /data/app/com.example.android-nhsbta60PW8T0UpasgtR0B==/base.apk)
at com.example.android.FooDaoTest.<init>(FooDaoTest.kt:40)
at java.lang.reflect.Constructor.newInstance0(Native Method)
at java.lang.reflect.Constructor.newInstance(Constructor.java:334)
at org.junit.runners.BlockJUnit4ClassRunner.createTest(BlockJUnit4ClassRunner.java:217)
at org.junit.runners.BlockJUnit4ClassRunner$1.runReflectiveCall(BlockJUnit4ClassRunner.java:266)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.BlockJUnit4ClassRunner.methodBlock(BlockJUnit4ClassRunner.java:263)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at android.support.test.internal.runner.TestExecutor.execute(TestExecutor.java:58)
at android.support.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:375)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:2074)

这是我的Gradle构建配置:

项目:

buildscript {
    ext {
        kotlinVersion = '1.2.0'

        supportLibVersion = '26.1.0'
        archLibVersion = '1.0.0'

        ...

        // Test libs
        androidTestLibVersion = '1.0.1'
        espressoVersion = '3.0.1'
        powerMockVersion = '1.7.1'
    }

    repositories {
        google()
        jcenter()
    }

    dependencies {
        classpath 'com.android.tools.build:gradle:3.0.1'
        classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion"
    }
}

allprojects {
    repositories {
        google()
        jcenter()
    }
}

应用程式:

android {
    compileSdkVersion 26
    buildToolsVersion '26.0.3'

    defaultConfig {
        applicationId "com.example.android"

        minSdkVersion 17
        targetSdkVersion 26

        versionCode 1
        versionName "0.1"

        ...

        multiDexEnabled true

        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }

    buildTypes {
        debug {
            minifyEnabled true
            useProguard false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
        release {
            minifyEnabled true
            shrinkResources true
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])

    implementation 'com.android.support:multidex:1.0.2'

    implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlinVersion"

    ...

    implementation "android.arch.lifecycle:extensions:$archLibVersion"
    implementation "android.arch.persistence.room:runtime:$archLibVersion"
    kapt "android.arch.lifecycle:compiler:$archLibVersion"
    kapt "android.arch.persistence.room:compiler:$archLibVersion"

    ...

    // Test libs

    testImplementation 'junit:junit:4.12'
    testImplementation 'org.mockito:mockito-core:2.8.47'
    testImplementation "org.powermock:powermock-module-junit4:$powerMockVersion"
    testImplementation "org.powermock:powermock-api-mockito2:$powerMockVersion"
    testImplementation 'org.hamcrest:hamcrest-library:1.3'
    testImplementation "android.arch.core:core-testing:$archLibVersion"
    testImplementation "com.squareup.okhttp3:mockwebserver:3.9.1"

    androidTestImplementation "com.android.support.test:runner:$androidTestLibVersion"
    androidTestImplementation "com.android.support.test:rules:$androidTestLibVersion"
    androidTestImplementation("com.android.support.test.espresso:espresso-core:$espressoVersion", {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    androidTestImplementation "com.android.support.test.espresso:espresso-contrib:$espressoVersion"
    androidTestImplementation "com.android.support.test.espresso:espresso-intents:$espressoVersion"
    androidTestImplementation "com.android.support.test.espresso:espresso-idling-resource:$espressoVersion"
    androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3'

    androidTestUtil "com.android.support.test:orchestrator:$androidTestLibVersion"
}

这是我的仪器化测试:

@RunWith(AndroidJUnit4::class)
class FooDaoTest {

    private lateinit var db: AppDatabase

    private lateinit var fooDao: FooDao


    @Before
    fun setUp() {
        db = Room.inMemoryDatabaseBuilder(InstrumentationRegistry.getContext(), AppDatabase::class.java).build()

        fooDao = db.fooDao()
    }

    @After
    fun closeDb() {
        // db.close()
    }

    @Test
    fun save() {
        ...
    }
}

我猜这个错误与multidex有关,但我无法找到原因。有谁知道为什么会这样,我怎么能让这个测试工作?

1 个答案:

答案 0 :(得分:0)

似乎这是我遇到的一些构建问题,我正在发布为我修复的内容,以防它帮助其他人:

我尝试过很多次从Android Studio清理项目并且问题仍然存在,但是,当我从命令行清除项目时使用:

./gradlew clean

然后再次运行测试。

<强>更新

经过一些测试,我发现真正的问题在于我的Proguard配置。我在调试版本中使用Proguard,它删除了所有未使用的类/方法(Room.inMemoryDatabaseBuilder()是其中之一)。一旦我为调试版本禁用了Proguard并清理了上面指定的项目,它就开始工作了。总而言之,解决方案是:

  1. 为调试版本禁用Proguard(或将测试Proguard配置添加到调试版本中):
  2. 选项1:

    buildTypes {
    //      debug {
    //          minifyEnabled true
    //          useProguard false
    //          proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    //      }
            ...
    }
    

    选项2:

    buildTypes {
            debug {
                minifyEnabled true
                useProguard false
                proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    
                testProguardFiles 'proguard-rules-test.pro'
            }
            ...
    }
    

    proguard-rules-test.pro的内容取决于您的应用所需。

    1. 从命令行清除项目:

      ./gradlew clean