从IDE运行测试但不从命令行运行

问题描述 投票:7回答:1

我写过单元测试,仪器测试和浓缩咖啡测试。我还使用Android Test Orchestrator运行它们以获得清晰的应用状态(对于Espresso测试非常重要)。当我从Android Studio运行这些测试时,一切正常。但是当我尝试使用命令行时,我收到错误,我无法理解。

当我尝试:

./gradlew connectedAndroidTest or connectedDebugAndroidTest

我收到:

Instrumentation run failed due to 'java.lang.IllegalStateException'
com.android.builder.testing.ConnectedDevice > No tests found.[SM-J106H - 
6.0.1] FAILED 
No tests found. This usually means that your test classes are not in the 
form that your test runner expects (e.g. don't inherit from TestCase or lack 
@Test annotations).

当然我所有的测试都是用@Test注释的。

当我尝试

adb shell am instrument -w my.package/android.test.InstrumentationTestRunner

我收到

INSTRUMENTATION_STATUS: Error=Unable to find instrumentation info for: 
ComponentInfo{mypackage/myCustomRunner}
INSTRUMENTATION_STATUS_CODE: -1

我使用CustomTestRunner,但错误保持不变。

当我尝试

 adb shell 'CLASSPATH=$(pm path android.support.test.services) app_process / 
 \
 android.support.test.services.shellexecutor.ShellMain am instrument -w -e \
 targetInstrumentation 
 mypackage/myTestRunner \
 android.support.test.orchestrator/.AndroidTestOrchestrator'

然后输出等于:

Time: 0

OK (0 tests)

有人可以向我解释我做错了什么吗?我无法理解为什么在命令行中没有任何作用,但在Android Studio中一切正常。

/编辑

我的CustomRunner:

public final class CustomTestRunner extends AndroidJUnitRunner {

private static final String TAG = "CustomTestRunner";

@Override
public void onStart() {

    try {
        TestListener.getInstance().testRunStarted();
    } catch (Exception e) {
        e.printStackTrace();
    }

    runOnMainSync(new Runnable() {
        @Override
        public void run() {
            Context app = CustomTestRunner.this.getTargetContext().getApplicationContext();

            CustomTestRunner.this.disableAnimations(app);
        }
    });

    ActivityLifecycleMonitorRegistry.getInstance().addLifecycleCallback(new ActivityLifecycleCallback() {
        @Override public void onActivityLifecycleChanged(Activity activity, Stage stage) {
            if (stage == Stage.PRE_ON_CREATE) {
                activity.getWindow().addFlags(FLAG_DISMISS_KEYGUARD | FLAG_TURN_SCREEN_ON | FLAG_KEEP_SCREEN_ON);
            }
        }
    });

    RxJavaPlugins.setIoSchedulerHandler(new Function<Scheduler, Scheduler>() {
        @Override
        public Scheduler apply(Scheduler scheduler) throws Exception {
            return Schedulers.from(AsyncTask.THREAD_POOL_EXECUTOR);
        }
    });

    RxJavaPlugins.setComputationSchedulerHandler(new Function<Scheduler, Scheduler>() {
        @Override
        public Scheduler apply(Scheduler scheduler) throws Exception {
            return Schedulers.from(AsyncTask.THREAD_POOL_EXECUTOR);
        }
    });

    RxJavaPlugins.setNewThreadSchedulerHandler(new Function<Scheduler, Scheduler>() {
        @Override
        public Scheduler apply(Scheduler scheduler) throws Exception {
            return Schedulers.from(AsyncTask.THREAD_POOL_EXECUTOR);
        }
    });

    super.onStart();
}


@Override
public void finish(int resultCode, Bundle results) {
    try {
        TestListener.getInstance().testRunFinished();
    } catch (Exception e) {
        e.printStackTrace();
    }

    super.finish(resultCode, results);
    enableAnimations(getContext());
}

private void disableAnimations(Context context) {
    int permStatus = context.checkCallingOrSelfPermission(Manifest.permission.SET_ANIMATION_SCALE);
    if (permStatus == PackageManager.PERMISSION_GRANTED) {
        setSystemAnimationsScale(0.0f);
    }
}

private void enableAnimations(Context context) {
    int permStatus = context.checkCallingOrSelfPermission(Manifest.permission.SET_ANIMATION_SCALE);
    if (permStatus == PackageManager.PERMISSION_GRANTED) {
        setSystemAnimationsScale(1.0f);
    }
}

private void setSystemAnimationsScale(float animationScale) {
    try {
        Class<?> windowManagerStubClazz = Class.forName("android.view.IWindowManager$Stub");
        Method asInterface = windowManagerStubClazz.getDeclaredMethod("asInterface", IBinder.class);
        Class<?> serviceManagerClazz = Class.forName("android.os.ServiceManager");
        Method getService = serviceManagerClazz.getDeclaredMethod("getService", String.class);
        Class<?> windowManagerClazz = Class.forName("android.view.IWindowManager");
        Method setAnimationScales = windowManagerClazz.getDeclaredMethod("setAnimationScales", float[].class);
        Method getAnimationScales = windowManagerClazz.getDeclaredMethod("getAnimationScales");

        IBinder windowManagerBinder = (IBinder) getService.invoke(null, "window");
        Object windowManagerObj = asInterface.invoke(null, windowManagerBinder);
        float[] currentScales = (float[]) getAnimationScales.invoke(windowManagerObj);
        for (int i = 0; i < currentScales.length; i++) {
            currentScales[i] = animationScale;
        }
        setAnimationScales.invoke(windowManagerObj, new Object[]{currentScales});
        Log.d(TAG, "Changed permissions of animations");
    } catch (Exception e) {
        Log.e(TAG, "Could not change animation scale to " + animationScale + " :'(");
    }
}
}

这就是我的Espresso测试类之一(可见RecyclerView列表项的DetailView)

@RunWith(AndroidJUnit4.class)
public class DetailActivityTest {

private IdlingResource mInitialInformationIdlingResource;

@Before
public void setUp() throws UiObjectNotFoundException, InterruptedException {
    SetupHelper.setUp();

    File tempRealmFile = new File(InstrumentationRegistry.getTargetContext().getFilesDir(), PRODUCT_REALM_DB_FILE_NAME);

    if(tempRealmFile.length() <= 8192 && CustomAssertion.doesViewExist(R.id.countries)) {

        onView(withId(R.id.countries))
                .check(matches(isDisplayed()));
        onData(anything()).inAdapterView(withId(R.id.countries)).atPosition(3).perform(click());

        mInitialInformationIdlingResource = new InitialInformationIdlingResource();
        IdlingRegistry.getInstance().register(mInitialInformationIdlingResource);

        Espresso.onView(withText("OK"))
                .check(matches(isDisplayed()))
                .perform(click());
    }
}

@Test
public void ensureDetailViewWorks() throws UiObjectNotFoundException {
    SetupHelper.checkForDialogs();

    onView(withId(R.id.show_filter_results)).perform(scrollTo());

    onView(withId(R.id.show_filter_results))
            .check(matches(isDisplayed())).perform(scrollTo(), click());

    onView(withId(R.id.resultList)).perform(RecyclerViewActions.actionOnItemAtPosition(1, click()));
    onView(withId(R.id.main_container)).check(matches(isDisplayed()));
    onView(withId(R.id.detail_item_icon)).check(matches(isDisplayed()));
}

}

我在build.gradle中的构建类型

    buildTypes {

    debug {
        debuggable true
        minifyEnabled false
        versionNameSuffix "-debug"
        manifestPlaceholders = [HOCKEYAPP_APP_ID: ""]
        testCoverageEnabled true
    }

    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        signingConfig signingConfigs.release
        versionNameSuffix "-release"
        manifestPlaceholders = [HOCKEYAPP_APP_ID: ""]
    }
}
android android-studio android-testing
1个回答
0
投票

查看设备/模拟器上的日志。在测试开始之前,app / test代码中的某些内容会崩溃。 “没有发现任何测试。这通常意味着您的测试类不是您的测试运行者所期望的形式。”对你完全没有帮助=)

© www.soinside.com 2019 - 2024. All rights reserved.