断言没有显示对话框



如何断言对话框未显示?

目前我有一个测试,检查文本是否不存在于对话框中,其中对话框不显示

onView(withText("Mobile connection")).inRoot(isDialog()).check(doesNotExist());

但是我得到一个NoMatchingRootException

android.support.test.espresso.NoMatchingRootException: Matcher 'is dialog' did not match any of the following roots: [Root{application-window-token=android.view.ViewRootImpl$W@9acefba, window-token=android.view.ViewRootImpl$W@9acefba, has-window-focus=true, layout-params-type=1, layout-params-string=WM.LayoutParams{(0,0)(fillxfill) ty=1 fl=#81810100 wanim=0x1030465 needsMenuKey=2}, decor-view-string=DecorView{id=-1, visibility=VISIBLE, width=768, height=1280, has-focus=true, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=5}}]
at dalvik.system.VMStack.getThreadStackTrace(Native Method)
at java.lang.Thread.getStackTrace(Thread.java:1566)
at android.support.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:92)
at android.support.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:56)
at android.support.test.espresso.ViewInteraction.runSynchronouslyOnUiThread(ViewInteraction.java:184)
at android.support.test.espresso.ViewInteraction.check(ViewInteraction.java:158)
at uk.co.imagitech.learn2.hp.MainActivityConnectedTest.doesntShowMeteredDialogAtStart(MainActivityConnectedTest.java:43)
at java.lang.reflect.Method.invoke(Native Method)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at android.support.test.internal.statement.UiThreadStatement.evaluate(UiThreadStatement.java:55)
at android.support.test.rule.ActivityTestRule$ActivityStatement.evaluate(ActivityTestRule.java:270)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:325)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:78)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:57)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:27)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runners.Suite.runChild(Suite.java:128)
at org.junit.runners.Suite.runChild(Suite.java:27)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
at org.junit.runner.JUnitCore.run(JUnitCore.java:115)
at android.support.test.internal.runner.TestExecutor.execute(TestExecutor.java:59)
at android.support.test.runner.AndroidJUnitRunner.onStart(AndroidJUnitRunner.java:262)
at uk.co.imagitech.learn2.hp.TestButlerAndroidRunner.onStart(TestButlerAndroidRunner.java:17)
at android.app.Instrumentation$InstrumentationThread.run(Instrumentation.java:1932)

piotrek的建议对我不起作用。同样的NoMatchingRootException总是从Espresso中抛出。

起作用的是:

onView(withText("DIALOG_MESSAGE")).check(doesNotExist())

A Roboelectric测试代码:

  @Test
  fun canShowBlockingDialog() {
    val scenario = launchActivity<FragmentScenario.EmptyFragmentActivity>()
    scenario.onActivity {
      //I need to set a support Theme otherwise we can't create MaterialAlertDialogs
      it.setTheme(R.style.AppTheme_NoActionBar)
      //this method is an extension function which shows a MaterialAlertDialog 
      //with an OK button
      it.showBlockingDialog("DIALOG_MESSAGE", "DIALOG_TITLE")
      onView(withText("DIALOG_MESSAGE")).inRoot(isDialog()).check(matches(isDisplayed()))
      onView(withText("DIALOG_TITLE")).inRoot(isDialog()).check(matches(isDisplayed()))
      onView(withText("OK")).inRoot(isDialog()).check(matches(isDisplayed()))
      //press the OK button to close the dialog     
    onView(withText("OK")).inRoot(isDialog()).perform(scrollTo()).perform(click())
      //check that DIALOG_MESSAGE is not on screen anymore
      onView(withText("DIALOG_MESSAGE")).check(doesNotExist())
    }
    scenario.close()
  }

你不能检查对话框的文本是否显示,直到它显示。

onView(withText("Mobile connection")).inRoot(isDialog()) .check(doesNotExist());

您可能知道这段代码检查Dialog是否有一个显示文本的视图,但由于没有对话框,您无法完成这部分测试。它在说:"没有根,没有对话,我怎么能做到这一点?"

在加载视图之前不要检查视图的属性

我的最终解决方案:

    // This is necessary because inRoot is not compatible with doesNotExist
    public static boolean doesRootExist(Matcher<Root> rootMatcher) {
        try {
            onView(any(View.class)).inRoot(rootMatcher).check(matches(anything()));
            return true;
        } catch (NoMatchingRootException ex) {
            return false;
        } catch (AmbiguousViewMatcherException ex) {
            return true;
        }
    }

并命名为:assertFalse(doesRootExist(RootMatchers.isDialog))

这是一个非常可怕的解决方案,因为它会导致线程阻塞约60秒,而等待根出现,但最终这是唯一的事情,为我工作。

相关内容

  • 没有找到相关文章

最新更新