gpt4 book ai didi

android - 使用 FragmentScenario 测试 fragment 时如何测试与菜单的交互

转载 作者:行者123 更新时间:2023-12-02 16:06:14 29 4
gpt4 key购买 nike

我正在尝试使用 FragmentScenario 测试 fragment 。该 fragment 有自己的菜单。操作栏上有一个添加图标,单击此菜单项会启动一个子 fragment ,用户可以从中添加新项目。所以我正在尝试测试这种行为。但是,您可能知道,FragmentScenario 在 EmptyFragmentActivity 中启动 fragment ,而不启动真正的主机 Activity。由于操作栏不是 fragment 布局的一部分,而是属于宿主 Activity ,因此操作栏和菜单在测试期间甚至不可见。那么如何测试与菜单的交互呢?

我从官方文档中找到了这条信息:

If you need to call a method on the fragment itself, such as responding to a selection in the options menu, you can do so safely by implementing FragmentAction:

@RunWith(AndroidJUnit4::class)
class MyTestSuite {
@Test fun testEventFragment() {
val scenario = launchFragmentInContainer<MyFragment>()
scenario.onFragment(fragment ->
fragment.onOptionsItemSelected(clickedItem) {
//Update fragment's state based on selected item.
}
}
}
}

但是,如何将正确的项目传递给 onOptionsItemSelected 回调?我尝试将 addMenuItem 定义为成员变量并在 onCreateOptionsMenu 内初始化它,但它返回 null。 onCreateOptionsMenu 在测试期间似乎没有被调用。所以我不知道如何测试用户与菜单的交互。

最佳答案

我通过传递虚拟菜单项解决了这个问题:

val scenario = launchFragmentInContainer<CategoryListFragment>(Bundle(), R.style.AppTheme)

//Create a dummy menu item with the desired item id.
val context: Context = ApplicationProvider.getApplicationContext<AndroidTestApplication>()
val addMenuItem = ActionMenuItem(context, 0, R.id.action_add, 0, 0, null)

//Call onOptionsItemSelected with the dummy menu item
scenario.onFragment { fragment ->
fragment.onOptionsItemSelected(addMenuItem)
}

编辑:这个解决方案当时挽救了局面。但现在我开始更喜欢将工具栏放在 fragment 布局中而不是 Activity 中,特别是如果我对不同的 fragment 有不同的菜单,所以我认为在其他项目中不会遇到同样的问题。这也是一个可能的解决方案。

关于android - 使用 FragmentScenario 测试 fragment 时如何测试与菜单的交互,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59128750/

29 4 0