Android检测测试无法找到主要资源

时间:2016-05-26 21:06:07

标签: android android-resources android-testing android-espresso r.java-file

我已经用头撞了一下墙,我已经取得了一些进展,但我现在已经陷入困境了。

我已经在src/androidTest/res中添加了一些Android资源,并且我已经在我编写的单元测试中访问了它们。

然而,看起来它无法访问src/main/res中定义的资源 - 它们似乎不会构建到构建.R中,即使我可以访问它们在Android Studio中没问题(没有编译器投诉)。

以下是我的更多设置:

的build.gradle:

android {
    compileSdkVersion 23
    buildToolsVersion '23.0.3'

    defaultConfig {
        applicationId "com.my.app"
        minSdkVersion 15
        targetSdkVersion 23
        versionName APP_VERSION
        versionCode getBuildNumber()

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

    ...

    buildTypes {
        debug {
            versionNameSuffix "+1-DEBUG"
            applicationIdSuffix ".debug"
        }

        beta {
            versionNameSuffix "+1-BETA"
            applicationIdSuffix ".beta"

            signingConfig signingConfigs.release
        }

        release {
            ...
        }
    }
    ...
}

测试类

import com.my.app.R;
...

public class LaunchActivityTest extends ActivityInstrumentationTestCase2<LaunchActivity> {

    ...

    public LaunchActivityTest() {
        super(LaunchActivity.class);
    }

    @BeforeClass
    @Override
    public void setUp() throws Exception {
        super.setUp();

        injectInstrumentation(InstrumentationRegistry.getInstrumentation());
        LaunchActivity launchActivity = getActivity();

        // read from file
        InputStream inputStream = launchActivity.getResources().openRawResource(
            com.my.app.debug.test.R.raw.test_config);

        ...
    }

    public void testSetUp() {
        ...

        onView(withId(R.id.username_field)).perform(
                typeText(JSONUtils.getString(mJSONConfig, "username")));

我得到com.my.app.debug.test.R.raw.test_config的代码运行得很好(没有崩溃),而且该文件位于src/androidTest/res/raw/

尝试onView(withId(R.id.username_field)...时测试结果 - 该ID位于src/main/res/layout/activity_launch.xml的LaunchActivity布局中。

这些测试已经运行了很多,所以我知道它们有效,一切都在正确的位置。我搬家的原因是因为我想把测试资源放到正确的位置。资源是否合并?现在资源ID不匹配吗?

java.lang.NullPointerException
at android.support.test.espresso.core.deps.guava.base.Preconditions.checkNotNull(Preconditions.java:210)
at android.support.test.espresso.action.TypeTextAction.<init>(TypeTextAction.java:67)
at android.support.test.espresso.action.TypeTextAction.<init>(TypeTextAction.java:56)
at android.support.test.espresso.action.ViewActions.typeText(ViewActions.java:363)
at com.my.app.package.stuff.LaunchActivityTest.testSetUp(LaunchActivityTest.java:74)
at java.lang.reflect.Method.invoke(Native Method)
at android.test.InstrumentationTestCase.runMethod(InstrumentationTestCase.java:214)

修改 我接受的答案是,我的问题是NPE,但这里发生了什么。上面,输入流不是以纯文本形式读取我的资源。我最终不得不改变并使用仪器中的上下文而不是像这样的活动:

injectInstrumentation(InstrumentationRegistry.getInstrumentation());
Context context = getInstrumentation().getContext();

// read credentials and org from config file
InputStream inputStream = context.getResources().openRawResource(
    com.spatialnetworks.fulcrum.debug.test.R.raw.test_config);

我没有找到它的原因是因为我正在捕捉异常并继续前进,因为它是一个单元测试而且这个例外确实没有发生......但我错了。

1 个答案:

答案 0 :(得分:0)

此问题不是缺少名称为R.id.username_field的资源。相反,它来自一个null String(应该键入的字符串)。

首先尝试检查输入字符串是否为空。

String json = JSONUtils.getString(mJSONConfig, "username");
assertNotNull(json)
onView(withId(R.id.username_field)).perform(typeText(json));