zoukankan      html  css  js  c++  java
  • 转一篇老外写的博文:Android automated testing (Robotium)

    Robotium的中文资料甚少,只得求助于老外,发现了一篇不错的文章:https://blog.codecentric.de/en/2011/03/android-automated-testing-robotium/

    但是不知道是不是公司网络问题,codecentric网站打开超慢,故转的博文到这里备用,向原作者致敬!

    开始正文:

    In the previous GWT project we worked with acceptance tests and the Robot Framework. The question I asked myself was if something similar exists for Android. Yes, it exists, and its name is Robotium.
    Robotium is a test framework created to write robust automatic black-box test cases for Android applications. With the support of Robotium, test case developers can write function, system and acceptance test scenarios, spanning multiple Android activities. It allows you to create test cases for Android Activities, Dialogs, Toasts, Menus and Context Menus etc.

    This is one very simple example how to write Robotium tests:

      1. Create an Android test project if one does not exist (explained earlier in my post: Android testing in brief).
      2. Create a test class. For example, if you want to test activity “MyAndroidActivity”, your test class then needs to extend android.test.ActivityInstrumentationTestCase2.
    public class MyAndroidActivityTest extends android.test.ActivityInstrumentationTestCase2 {
      1. Download robotium-solo-xxx.jar library or add a dependency to it in the *.pom file of your maven project. It’s open source at Google Code.
      2. Declare a Solo class instance. When writing tests there is no need to plan for or expect new activities in the test case. All is handled automatically by Robotium-Solo. Robotium-Solo can be used in conjunction with ActivityInstrumentationTestCase2. The test cases are written from a user perspective were technical details are not needed.
    private Solo solo;
      1. Create a test class constructor.
    public MyAndroidActivityTest() {
    	super("com.example", MyAndroidActivity.class);
    }
      1. Override the setUp() and tearDown() methods. Overriden  setUp() method is usually the  place where you  instantiate Solo object. In teardDown()  method solo.finalize()  is called and all activites that have been opened are finished.
    @Override
    protected void setUp() throws Exception {
    	super.setUp();
    	solo = new Solo(getInstrumentation(), getActivity());
    }
     
    @Override
    protected void tearDown() throws Exception {
    	try {
    		solo.finalize();
    	} catch (Throwable e) {
    		e.printStackTrace();
    	}
    	getActivity().finish();
    	super.tearDown();
    }
      1. Create a test method. Robotium-Solo offers a number of methods for testing various UI events such as: clickOnText(), enterText(), clearEditText, goBack, serachText() etc.
    public void testDisplayedText() throws InterruptedException {
    	Assert.assertTrue(solo.searchText("Hello world,my activity"));
    	Assert.assertTrue(getActivity().getString(R.string.hello_string).equals(solo.getCurrentActivity().getTitle()));
    }

    As you can see it is all very similar to Robot-Selenium tests. When you decide to run this test you have to start the Emulator or connect an actual device to your computer. Then you just select your test class and select Run As/ Android JUnit test. After that you can see your application start and some actions execute. The JUnit view in your Eclipse window shows the current progress and success of the test runs.

    Robotium benefits

    Robotium tests have great readability compared to standard instrumentation tests. No great knowledge of the tested application is needed, just things like the name of the Activity, displayed texts or anything related to application’s UI. But one of the greatest benefits for us is the possibility to integrate tests with Maven as part of continuous integration.

    更新部分博主的问答:

    Shivang Seth says:

    Would you elaborate on how to write test cases for an application having multiple activities/services. Should we extend the test case classes from android.test.ActivityInstrumentationTestCase2 or android.test.InstrumentationTestCase? An example would be very handy. Thank you :)

    Mihal Celovski says:

    solo.clickOnButton(“Start Activity1″); // start the first activity
    Assert.assertTrue(solo.searchText(“Some text on Activity1″));
    Assert.assertTrue(getActivity().getString(R.string.activity1_title)
    .equals(solo.getCurrentActivity().getTitle()));

    solo.goBack(); // go back to start page(activity)

    solo.clickOnButton(“Start Activity2″); // start the second activity

  • 相关阅读:
    Android 4.0锁屏机制类之间的调用关系
    给盲目兴奋的程序员们的建议
    Hadoop相对于RDBMS、HPC、志愿计算的比较
    vmware7.1.14的vmware tools不支持opensuse12的解决过程
    集群的分类
    Suse linux和OpenSuse的区别和联系
    Apache Hadoop项目
    linux下安装JDK
    sudo的详细用法
    ubuntu和debian环境下vmware虚拟机共享目录无法挂载的问题解决办法
  • 原文地址:https://www.cnblogs.com/dzblog/p/3640187.html
Copyright © 2011-2022 走看看