How wait until toast is finish? Start second test only after toast was hide of prev test

不想你离开。 提交于 2019-12-09 03:27:17

问题


Here my Espresso's tests:

@RunWith(AndroidJUnit4::class)
class AddTraderActivityNetworkTest {
    private val context = InstrumentationRegistry.getInstrumentation().getContext()
    private lateinit var mockServer: MockWebServer

    @Rule
    @JvmField
    var addTraderIntentTestRule: IntentsTestRule<AddTraderActivity> = IntentsTestRule(AddTraderActivity::class.java)

    @Before
    fun setup() {
        mockServer = MockWebServer()
        mockServer.start(8081)
    }

    @Test
    fun buttonStart_click_clientError_showToast() {
        mockServer.enqueue(MockResponse()
                .setResponseCode(400))

        onView(withId(R.id.baseTextInputEditText))
                .perform(typeText(BASE_TEST))
        onView(withId(R.id.quoteTextInputEditText))
                .perform(typeText(QUOTE_TEST))
        onView(withId(R.id.startButton))
                .perform(click())
        onView(withText(R.string.client_error)).inRoot(ToastMatcher())
                .check(matches(isDisplayed()))
    }

    @Test
    fun buttonStart_click_clientError_traderNotFound_showToast() {
        mockServer.enqueue(MockResponse()
                .setResponseCode(404)
                .setBody(FileUtil.getStringFromFile(context, "trader_404_not_add.json")))

        onView(withId(R.id.baseTextInputEditText))
                .perform(typeText(BASE_TEST))
        onView(withId(R.id.quoteTextInputEditText))
                .perform(typeText(QUOTE_TEST))
        onView(withId(R.id.startButton))
                .perform(click())
        onView(withText(R.string.trader_not_added)).inRoot(ToastMatcher())
                .check(matches(isDisplayed()))
    }

When stat all this tests than one of them sure to fail with message:

androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with string from resource id: <2131623975>[client_error] value: Client Error

View Hierarchy:
+>LinearLayout{id=-1, visibility=VISIBLE, width=566, height=149, has-focus=false, has-focusable=false, has-window-focus=false, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=WM.LayoutParams{(0,192)(wrapxwrap) gr=#51 ty=2005 fl=#1000098 fmt=-3 wanim=0x1030004}, tag=null, root-is-layout-requested=false, has-input-connection=false, x=0.0, y=0.0, child-count=1}
|
+->AppCompatTextView{id=16908299, res-name=message, visibility=VISIBLE, width=416, height=83, has-focus=false, has-focusable=false, has-window-focus=false, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=android.widget.LinearLayout$LayoutParams@b08322e, tag=null, root-is-layout-requested=false, has-input-connection=false, x=75.0, y=33.0, text=Trader not added, input-type=0, ime-target=false, has-links=false}
|
at dalvik.system.VMStack.getThreadStackTrace(Native Method)
at java.lang.Thread.getStackTrace(Thread.java:580)
at androidx.test.espresso.base.DefaultFailureHandler.getUserFriendlyError(DefaultFailureHandler.java:96)
at androidx.test.espresso.base.DefaultFailureHandler.handle(DefaultFailureHandler.java:59)
at androidx.test.espresso.ViewInteraction.waitForAndHandleInteractionResults(ViewInteraction.java:316)
at androidx.test.espresso.ViewInteraction.check(ViewInteraction.java:300)
at com.myproject.activity.AddTraderActivityNetworkTest.buttonStart_click_clientError_showToast(AddTraderActivityNetworkTest.kt:64)
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 androidx.test.internal.runner.junit4.statement.RunBefores.evaluate(RunBefores.java:80)
at androidx.test.internal.runner.junit4.statement.RunAfters.evaluate(RunAfters.java:61)
at androidx.test.rule.ActivityTestRule$ActivityStatement.evaluate(ActivityTestRule.java:531)
at org.junit.rules.RunRules.evaluate(RunRules.java:20)

This happend because new test was started but toast of prev test still not hide. As result I get error that can't find toast with message:

androidx.test.espresso.NoMatchingViewException: No views in hierarchy found matching: with string from resource id: <2131623975>[client_error] value: Client Error

The question is: How I can wait until toast is hide and only AFTER that start second test?


回答1:


Here is a function in java to show a Toast for x milliseconds

private Toast myToast;

private void showToast(int ms) {

    myToast = Toast.makeText(this, "Your message", Toast.LENGTH_LONG);

    new Handler().postDelayed(new Runnable() {

        @Override
        public void run() {
            myToast.cancel(); // do this to be sure Toast is gone
            // here you can start your new test or set a flag to say Toast is finish
        }
    }, ms);
}


来源:https://stackoverflow.com/questions/55952143/how-wait-until-toast-is-finish-start-second-test-only-after-toast-was-hide-of-p

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!