1)所有正在测试的设备/仿真器都禁用了动画。
2)我有一个@BeforeClass来构建我的Credentials对象。
3)我有一个IntenServiceIdlingResource和一个在@Before中注册的EventBusIdlingResource。
4)单击登录按钮时,IntentService将触发。在这种情况下,服务器(模拟服务器)返回500错误。该信息通过greenrobot的EventBus从IntentService发回UI,并显示Snackbar并显示错误消息。
以下是测试的代码:
@Test
public void a_userNamePasswordTest() throws Exception {
// email input
ViewInteraction userNameView = onView(withId(R.id.email));
// verify it's on screen and enabled
userNameView.check(matches(isDisplayed())).check(matches(isEnabled()));
// set the username
userNameView.perform(scrollTo(), replaceText(credentials.username), closeSoftKeyboard());
// password input
ViewInteraction passwordView = onView(withId(R.id.password));
// verify it's on screen and enabled
passwordView.check(matches(isDisplayed())).check(matches(isEnabled()));
// set the password.
passwordView.perform(scrollTo(), replaceText(credentials.password), closeSoftKeyboard());
// sign in button
ViewInteraction signInButton = onView(withId(R.id.email_sign_in_button));
// verify the button
signInButton.check(matches(allOf(
isDisplayed(), isEnabled(), withText("Sign In"), withContentDescription("Sign In")
)));
// clickity click the button
signInButton.perform(scrollTo(), click());
// verify the snackbar text
onView(withText(startsWith("Server Error: 500"))).check(matches(isDisplayed()));
}
这是我通常得到的例外:
SignInExceptionTest> a_userNamePasswordTest [Nexus_6P_API_23(AVD) - 6.0]失败 android.support.test.espresso.NoMatchingViewException:找不到层次结构中的视图匹配:with text:一个以字符串开头的字符串 “服务器错误:500”
根据我的记录,我的闲置资源正在运作。但是查看日志的时间戳,异常发生在闲置资源空闲后大约5秒钟。
似乎资源空闲时和尝试查找视图之间存在延迟。
其他可能相关的细节:
我怎样才能修复这个测试,因为它不会变薄,除了让我的零食酒吧显示多长时间?
答案 0 :(得分:15)
Espresso在IdlingResource变为活动状态之后执行5秒等待,然后再次检查其是否空闲。
在我的案例中,这有两个负面影响。
首先,它会增加测试运行所需的时间。每次测试额外的5秒(或5的倍数)可以真正加起来。
其次,由于小吃栏立即显示,并且仅显示约3.5秒,几乎在您等待IdlingResource的任何时候,小吃店将在Espresso意识到资源闲置之前消失,难以测试。
ConditionWatcher,在这里描述: https://medium.com/azimolabs/wait-for-it-idlingresource-and-conditionwatcher-602055f32356#.9rms52osh
代码在这里: https://github.com/AzimoLabs/ConditionWatcher
为这两个问题提供解决方案。它不是5秒,而是默认为250毫秒,可以调整此值(setWatchInterval)。