summaryrefslogtreecommitdiff
path: root/java
diff options
context:
space:
mode:
author Mark Renouf <mrenouf@google.com> 2023-08-30 15:23:34 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-08-30 15:23:34 +0000
commitf7a74a3bc10990918af7ee737ab8f033f14fead9 (patch)
tree97e0ffa210a4a6aa10267e16d9cd4eea7b4f98fc /java
parent90d2b55be3f4a287b00805bf32667538276a7c3b (diff)
parentfd4fce73762ccb07dfa299dcf21209f7e83442da (diff)
Merge "Disables failing tests in ChooserActionFactoryTest" into main
Diffstat (limited to 'java')
-rw-r--r--java/tests/src/com/android/intentresolver/ChooserActionFactoryTest.kt11
1 files changed, 7 insertions, 4 deletions
diff --git a/java/tests/src/com/android/intentresolver/ChooserActionFactoryTest.kt b/java/tests/src/com/android/intentresolver/ChooserActionFactoryTest.kt
index af6e5f16..7f06e683 100644
--- a/java/tests/src/com/android/intentresolver/ChooserActionFactoryTest.kt
+++ b/java/tests/src/com/android/intentresolver/ChooserActionFactoryTest.kt
@@ -35,7 +35,9 @@ import java.util.concurrent.TimeUnit
import java.util.function.Consumer
import org.junit.After
import org.junit.Assert.assertEquals
+import org.junit.Assert.assertTrue
import org.junit.Before
+import org.junit.Ignore
import org.junit.Test
import org.junit.runner.RunWith
import org.mockito.Mockito
@@ -75,6 +77,7 @@ class ChooserActionFactoryTest {
context.unregisterReceiver(testReceiver)
}
+ @Ignore("b/297551329")
@Test
fun testCreateCustomActions() {
val factory = createFactory()
@@ -90,7 +93,7 @@ class ChooserActionFactoryTest {
Mockito.verify(logger).logCustomActionSelected(eq(0))
assertEquals(Activity.RESULT_OK, resultConsumer.latestReturn)
// Verify the pending intent has been called
- countdown.await(500, TimeUnit.MILLISECONDS)
+ assertTrue("Timed out waiting for broadcast", countdown.await(2500, TimeUnit.MILLISECONDS))
}
@Test
@@ -100,6 +103,7 @@ class ChooserActionFactoryTest {
assertThat(factory.modifyShareAction).isNull()
}
+ @Ignore("b/297551329")
@Test
fun testModifyShareAction() {
val factory = createFactory(includeModifyShare = true)
@@ -107,11 +111,10 @@ class ChooserActionFactoryTest {
val action = factory.modifyShareAction ?: error("Modify share action should not be null")
action.onClicked.run()
- Mockito.verify(logger)
- .logActionSelected(eq(EventLog.SELECTION_TYPE_MODIFY_SHARE))
+ Mockito.verify(logger).logActionSelected(eq(EventLog.SELECTION_TYPE_MODIFY_SHARE))
assertEquals(Activity.RESULT_OK, resultConsumer.latestReturn)
// Verify the pending intent has been called
- countdown.await(500, TimeUnit.MILLISECONDS)
+ assertTrue("Timed out waiting for broadcast", countdown.await(2500, TimeUnit.MILLISECONDS))
}
@Test