0

我有一个列表,其中每一行都包含一个名称和一个调用选项上下文菜单的按钮。我想编写一个测试来验证以下内容

  1. 上下文菜单包含正确的 NUMBER 个项目
  2. 上下文菜单包含正确的值
  3. 上下文菜单不包含任何不必要的选项(上面的检查 1 和 2 将测试这种情况)

我还想在长选项目时测试 actionBar 和 actionBar 溢出菜单的内容。

对于这两个测试,我可以编写一个检查以确保有一个显示正确“标签”的视图元素(即使用 onView(withText(this.elementText) 查找视图)。但是我有 2 个操作具有相同的标签但不同的 ID,我需要确保在上下文菜单/长按菜单中执行正确的操作。

我不能使用我在 XML 中为上下文菜单指定的 ID,因为 Android 的上下文菜单视图没有这些 ID,而是包含一个内部 Android ID(请参见下面的屏幕截图)。在此处输入图像描述

当我使用 Robotium 编写测试时,我必须获取某种类型的所有当前视图并通过它们进行解析,检查它们是否是 actionBar 项目,请参见下面的示例代码。

public static List<MenuItemImpl> getLongClickMenuItems(String itemName) {
    List<MenuItemImpl> menuItems = new ArrayList<>();

    // long select the item
    solo.clickLongOnText(itemName);

    // get the children of the of the long click action bar
    ArrayList<ActionMenuView> outViews = solo.getCurrentViews(ActionMenuView.class, solo.getView(R.id.action_mode_bar));

    if (!outViews.isEmpty()) {
        // get the first child which contains the action bar actions
        ActionMenuView actionMenuView = outViews.get(0);
        // loop over the children of the ActionMenuView which is the individual ActionMenuItemViews
        // only a few fit will fit on the actionBar, others will be in the overflow menu
        int count = actionMenuView.getChildCount();
        for (int i = 0; i < count; i++) {
            View child = actionMenuView.getChildAt(i);

            if (child instanceof ActionMenuItemView) {
                menuItems.add(((ActionMenuItemView) child).getItemData());
            } else {
                // this is the more button, click on it and wait for the popup window
                // which will contain a list of ListMenuItemView
                // As we are using the AppCompat the actionBar's menu items are the
                // the AppCompat's ListMenuItemView (android.support.v7.view.menu.ListMenuItemView)
                // In the context menu, the menu items are Android's native ListMenuItemView
                // (com.android.internal.view.menu.ListMenuItemView)
                solo.clickOnView(child);
                solo.waitForView(ListMenuItemView.class);
                ArrayList<ListMenuItemView> popupItems = solo.getCurrentViews(ListMenuItemView.class);
                for (ListMenuItemView lvItem : popupItems) {
                    menuItems.add(lvItem.getItemData());
                }

                // close the more button actions menu
                solo.goBack();
            }
        }
    }

    // get out of long click mode
    solo.goBack();

    return menuItems;
}

有谁知道我如何使用 Expresso 获取 Context Row 菜单项列表。

有谁知道我如何使用 Expresso 获取 actionBar 项目(包括溢出菜单中的所有项目)?

4

2 回答 2

0

非常感谢dominicoder给了我这个问题的答案。处理他们的回复,我设法让它工作。

我不使用“isAssignableFrom(AdapterView.class)”,而是使用“isAssignableFrom(ListView.class)”。

然后,我使用提供的完全相同的匹配器“dominicoder”来验证上下文菜单项计数。

使用“dominicoder's”示例匹配器,我可以自己编写一个代码来检查 ListView 中某个位置的 MenuItem,我可以比较 ID 以确保它是我期望的 ID。

public boolean verifyRowContextMenuContents(String name, MyActionObject[] actions){
    // invoke the row context menu
    clickRowActionButton(name);

    // The Context Menu Popup contains a ListView
    int expectedItemCount = actions.length;

    // first check the Popup's listView contains the correct number of items
    onView(isAssignableFrom(ListView.class))
            .check(matches(correctNumberOfItems(expectedItemCount)));

    // now check the order and the IDs of each action in the menu is the expected action
    for (int i = 0; i < expectedItemCount; i++) {
        onView(isAssignableFrom(ListView.class))
                .check(matches(correctMenuId(i, actions[i].getId())));
    }

    // close the context menu
    pressBack();

    return true;
}

private static Matcher<View> correctNumberOfItems(final int itemsCount) {
    return new BoundedMatcher<View, ListView>(ListView.class) {
        @Override
        public void describeTo(Description description) {
            description.appendText("with number of items: " + itemsCount);
        }

        @Override
        protected boolean matchesSafely(ListView listView) {
            ListAdapter adapter = listView.getAdapter();
            return adapter.getCount() == itemsCount;
        }
    };
}

private static Matcher<View> correctMenuId(final int position, final int expectedId) {
    return new BoundedMatcher<View, ListView>(ListView.class) {
        @Override
        public void describeTo(Description description) {
            description.appendText("with position : " + position + " expecting id: " + expectedId);
        }

        @Override
        protected boolean matchesSafely(ListView listView) {
            ListAdapter adapter = listView.getAdapter();
            Object obj = adapter.getItem(position);
            if (obj instanceof MenuItem){
                MenuItem menuItem = (MenuItem)obj;
                return menuItem.getItemId() == expectedId;
            }
            return false;
        }
    };
}   

使用此代码,我可以检查上下文菜单包含正确数量的菜单项,并且菜单中的项目是我期望的项目(使用 ID 验证)和我期望的顺序。

非常感谢“dominicoder”。很遗憾,您无法将两个答案都标记为正确,因为实际上您实际上给了我正确的答案。

于 2017-06-19T16:42:23.367 回答
0

如果我正确理解了您的问题,您应该能够使用onData()方法与上下文菜单进行交互,因为它们只是AdapterViews(从您的屏幕截图中注意到弹出窗口是 a ListPopupWindow$DropDownListView)。

所以你应该能够做这样的事情:

onView(withText("Item Label")).perform(longClick());
final int expectedItemCount = 10;

// Now the floating popup should be showing,
// first assert it has the expected item count

onView(isAssignableFrom(AdapterView.class))
.check(matches(withItemCount(expectedItemCount)));

// Now assert each entry (which should just be a string) is shown correctly
for (int i = 0; i < expectedItemCount; i++) {
    String expectedItemText = getExpectedItemTextForIndex(i);
    onData(instanceOf(String.class)).atPosition(i)
        .check(matches(withText(expectedItemText)));
}

上面的withItemCount匹配器是一个简单的匹配器,它针对给定的适配器视图的适配器计数进行断言:

public static Matcher<View> withNumberOfItems(final int itemsCount) {
    return new BoundedMatcher<View, AdapterView>(AdapterView.class) {
        @Override
        public void describeTo(Description description) {
            description.appendText("with number of items: " + itemsCount);
        }

        @Override
        protected boolean matchesSafely(AdapterView item) {
            return item.getAdapter().getCount() == itemsCount;
        }
    };
}

我认为同样的概念应该适用于操作栏溢出菜单。

我不清楚你的意思是:

对于这两个测试,我可以编写一个检查以确保有一个显示正确“标签”的视图元素(即使用 onView(withText(this.elementText) 查找视图)。但是我有 2 个操作具有相同的标签但不同的 ID,我需要确保在上下文菜单/长按菜单中执行正确的操作。

但是atPosition应该让您准确地获得您对列表感兴趣的视图,onChildView如果您需要在列表中的给定项目中定位为子视图,您可以添加。

希望有帮助!

于 2017-06-17T17:18:54.430 回答