aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbFullImageTest.kt
blob: 98dc7ddaa9fdd4b5d5f2653572242d4420b0caa1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
package com.pitchedapps.frost.facebook

import com.pitchedapps.frost.facebook.requests.getFullSizedImage
import com.pitchedapps.frost.facebook.requests.getFullSizedImageUrl
import com.pitchedapps.frost.internal.COOKIE
import com.pitchedapps.frost.internal.authDependent
import org.junit.BeforeClass
import org.junit.Test
import kotlin.test.assertNotNull
import kotlin.test.assertTrue

/**
 * Created by Allan Wang on 12/04/18.
 */
class FbFullImageTest {

    companion object {
        @BeforeClass
        @JvmStatic
        fun before() {
            authDependent()
        }
    }

    @Test
    fun getFullImage() {
        val url = "https://touch.facebook.com/photo/view_full_size/?fbid=107368839645039"
        val result = COOKIE.getFullSizedImageUrl(url).blockingGet()
        assertNotNull(result)
        println(result)
    }
}