Android Espresso: Intent matchers and androidx PreferenceFra



我最近迁移了我的首选项实现以使用androidx.preferences。这导致我的一个检测测试失败,我还没有找到合理的解决方法来使其通过。

在测试中,我有一个对话框,如果满足应用程序首选项中的某些条件,则会显示错误。在此测试中,禁用了特定首选项。用户可以单击错误以打开特定的首选项,然后进入并更改它。问题是我不知道如何断言显示正确的偏好片段。

失败的测试如下所示:

@Test
fun whenWorklistNotEnabled_shouldDisplayWorklistNotEnabledMessage() {
val manager = PreferenceManagerImpl(InstrumentationRegistry.getInstrumentation().targetContext)
whenever(preferenceManagerSpy.worklistEnabled).thenReturn(false)
whenever(preferenceManagerSpy.openDicomSettings()).thenAnswer { manager.openWorklistSettings() }
launchWorklistDialog()
onView(withErrorMessageView(R.id.dialog_worklist_errorview))
.check(
matches(
allOf(
isDisplayed(),
withPrimaryErrorText(R.string.global_worklist_disabled_error),
withSecondaryErrorText(R.string.dialog_worklist_worklist_disabled_error_secondary_text)
)
)
)
.perform(ErrorMessageViewActions.actionOnSecondaryTextContainer(click()))
intended(
allOf<Intent>(
IntentMatchers.hasComponent(
ComponentName(
InstrumentationRegistry.getInstrumentation().targetContext,
SettingsActivity::class.java
)
),
IntentMatchers.hasExtra(
PreferenceActivity.EXTRA_SHOW_FRAGMENT,
WorklistFragment::class.java
)
)
)
}

但是,当您不再使用PreferenceActivity实现时,如何重写它以匹配特定的PreferenceFragment呢?

查看失败测试的堆栈跟踪后找到了答案:

Recorded intents:
-Intent { cmp=com.example/.preferences.SettingsActivity (has extras) } handling packages:[[com.example]], extras:[Bundle[{EXTRA_SHOW_DICOM_FRAGMENT=class com.example.preferences.WorklistFragment}]])

解决方案:

intended(
allOf<Intent>(
IntentMatchers.hasComponent(
ComponentName(
InstrumentationRegistry.getInstrumentation().targetContext,
SettingsActivity::class.java
)
),
IntentMatchers.hasExtra(
EXTRA_SHOW_WORKLIST_FRAGMENT,
WorklistFragment::class.java
)
)
)

相关内容

  • 没有找到相关文章

最新更新