java.lang.Object | |
↳ | android.support.test.espresso.intent.Intents |
Intents enables validation and stubbing of intents sent out by the application under test.
An example test that simply validates an outgoing intent:
public void testValidateIntentSentToPackage() {
// User action that results in an external "phone" activity being launched.
user.clickOnView(system.getView(R.id.callButton));
// Using a canned RecordedIntentMatcher to validate that an intent resolving
// to the "phone" activity has been sent.
intended(toPackage("com.android.phone"));
}
An example test with intent stubbing:
public void testActivityResultIsHandledProperly() {
// Build a result to return when a particular activity is launched.
Intent resultData = new Intent();
String phoneNumber = "123-345-6789";
resultData.putExtra("phone", phoneNumber);
ActivityResult result = new ActivityResult(Activity.RESULT_OK, resultData);
// Set up result stubbing when an intent sent to "contacts" is seen.
intending(toPackage("com.android.contacts")).respondWith(result));
// User action that results in "contacts" activity being launched.
// Launching activity expects phoneNumber to be returned and displays it on the screen.
user.clickOnView(system.getView(R.id.pickButton));
// Assert that data we set up above is shown.
assertTrue(user.waitForText(phoneNumber));
}
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Asserts that Intents does not have any unverified intents.
| |||||||||||
Initializes Intents and begins recording intents.
| |||||||||||
Asserts that the given matcher matches one and only one intent sent by the application under
test.
| |||||||||||
Asserts that the given matcher matches a specified number of intents sent by the application
under test.
| |||||||||||
Enables stubbing intent responses.
| |||||||||||
Clears Intents state.
| |||||||||||
Allows verifying a specific number of intents sent by the application under test.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
|
Asserts that Intents does not have any unverified intents. You can use this method after you have verified your intents to make sure that nothing unexpected was sent out. This is an equivalent of verifyNoMoreInteractions() in Mockito.
Initializes Intents and begins recording intents. Must be called prior to triggering any actions that send out intents which need to be verified or stubbed. This is similar to MockitoAnnotations.initMocks.
Asserts that the given matcher matches one and only one intent sent by the application under test. This is an equivalent of verify(mock, times(1)) in Mockito. Verification does not have to occur in the same order as the intents were sent. Intents are recorded from the time that Intents.init is called.
matcher | the Matcher to be applied to captured intents |
---|
if the given Matcher did not match any or matched more
than one of the recorded intents
|
Asserts that the given matcher matches a specified number of intents sent by the application under test. This is an equivalent of verify(mock, times(num)) in Mockito. Verification does not have to occur in the same order as the intents were sent. Intents are recorded from the time that Intents.init is called.
matcher | the Matcher to be applied to captured intents |
---|
if the given Matcher did not match the expected number of
recorded intents
|
Enables stubbing intent responses. This method is similar to Mockito.when and is particularly useful when the activity launching the intent expects data to be returned (and especially in the case when the destination activity is external). In this case, the test author can call intending(matcher).thenRespond(myResponse) and validate that the launching activity handles the result correctly. Note: the destination activity will not be launched.
matcher | the Matcher that matches intents for which stubbed response should be
provided |
---|
OngoingStubbing
object to set stubbed response
Clears Intents state. Must be called after each test case.
Allows verifying a specific number of intents sent by the application under test. This is an equivalent of times(num) in Mockito.
times | the number of times that the intent should be matched. |
---|