aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt')
-rw-r--r--app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt45
1 files changed, 17 insertions, 28 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt
index a521ceda..16894b16 100644
--- a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt
+++ b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbRequestTest.kt
@@ -1,14 +1,13 @@
package com.pitchedapps.frost.facebook
+import com.pitchedapps.frost.internal.AUTH
import com.pitchedapps.frost.internal.COOKIE
-import com.pitchedapps.frost.internal.FB_DTSG
import com.pitchedapps.frost.internal.USER_ID
-import org.junit.Assume
+import com.pitchedapps.frost.internal.authDependent
+import okhttp3.Call
import org.junit.BeforeClass
import org.junit.Test
-import kotlin.test.assertEquals
-import kotlin.test.assertFalse
-import kotlin.test.assertNotNull
+import kotlin.test.*
/**
* Created by Allan Wang on 21/12/17.
@@ -19,44 +18,34 @@ class FbRequestTest {
@BeforeClass
@JvmStatic
fun before() {
- Assume.assumeTrue(COOKIE.isNotEmpty())
+ authDependent()
}
-
- val AUTH: RequestAuth by lazy { RequestAuth(USER_ID, COOKIE, FB_DTSG) }
}
- @Test
- fun userIdRegex() {
- val id = 12349876L
- val cookie = "wd=1366x615; c_user=$id; act=1234%2F12; m_pixel_ratio=1; presence=hello; x-referer=asdfasdf"
- assertEquals(id, FB_USER_MATCHER.find(cookie)?.groupValues?.get(1)?.toLong())
- }
-
- @Test
- fun fbDtsgRegex() {
- val fb_dtsg = "readme"
- val input = "data-sigil=\"mbasic_inline_feed_composer\">\u003Cinput type=\"hidden\" name=\"fb_dtsg\" value=\"$fb_dtsg\" autocomplete=\"off\" \\/>\u003Cinput type=\"hidden\" name=\"privacyx\" value=\"12345\""
- assertEquals(fb_dtsg, FB_DTSG_MATCHER.find(input)?.groupValues?.get(1))
+ /**
+ * Used to emulate [executeAndCheck]
+ * Must be consistent with that method
+ */
+ private fun Call.assertNoError() {
+ val data = execute().body()?.string() ?: fail("Content was null")
+ println("Call response: $data")
+ assertTrue(data.isNotEmpty(), "Content was empty")
+ assertFalse(data.contains("error"), "Content had error")
}
@Test
fun auth() {
val auth = (USER_ID to COOKIE).getAuth()
assertNotNull(auth)
- assertEquals(USER_ID, auth!!.userId)
+ assertEquals(USER_ID, auth.userId)
assertEquals(COOKIE, auth.cookie)
- println("Test auth: priv $FB_DTSG, test ${auth.fb_dtsg}")
+ println("Test auth: ${auth.fb_dtsg}")
}
@Test
fun markNotification() {
val notifId = 1513544657695779
-
- val out = AUTH.markNotificationRead(notifId)
- .execute().body()?.string() ?: ""
- println(out)
-
- assertFalse(out.contains("error"))
+ AUTH.markNotificationRead(notifId).assertNoError()
}
} \ No newline at end of file