在Android SDK中“Resources”-“Tutorials”下有“Notepad Tutorial”和“Activity Testing”两个项目,一个示例是指导你如何快速开发一个Android小程序,一个是指导你如何对项目进行测试,两个项目都适合在入门的时候好好学习。
其中的“Activity Testing”是对“Samples”-“Spinner”项目进行测试,其中包含了UI测试、状态破坏和状态恢复测试。这个项目只有一个Activity,测试起来也不麻烦,细心阅读文档就可以完成。但是一个程序只有一个Activity应该是很难遇见的吧,那么应该对多活动(Multi Activities)的程序进行测试呢?
其实我这也是随便整整,大家随便看看。
在查看SDK关于测试的章节后,有疑问如下:
测试Activity、Service、Provider都是自动化的,那么我们如何控制运行过程?
如何在界面模拟操作,如点击按钮,输入文字内容等等。
新建一个项目,项目名为Login,包名为com.vruc.android.login,程序名为Login,活动名为AuthenticateActivity;同时添加一个项目名为LoginTest,包名为com.vruc.android.login.test,程序名为LoginTest的测试项目。
完整的Login项目:
1.更改main.xml文件名为login.xml,更改代码为下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<EditText android:id="@+id/username_field"
android:layout_height="wrap_content" android:layout_width="match_parent"></EditText>
<EditText android:id="@+id/password_field"
android:layout_height="wrap_content" android:layout_width="match_parent"></EditText>
<Button android:text="Login" android:id="@+id/login_button"
android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
</LinearLayout>
2.打开AuthenticateActivity.java文件,为“@+id/login_button”添加点击事件,具体代码就是向WelcomeActivity传递当前“@+id/username_field”中的输入文字并结束当前activity,具体代码为下:
public class AuthenticateActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.login);
Button login = (Button) findViewById(R.id.login_button);
login.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
Intent i = new Intent(AuthenticateActivity.this,WelcomeActivity.class);
i.putExtra(ACCOUNT_SERVICE,((EditText) findViewById(R.id.username_field)).getText().toString());
startActivity(i);
finish();
}
});
}
}
。
3.在layout目录下添加新文件welcome.xml,更改代码为下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView android:id="@+id/welcome_message"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:textSize="15pt"></TextView>
</LinearLayout>
4.添加新的WelcomeActivity.java文件并在AndroidMainifest.xml中注册,重写onCreate事件,具体代码就是为“@+id/welcome_message”赋值,从LoginActivity中传递过来的“@+id/username_field”的值,具体代码为下:
public class WelcomeActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.welcome);
Intent i = this.getIntent();
((TextView)findViewById(R.id.welcome_message)).setText(i.getStringExtra(ACCOUNT_SERVICE));
}
现在可以运行一下Login项目,可以发现填写在“@+id/username_field”中的文字在点击“@+id/login_button”按钮后出现在了WelcomeActivity中。
完整的LoginTest项目
1.添加LoginTest.java文件,继承类为android.test.InstrumentationTestCase
2.完整LoginTest.java中测试代码:
public static final String TEST_USERNAME = "TEST_USERNAME";
public static final String TEST_PASSWORD = "TEST_PASSWORD";
public void testUserLogin() {
// 注册最开始的活动并运行
Instrumentation instrumentation = getInstrumentation();
ActivityMonitor monitor = instrumentation.addMonitor(
AuthenticateActivity.class.getName(), null, false);
// 运行活动
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.setClassName(instrumentation.getTargetContext(), AuthenticateActivity.class.getName());
instrumentation.startActivitySync(intent);
// 等待Authenticate活动开始
Activity currentActivity = getInstrumentation().waitForMonitorWithTimeout(monitor, 5);
assertTrue(currentActivity != null);
// 自动输入预定的用户名
View currentView = currentActivity.findViewById(com.vruc.android.login.R.id.username_field);
assertTrue(currentView != null);
TouchUtils.clickView(this, currentView);
instrumentation.sendStringSync(TEST_USERNAME);
// 自动输入预定的密码
currentView = currentActivity.findViewById(com.vruc.android.login.R.id.password_field);
assertTrue(currentView != null);
TouchUtils.clickView(this, currentView);
instrumentation.sendStringSync(TEST_PASSWORD);
// 移除当前活动监视,注册新的活动监视,要在还没有按下按钮前准备
instrumentation.removeMonitor(monitor);
monitor = instrumentation.addMonitor(WelcomeActivity.class.getName(), null, false);
// 自动点击登陆按钮
currentView = currentActivity.findViewById(com.vruc.android.login.R.id.login_button);
assertTrue(currentView != null);
TouchUtils.clickView(this, currentView);
// 等待Welcome活动开始
currentActivity = getInstrumentation().waitForMonitorWithTimeout(monitor, 5);
currentView = currentActivity.findViewById(com.vruc.android.login.R.id.welcome_message);
assertTrue(currentView != null);
assertEquals(TEST_USERNAME, ((TextView) currentView).getText().toString());
}
运行测试程序后可以发现testUserLogin顺利通过,也可以在模拟器查看具体的运行过程,就像你新手操作模拟器一般。
接下来解释下“Instrumentation”类,未完待续。。。。。。。。
分享到:
相关推荐
《Android UI 测试框架详解——以android-ui-test-runner-master为例》 在移动应用开发中,UI测试是确保产品质量的关键环节。Android平台提供了多种测试工具,其中`android-ui-test-runner`是一个用于自动化测试...
**PyPI 官网下载 | lava-android-test-0.7.tar.gz** PyPI(Python Package Index)是Python软件包的官方仓库,它为开发者提供了一个平台来发布他们的Python库,并让其他用户能够方便地下载和安装。在本案例中,我们...
android-ab-test-builder Simple tool which help you to implement A/B Test. Download Comming soon. Code Preparation Prepare enum. enum ButtonColorPatterns { RED, GREEN, YELLOW } Build ABTest instance /...
android-test-plugin-host-additional-test-output-proto-30.3.1-sources.jar
赠送jar包:spring-boot-test-autoconfigure-2.2.8.RELEASE.jar; 赠送原API文档:spring-boot-test-autoconfigure-2.2.8.RELEASE-javadoc.jar; 赠送源代码:spring-boot-test-autoconfigure-2.2.8.RELEASE-sources...
赠送jar包:spring-boot-test-autoconfigure-2.0.6.RELEASE.jar; 赠送原API文档:spring-boot-test-autoconfigure-2.0.6.RELEASE-javadoc.jar; 赠送源代码:spring-boot-test-autoconfigure-2.0.6.RELEASE-sources...
赠送jar包:spring-boot-test-2.2.8.RELEASE.jar; 赠送原API文档:spring-boot-test-2.2.8.RELEASE-javadoc.jar; 赠送源代码:spring-boot-test-2.2.8.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-boot-...
赠送jar包:spring-boot-test-autoconfigure-2.0.4.RELEASE.jar; 赠送原API文档:spring-boot-test-autoconfigure-2.0.4.RELEASE-javadoc.jar; 赠送源代码:spring-boot-test-autoconfigure-2.0.4.RELEASE-sources...
赠送jar包:spring-test-5.2.7.RELEASE.jar; 赠送原API文档:spring-test-5.2.7.RELEASE-javadoc.jar; 赠送源代码:spring-test-5.2.7.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-test-5.2.7.RELEASE....
CTIA-Certification-Wi-Fi-Alliance-Test-Plan-for-RF-Perf-Eval-of-Wi-Fi-Mobile-Converged-Devices-V4.0.1
赠送jar包:spring-test-4.2.2.RELEASE.jar; 赠送原API文档:spring-test-4.2.2.RELEASE-javadoc.jar; 赠送源代码:spring-test-4.2.2.RELEASE-sources.jar; 赠送Maven依赖信息文件:spring-test-4.2.2.RELEASE....
test_auto_flash
"parse-android-test-app"是一个开源项目,专门设计用于测试Android应用程序对服务器数据的解析能力。这个项目可以帮助开发者验证和优化他们的数据解析逻辑,确保在实际应用中能够正确、高效地处理各种数据格式。 ...
"android-wifi-test-master.zip" 是一个专门为这个目的而创建的项目,它提供了测定Wi-Fi信号强度和估计设备与接入点之间距离的能力。下面将详细探讨相关的知识点。 1. **Android Wi-Fi API**: Android操作系统提供...
jstest-gtk-0.1.0 源码, 要安装以下工具: apt-get install scons apt-get install cmake apt-get install sigc++ apt-get install gtkmm-2.4 apt-get install libboost-all-dev 如果是ubuntu 14.04的话,需要在...
Test-driven development (TDD) is a modern software development practice that can dramatically reduce the number of defects in systems, produce more maintainable code, and give you the confidence to ...
python-ui-auto-test python + selenium + unittest + PO + BeautifulReport + redis + mysql + ParamUnittest + 多线程 + 截图/日志 + 多浏览器支持 + RemoteWebDriver +文件读取 + 全参数化构建 搭建过程中非常...
本文将详细探讨`spring-test-3.2.0.RELEASE.jar`这一版本中的核心特性、使用方法及其在实际项目中的应用。 首先,`spring-test`模块的核心目标是简化Spring应用的测试工作,它提供了对JUnit、TestNG等主流测试框架...
离线安装包,亲测可用
Android Dagger Demo Testing with Dagger 2, Espresso 2 and Mockito. Blog posts: http://blog.sqisland.com/2015/04/dagger-2-espresso-2-mockito.html ...