aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/facebook/requests/FbRequestTest.kt
blob: 67f62a40e6c863eb52912ea66f0f3488396fc2cd (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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
 * Copyright 2018 Allan Wang
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package com.pitchedapps.frost.facebook.requests

import com.fasterxml.jackson.databind.ObjectMapper
import com.pitchedapps.frost.internal.AUTH
import com.pitchedapps.frost.internal.COOKIE
import com.pitchedapps.frost.internal.USER_ID
import com.pitchedapps.frost.internal.authDependent
import okhttp3.Call
import org.junit.BeforeClass
import org.junit.Ignore
import org.junit.Test
import kotlin.test.assertEquals
import kotlin.test.assertFalse
import kotlin.test.assertNotNull
import kotlin.test.assertTrue
import kotlin.test.fail

/**
 * Created by Allan Wang on 21/12/17.
 */
class FbRequestTest {

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

    /**
     * Used to emulate [executeForNoError]
     * 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 = COOKIE.getAuth()
        assertNotNull(auth)
        assertEquals(USER_ID, auth.userId)
        assertEquals(COOKIE, auth.cookie)
        println("Test auth: ${auth.fb_dtsg}")
    }

    @Test
    @Ignore("Post requests are now experimental")
    fun markNotification() {
        val notifId = 1514443903880
        AUTH.markNotificationRead(notifId).call.assertNoError()
    }

    @Ignore("Broken as of 2019/01/03; however, this was never used in production to begin with")
    @Test
    fun fullSizeImage() {
        val fbid = 10150706277522838L // google's current cover photo
        val url = AUTH.getFullSizedImage(fbid).invoke()
        println(url)
        assertEquals(true, url?.startsWith("https://scontent"), "Bad start for url $url")
    }

    @Test
    fun testMenu() {
        val data = AUTH.getMenuData().invoke()
        assertNotNull(data)
        println(ObjectMapper().writerWithDefaultPrettyPrinter().writeValueAsString(data))
        assertTrue(data.data.isNotEmpty())
        assertTrue(data.footer.hasContent, "Footer may be badly parsed")
        val items = data.flatMapValid()
        assertTrue(items.size > 15, "Something may be badly parsed")
    }
}