2021-08-09 10:06:58 +10:00
|
|
|
package network.loki.messenger
|
|
|
|
|
2022-02-09 14:18:22 +11:00
|
|
|
import android.app.Instrumentation
|
2021-08-09 10:06:58 +10:00
|
|
|
import android.content.ClipboardManager
|
|
|
|
import android.content.Context
|
2022-02-09 14:18:22 +11:00
|
|
|
import android.view.View
|
2021-08-09 10:06:58 +10:00
|
|
|
import androidx.test.espresso.Espresso.onView
|
|
|
|
import androidx.test.espresso.Espresso.pressBack
|
2022-02-09 14:18:22 +11:00
|
|
|
import androidx.test.espresso.UiController
|
|
|
|
import androidx.test.espresso.ViewAction
|
2021-08-09 10:06:58 +10:00
|
|
|
import androidx.test.espresso.action.ViewActions
|
|
|
|
import androidx.test.espresso.assertion.ViewAssertions.matches
|
2022-02-09 14:18:22 +11:00
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.isCompletelyDisplayed
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.isDescendantOfA
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.isDisplayed
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.isRoot
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.withId
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.withSubstring
|
|
|
|
import androidx.test.espresso.matcher.ViewMatchers.withText
|
2021-08-09 10:06:58 +10:00
|
|
|
import androidx.test.ext.junit.rules.ActivityScenarioRule
|
|
|
|
import androidx.test.ext.junit.runners.AndroidJUnit4
|
|
|
|
import androidx.test.filters.LargeTest
|
|
|
|
import androidx.test.platform.app.InstrumentationRegistry
|
|
|
|
import network.loki.messenger.util.InputBarButtonDrawableMatcher.Companion.inputButtonWithDrawable
|
2022-02-09 14:18:22 +11:00
|
|
|
import org.hamcrest.Matcher
|
2021-08-09 10:06:58 +10:00
|
|
|
import org.hamcrest.Matchers.allOf
|
2022-02-07 17:06:27 +11:00
|
|
|
import org.hamcrest.Matchers.not
|
2022-02-09 14:18:22 +11:00
|
|
|
import org.junit.After
|
|
|
|
import org.junit.Before
|
2021-08-09 10:06:58 +10:00
|
|
|
import org.junit.Rule
|
|
|
|
import org.junit.Test
|
|
|
|
import org.junit.runner.RunWith
|
2022-02-09 14:18:22 +11:00
|
|
|
import org.session.libsession.messaging.sending_receiving.link_preview.LinkPreview
|
2021-08-09 10:06:58 +10:00
|
|
|
import org.session.libsession.utilities.TextSecurePreferences
|
2022-02-09 14:18:22 +11:00
|
|
|
import org.session.libsignal.utilities.guava.Optional
|
|
|
|
import org.thoughtcrime.securesms.conversation.v2.ConversationActivityV2
|
|
|
|
import org.thoughtcrime.securesms.conversation.v2.input_bar.InputBar
|
2021-08-09 10:06:58 +10:00
|
|
|
import org.thoughtcrime.securesms.home.HomeActivity
|
2022-02-09 14:18:22 +11:00
|
|
|
import org.thoughtcrime.securesms.mms.GlideApp
|
|
|
|
|
2021-08-09 10:06:58 +10:00
|
|
|
@RunWith(AndroidJUnit4::class)
|
|
|
|
@LargeTest
|
|
|
|
class HomeActivityTests {
|
|
|
|
|
|
|
|
@get:Rule
|
|
|
|
var activityRule = ActivityScenarioRule(HomeActivity::class.java)
|
|
|
|
|
2022-02-09 14:18:22 +11:00
|
|
|
private val activityMonitor = Instrumentation.ActivityMonitor(ConversationActivityV2::class.java.name, null, false)
|
|
|
|
|
|
|
|
@Before
|
|
|
|
fun setUp() {
|
|
|
|
InstrumentationRegistry.getInstrumentation().addMonitor(activityMonitor)
|
|
|
|
}
|
|
|
|
|
|
|
|
@After
|
|
|
|
fun tearDown() {
|
|
|
|
InstrumentationRegistry.getInstrumentation().removeMonitor(activityMonitor)
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun sendMessage(messageToSend: String, linkPreview: LinkPreview? = null) {
|
2021-08-09 10:06:58 +10:00
|
|
|
// assume in chat activity
|
|
|
|
onView(allOf(isDescendantOfA(withId(R.id.inputBar)),withId(R.id.inputBarEditText))).perform(ViewActions.replaceText(messageToSend))
|
2022-02-09 14:18:22 +11:00
|
|
|
if (linkPreview != null) {
|
|
|
|
val activity = activityMonitor.waitForActivity() as ConversationActivityV2
|
|
|
|
val glide = GlideApp.with(activity)
|
|
|
|
activity.findViewById<InputBar>(R.id.inputBar).updateLinkPreviewDraft(glide, linkPreview)
|
|
|
|
}
|
2021-08-09 10:06:58 +10:00
|
|
|
onView(allOf(isDescendantOfA(withId(R.id.inputBar)),inputButtonWithDrawable(R.drawable.ic_arrow_up))).perform(ViewActions.click())
|
2022-02-09 14:18:22 +11:00
|
|
|
// TODO: text can flaky on cursor reload, figure out a better way to wait for the UI to settle with new data
|
|
|
|
onView(isRoot()).perform(waitFor(500))
|
2021-08-09 10:06:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
private fun setupLoggedInState(hasViewedSeed: Boolean = false) {
|
|
|
|
// landing activity
|
|
|
|
onView(withId(R.id.registerButton)).perform(ViewActions.click())
|
|
|
|
// session ID - register activity
|
|
|
|
onView(withId(R.id.registerButton)).perform(ViewActions.click())
|
|
|
|
// display name selection
|
|
|
|
onView(withId(R.id.displayNameEditText)).perform(ViewActions.typeText("test-user123"))
|
|
|
|
onView(withId(R.id.registerButton)).perform(ViewActions.click())
|
|
|
|
// PN select
|
|
|
|
if (hasViewedSeed) {
|
|
|
|
// has viewed seed is set to false after register activity
|
|
|
|
TextSecurePreferences.setHasViewedSeed(InstrumentationRegistry.getInstrumentation().targetContext, true)
|
|
|
|
}
|
|
|
|
onView(withId(R.id.backgroundPollingOptionView)).perform(ViewActions.click())
|
|
|
|
onView(withId(R.id.registerButton)).perform(ViewActions.click())
|
|
|
|
}
|
|
|
|
|
|
|
|
private fun goToMyChat() {
|
2022-09-30 13:32:07 +10:00
|
|
|
onView(withId(R.id.newConversationButton)).perform(ViewActions.click())
|
|
|
|
onView(withId(R.id.createPrivateChatButton)).perform(ViewActions.click())
|
2021-08-09 10:06:58 +10:00
|
|
|
// new chat
|
2021-08-31 14:21:48 +10:00
|
|
|
onView(withId(R.id.publicKeyEditText)).perform(ViewActions.closeSoftKeyboard())
|
2021-08-09 10:06:58 +10:00
|
|
|
onView(withId(R.id.copyButton)).perform(ViewActions.click())
|
|
|
|
val context = InstrumentationRegistry.getInstrumentation().targetContext
|
2021-08-31 14:21:48 +10:00
|
|
|
lateinit var copied: String
|
|
|
|
InstrumentationRegistry.getInstrumentation().runOnMainSync {
|
|
|
|
val clipboardManager = context.getSystemService(Context.CLIPBOARD_SERVICE) as ClipboardManager
|
|
|
|
copied = clipboardManager.primaryClip!!.getItemAt(0).text.toString()
|
|
|
|
}
|
|
|
|
onView(withId(R.id.publicKeyEditText)).perform(ViewActions.typeText(copied))
|
2021-08-09 10:06:58 +10:00
|
|
|
onView(withId(R.id.createPrivateChatButton)).perform(ViewActions.click())
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testLaunches_dismiss_seedView() {
|
|
|
|
setupLoggedInState()
|
|
|
|
onView(allOf(withId(R.id.button), isDescendantOfA(withId(R.id.seedReminderView)))).perform(ViewActions.click())
|
|
|
|
onView(withId(R.id.copyButton)).perform(ViewActions.click())
|
|
|
|
pressBack()
|
2022-02-07 17:06:27 +11:00
|
|
|
onView(withId(R.id.seedReminderView)).check(matches(not(isDisplayed())))
|
2021-08-09 10:06:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testIsVisible_seedView() {
|
|
|
|
setupLoggedInState()
|
|
|
|
onView(withId(R.id.seedReminderView)).check(matches(isCompletelyDisplayed()))
|
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testIsVisible_alreadyDismissed_seedView() {
|
|
|
|
setupLoggedInState(hasViewedSeed = true)
|
2022-02-07 17:06:27 +11:00
|
|
|
onView(withId(R.id.seedReminderView)).check(matches(not(isDisplayed())))
|
2021-08-09 10:06:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testChat_withSelf() {
|
|
|
|
setupLoggedInState()
|
|
|
|
goToMyChat()
|
|
|
|
TextSecurePreferences.setLinkPreviewsEnabled(InstrumentationRegistry.getInstrumentation().targetContext, true)
|
|
|
|
sendMessage("howdy")
|
|
|
|
sendMessage("test")
|
|
|
|
// tests url rewriter doesn't crash
|
|
|
|
sendMessage("https://www.getsession.org?random_query_parameter=testtesttesttesttesttesttesttest&other_query_parameter=testtesttesttesttesttesttesttest")
|
|
|
|
sendMessage("https://www.ámazon.com")
|
2022-02-09 14:18:22 +11:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
fun testChat_displaysCorrectUrl() {
|
|
|
|
setupLoggedInState()
|
|
|
|
goToMyChat()
|
|
|
|
TextSecurePreferences.setLinkPreviewsEnabled(InstrumentationRegistry.getInstrumentation().targetContext, true)
|
|
|
|
// given the link url text
|
|
|
|
val url = "https://www.ámazon.com"
|
|
|
|
sendMessage(url, LinkPreview(url, "amazon", Optional.absent()))
|
|
|
|
|
|
|
|
// when the URL span is clicked
|
|
|
|
onView(withSubstring(url)).perform(ViewActions.click())
|
|
|
|
|
|
|
|
// then the URL dialog should be displayed with a known punycode url
|
|
|
|
val amazonPuny = "https://www.xn--mazon-wqa.com/"
|
|
|
|
|
|
|
|
val dialogPromptText = InstrumentationRegistry.getInstrumentation().targetContext.getString(R.string.dialog_open_url_explanation, amazonPuny)
|
|
|
|
|
|
|
|
onView(withText(dialogPromptText)).check(matches(isDisplayed()))
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Perform action of waiting for a specific time.
|
|
|
|
*/
|
|
|
|
fun waitFor(millis: Long): ViewAction {
|
|
|
|
return object : ViewAction {
|
|
|
|
override fun getConstraints(): Matcher<View>? {
|
|
|
|
return isRoot()
|
|
|
|
}
|
|
|
|
|
|
|
|
override fun getDescription(): String = "Wait for $millis milliseconds."
|
|
|
|
|
|
|
|
override fun perform(uiController: UiController, view: View?) {
|
|
|
|
uiController.loopMainThreadForAtLeast(millis)
|
|
|
|
}
|
|
|
|
}
|
2021-08-09 10:06:58 +10:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|