• uiautomator 2.0 自定义testrunner使用


    1.继承 MonitoringInstrumentation

    public class MyRunner extends MonitoringInstrumentation {
    

    2.build gradle

    //如果有需要使用自己编写的unner执行脚本,就使用下面这行代码
     testInstrumentationRunner "runner.MyRunner"

    3.启动

    am instrument -w -e class com.u2.zhaotang.uiautomator2test.testcase.RemoteDeviceTestCase#test01 com.u2.zhaotang.uiautomator2test.test/runner.MyRunner

    4.具体实现

    public class MyRunner extends MonitoringInstrumentation {
        private static final String LOG_TAG = "MyRunner";
        private Bundle mArguments;
        private InstrumentationResultPrinter mInstrumentationResultPrinter = null;
        private RunnerArgs mRunnerArgs;
    
        @Override
        public void onCreate(Bundle arguments) {
            super.onCreate(arguments);
            Log.i(LOG_TAG, Arrays.toString(arguments.keySet().toArray()));
            mArguments = arguments;
            // build the arguments. Read from manifest first so manifest-provided args can be overridden
            // with command line arguments
            mRunnerArgs = new RunnerArgs.Builder()
                    .fromManifest(this)
                    .fromBundle(getArguments())
                    .build();
            for (ApplicationLifecycleCallback listener : mRunnerArgs.appListeners) {
                ApplicationLifecycleMonitorRegistry.getInstance().addLifecycleCallback(listener);
            }
    
            start();
        }
    
        /**
         * Get the Bundle object that contains the arguments passed to the instrumentation
         *
         * @return the Bundle object
         */
        private Bundle getArguments(){
            return mArguments;
        }
    
        // Visible for testing
        InstrumentationResultPrinter getInstrumentationResultPrinter() {
            return mInstrumentationResultPrinter;
        }
    
        @Override
        public void onStart() {
            super.onStart();
    
            Bundle results = new Bundle();
            try {
                TestExecutor.Builder executorBuilder = new TestExecutor.Builder(this);
                if (mRunnerArgs.debug) {
                    executorBuilder.setWaitForDebugger(true);
                }
    
                addListeners(mRunnerArgs, executorBuilder);
    
                TestRequest testRequest = buildRequest(mRunnerArgs, getArguments());
    
                results = executorBuilder.build().execute(testRequest);
    
            } catch (RuntimeException e) {
                final String msg = "Fatal exception when running tests";
                Log.e(LOG_TAG, msg, e);
                // report the exception to instrumentation out
                results.putString(Instrumentation.REPORT_KEY_STREAMRESULT,
                        msg + "
    " + Log.getStackTraceString(e));
            }
            finish(Activity.RESULT_OK, results);
        }
    
        @Override
        public void finish(int resultCode, Bundle results) {
            try {
                UsageTrackerRegistry.getInstance().trackUsage("AndroidJUnitRunner");
                UsageTrackerRegistry.getInstance().sendUsages();
            } catch (RuntimeException re) {
                Log.w(LOG_TAG, "Failed to send analytics.", re);
            }
            super.finish(resultCode, results);
        }
    
        private void addListeners(RunnerArgs args, TestExecutor.Builder builder) {
            if (args.suiteAssignment) {
                builder.addRunListener(new SuiteAssignmentPrinter());
            } else {
                builder.addRunListener(new LogRunListener());
                mInstrumentationResultPrinter = new InstrumentationResultPrinter();
                builder.addRunListener(mInstrumentationResultPrinter);
                builder.addRunListener(new ActivityFinisherRunListener(this,
                        new MonitoringInstrumentation.ActivityFinisher()));
                addDelayListener(args, builder);
                addCoverageListener(args, builder);
            }
    
            addListenersFromArg(args, builder);
        }
    
        private void addCoverageListener(RunnerArgs args, TestExecutor.Builder builder) {
            if (args.codeCoverage) {
                builder.addRunListener(new CoverageListener(args.codeCoveragePath));
            }
        }
    
        /**
         * Sets up listener to inject a delay between each test, if specified.
         */
        private void addDelayListener(RunnerArgs args, TestExecutor.Builder builder) {
            if (args.delayMsec > 0) {
                builder.addRunListener(new DelayInjector(args.delayMsec));
            } else if (args.logOnly && Build.VERSION.SDK_INT < 16) {
                // On older platforms, collecting tests can fail for large volume of tests.
                // Insert a small delay between each test to prevent this
                builder.addRunListener(new DelayInjector(15 /* msec */));
            }
        }
    
        private void addListenersFromArg(RunnerArgs args, TestExecutor.Builder builder) {
            for (RunListener listener : args.listeners) {
                builder.addRunListener(listener);
            }
        }
    
        @Override
        public boolean onException(Object obj, Throwable e) {
            InstrumentationResultPrinter instResultPrinter = getInstrumentationResultPrinter();
            if (instResultPrinter != null) {
                // report better error message back to Instrumentation results.
                instResultPrinter.reportProcessCrash(e);
            }
            return super.onException(obj, e);
        }
    
        /**
         * Builds a {@link TestRequest} based on given input arguments.
         * <p/>
         */
        // Visible for testing
        TestRequest buildRequest(RunnerArgs runnerArgs, Bundle bundleArgs) {
    
            RequestBuilder builder = createTestRequestBuilder(this, bundleArgs);
    
            // only scan for tests for current apk aka testContext
            // Note that this represents a change from InstrumentationTestRunner where
            // getTargetContext().getPackageCodePath() aka app under test was also scanned
            builder.addApkToScan(getContext().getPackageCodePath());
    
            builder.addFromRunnerArgs(runnerArgs);
    
            if (!runnerArgs.disableAnalytics) {
                if (null != getTargetContext()) {
                    UsageTracker tracker = new AnalyticsBasedUsageTracker.Builder(
                            getTargetContext()).buildIfPossible();
    
                    if (null != tracker) {
                        UsageTrackerRegistry.registerInstance(tracker);
                    }
                }
            }
    
            return builder.build();
        }
    
        /**
         * Factory method for {@link RequestBuilder}.
         */
        // Visible for testing
        RequestBuilder createTestRequestBuilder(Instrumentation instr, Bundle arguments) {
            return new RequestBuilder(instr, arguments);
        }
    }
  • 相关阅读:
    [HAOI2010]软件安装
    「HNOI2015」菜肴制作
    [ZJOI2007] 小Q的矩阵游戏 (模板—Dinic)
    「POI2012」约会 Rendezvous
    [APIO2016]划艇
    [CQOI2011]放棋子
    【SDOI2015】bzoj3990 排序
    [bzoj2242] [SDOI2011]计算器
    模板—BSGS
    【BZOJ1227】[SDOI2009]虔诚的墓主人
  • 原文地址:https://www.cnblogs.com/season-xie/p/6337698.html
Copyright © 2020-2023  润新知