Removing unsed UI tests (#1625)

We need to rethink the UI tests if we do indeed want to use them as they are not tied to the existing flow anymore
This commit is contained in:
ThomasSession 2024-08-19 13:56:35 +10:00 committed by GitHub
parent 16d6efbb5b
commit 80933938e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 4 deletions

View File

@ -42,6 +42,10 @@ import org.thoughtcrime.securesms.conversation.v2.input_bar.InputBar
import org.thoughtcrime.securesms.home.HomeActivity
import com.bumptech.glide.Glide
/**
* Currently not used as part of our CI/Deployment processes !!!!
*/
@RunWith(AndroidJUnit4::class)
@LargeTest
class HomeActivityTests {
@ -107,7 +111,7 @@ class HomeActivityTests {
}
private fun goToMyChat() {
/* private fun goToMyChat() {
onView(withId(R.id.newConversationButton)).perform(ViewActions.click())
onView(withId(R.id.createPrivateChatButton)).perform(ViewActions.click())
// new chat
@ -122,7 +126,7 @@ class HomeActivityTests {
onView(withId(R.id.publicKeyEditText)).perform(ViewActions.typeText(copied))
onView(withId(R.id.publicKeyEditText)).perform(ViewActions.closeSoftKeyboard())
onView(withId(R.id.createPrivateChatButton)).perform(ViewActions.click())
}
}*/
@Test
fun testLaunches_dismiss_seedView() {
@ -145,7 +149,7 @@ class HomeActivityTests {
onView(withId(R.id.seedReminderView)).check(matches(not(isDisplayed())))
}
@Test
/* @Test
fun testChat_withSelf() {
setupLoggedInState()
goToMyChat()
@ -176,7 +180,7 @@ class HomeActivityTests {
onView(isRoot()).perform(waitFor(1000)) // no other way for this to work apparently
onView(withText(dialogPromptText)).check(matches(isDisplayed()))
}
}*/
/**
* Perform action of waiting for a specific time.

View File

@ -551,6 +551,7 @@ class InstrumentedTests {
is Conversation.OneToOne -> seen.add("1-to-1: ${convo.accountId}")
is Conversation.Community -> seen.add("og: ${convo.baseCommunityInfo.baseUrl}/r/${convo.baseCommunityInfo.room}")
is Conversation.LegacyGroup -> seen.add("cl: ${convo.groupId}")
null -> { /* ignore null cases */ }
}
}