diff options
Diffstat (limited to 'app/src/test/kotlin/com')
-rw-r--r-- | app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt | 8 | ||||
-rw-r--r-- | app/src/test/kotlin/com/pitchedapps/frost/services/UpdateServiceTest.kt | 18 |
2 files changed, 7 insertions, 19 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt index e508c3fe..0e45d2f2 100644 --- a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt +++ b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt @@ -42,7 +42,7 @@ class FbUrlTest { */ @Test fun queryConversion() { - val url = "https://m.facebook.com/l.php?u=https%3A%2F%2Fgoogle.ca&h=hi" + val url = "${FB_URL_BASE}l.php?u=https%3A%2F%2Fgoogle.ca&h=hi" val expected = "https://google.ca?h=hi" assertFbFormat(expected, url) } @@ -90,4 +90,10 @@ class FbUrlTest { assertFbFormat(url, "#!$url") } +// @Test +// fun viewFullImageIndirect() { +// val urlBase = "photo/view_full_size/?fbid=1234&ref_component=mbasic_photo_permalink&ref_page=%2Fwap%2Fphoto.php&refid=13&_ft_=qid.1234%3Amf_story_key.1234%3Atop_level_post_id" +// assertFbFormat("$FB_URL_BASE$urlBase", "#!/$urlBase") +// } + }
\ No newline at end of file diff --git a/app/src/test/kotlin/com/pitchedapps/frost/services/UpdateServiceTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/services/UpdateServiceTest.kt deleted file mode 100644 index 69ff7941..00000000 --- a/app/src/test/kotlin/com/pitchedapps/frost/services/UpdateServiceTest.kt +++ /dev/null @@ -1,18 +0,0 @@ -package com.pitchedapps.frost.services - -import org.junit.Test -import kotlin.test.assertNotNull - -/** - * Created by Allan Wang on 07/04/18. - */ -class UpdateServiceTest { - - @Test - fun getRelease() { - val release = UpdateManager.getLatestGithubRelease() - assertNotNull(release) - assertNotNull(release!!.apk, "Apk not uploaded for $release") - } - -}
\ No newline at end of file |