我的应用程序由一个Activity
组成,用于许多Fragments
。
我希望使用浓缩咖啡来测试Fragments
的用户界面。但是我遇到了一个问题。
如何测试未添加到onCreate
Activity
中的Fragment
。我看到的所有示例都涉及Fragments
中添加onCreate
中的Fragment
。那么我怎样才能告诉Espresso去一个特定的Fragment
并从那里开始呢?
谢谢
如果您使用的是导航架构组件,则可以通过在测试开始时深度链接到目标片段(使用适当的参数)来立即测试每个片段。
@Rule
@JvmField
var activityRule = ActivityTestRule(MainActivity::class.java)
protected fun launchFragment(destinationId: Int,
argBundle: Bundle? = null) {
val launchFragmentIntent = buildLaunchFragmentIntent(destinationId, argBundle)
activityRule.launchActivity(launchFragmentIntent)
}
private fun buildLaunchFragmentIntent(destinationId: Int, argBundle: Bundle?): Intent =
NavDeepLinkBuilder(InstrumentationRegistry.getInstrumentation().targetContext)
.setGraph(R.navigation.navigation)
.setComponentName(MainActivity::class.java)
.setDestination(destinationId)
.setArguments(argBundle)
.createTaskStackBuilder().intents[0]
目的地 ID 是导航图中的片段目标 ID。下面是一个调用示例,在您准备好启动片段后将完成该调用:
launchFragment(R.id.target_fragment, targetBundle())
private fun targetBundle(): Bundle? {
val bundle = Bundle()
bundle.putString(ARGUMENT_ID, "Argument needed by fragment")
return bundle
}
这里也有更详细的回答:https://stackoverflow.com/a/55203154/2125351
因此,根据几家公司的模式和建议做法。您需要为每个视图编写有针对性的密封测试,无论是活动视图、片段、对话片段还是自定义视图。
首先,如果您通过以下方式使用 gradle,则需要通过 gradle 将以下库导入您的项目
debugImplementation 'androidx.fragment:fragment-testing:1.2.0-rc03'
debugImplementation 'androidx.test:core:1.3.0-alpha03'
对于 Kotlin,debugImplementation 'androidx.test:core-ktx:1.3.0-alpha03'
为了独立于活动测试片段,您可以通过以下方式启动/启动它:
@Test
fun sampleTesting(){
launchFragmentInContainer<YourFragment>()
onView(withId(R.id.sample_view_id)).perform(click())
}
这样,您可以独立测试活动中的片段,这也是实现密封和目标UI测试的推荐方法之一。有关完整详细信息,您可以阅读 android 文档中的片段测试文档
https://developer.android.com/training/basics/fragments/testing
我发现这个包含大量测试示例的存储库很有用,尽管它非常局限于具有超级简单测试的测试用例的复杂性。虽然它可以作为入门指南。
https://github.com/android/testing-samples
只需使用活动的 SupportFragmentManager 显示片段即可。
例如(Kotlin)与ActivityTestRule:
@Rule
@JvmField
var activityRule = ActivityTestRule(MainActivity::class.java)
只需在测试之前执行此操作:
@Before
fun setup() {
activityRule.activity.supportFragmentManager.beginTransaction().replace(R.id.main_activity_container_for_your_fragments, FragmentToShow(), "fragment-tag").commitAllowingStateLoss()
Thread.sleep(500)
}
Espresso 只有在显示它们时才能测试Fragments
。这需要它们由 Activity
.
使用您当前的设置,您必须使用 Espresso 以自己的方式(就像用户一样)click()
到您实际想要测试Fragment
。
在我的一个项目中,我有一个显示Fragments
ViewPager
。对于那些Fragments
,我使用自定义FragmentTestRule
来单独测试它们。我可以直接启动每个Fragment
并使用浓缩咖啡进行测试。看到这个答案。
您还可以:
- 不要使用
Fragments
。Activities
更易于测试。您可以单独测试每个Activity
。在大多数情况下,Fragments
比Activities
没有优势。Fragments
只会使实施和测试更加困难。 - 使您的
FragmentActivity
在创建时直接显示特定Fragment
。 例如,通过为您的FragmentActivity
提供额外的特殊意图。但这会向应用添加测试代码,这通常不是一个好的解决方案。