我正在尝试验证ListView
不包含特定项目。这是我正在使用的代码:
onData(allOf(is(instanceOf(Contact.class)), is(withContactItemName(is("TestName")))))
.check(doesNotExist());
当名称存在时,由于check(doesNotExist())
我正确地收到错误。当名称不存在时,我收到以下错误,因为allOf(...)
与任何内容都不匹配:
Caused by: java.lang.RuntimeException: No data found matching:
(is an instance of layer.sdk.contacts.Contact and is with contact item name:
is "TestName")
如何获得onData(...).check(doesNotExist())
等功能?
修改
我有一个糟糕的黑客通过使用try / catch并检查事件的getCause()来获得我想要的功能。我很想用一种好的技术取代它。
答案 0 :(得分:13)
根据Espresso样本,您不得使用onData(...)
检查适配器中是否存在视图。看看这个 - link。阅读“断言数据项不在适配器中”部分。您必须与找到AdapterView的onView()
一起使用匹配器。
基于上面链接的Espresso样本:
匹配
private static Matcher<View> withAdaptedData(final Matcher<Object> dataMatcher) {
return new TypeSafeMatcher<View>() {
@Override
public void describeTo(Description description) {
description.appendText("with class name: ");
dataMatcher.describeTo(description);
}
@Override
public boolean matchesSafely(View view) {
if (!(view instanceof AdapterView)) {
return false;
}
@SuppressWarnings("rawtypes")
Adapter adapter = ((AdapterView) view).getAdapter();
for (int i = 0; i < adapter.getCount(); i++) {
if (dataMatcher.matches(adapter.getItem(i))) {
return true;
}
}
return false;
}
};
}
然后onView(...)
,其中R.id.list
是适配器ListView的ID:
@SuppressWarnings("unchecked")
public void testDataItemNotInAdapter(){
onView(withId(R.id.list))
.check(matches(not(withAdaptedData(is(withContactItemName("TestName"))))));
}
还有一个建议 - 避免编写is(withContactItemName(is("TestName"))
将以下代码添加到匹配器中:
public static Matcher<Object> withContactItemName(String itemText) {
checkArgument( itemText != null );
return withContactItemName(equalTo(itemText));
}
然后您将拥有更具可读性和清晰度的代码is(withContactItemName("TestName")