aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/parsers/MessageParserTest.kt
blob: 61c69c4063f4e01de1cb3e7fd5f8b9f88869b3fd (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
package com.pitchedapps.frost.parsers

import com.pitchedapps.frost.facebook.formattedFbUrl
import org.junit.Test
import kotlin.test.assertEquals

/**
 * Created by Allan Wang on 2017-10-06.
 */
class MessageParserTest {

    @Test
    fun basic() = debug("messages", MessageParser)

    @Test
    fun parseEpoch() {
        val input = "{\"time\":1507301642,\"short\":true,\"forceseconds\":false}"
        assertEquals(1507301642, FrostRegex.epoch.find(input)!!.groupValues[1].toLong())
    }

    @Test
    fun parseImage() {
        var input = "https\\3a //scontent.fyhu1-1.fna.fbcdn.net/v/t1.0-1/cp0/e15/q65/p100x100/12994387_243040309382307_4586627375882013710_n.jpg?efg\\3d eyJpIjoidCJ9\\26 oh\\3d b9ae0d7a1298989fe24873e2ee4054b6\\26 oe\\3d 5A3A7FE1"
        input = input.formattedFbUrl
        println(input)
    }
}