aboutsummaryrefslogtreecommitdiff
path: root/app/src/test/kotlin/com/pitchedapps/frost/rx/ResettableFlyweightTest.kt
blob: ec92b059645ac35234138ce5e4f9887b4bd2fc27 (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
package com.pitchedapps.frost.rx

import org.junit.Before
import org.junit.Test
import java.util.concurrent.CountDownLatch
import kotlin.test.assertEquals
import kotlin.test.assertNotEquals

/**
 * Created by Allan Wang on 07/01/18.
 */
private inline val threadId
    get() = Thread.currentThread().id

class ResettableFlyweightTest {

    class IntFlyweight : RxFlyweight<Int, Long, Long>() {
        override fun call(input: Int): Long {
            println("Call for $input on thread $threadId")
            Thread.sleep(20)
            return System.currentTimeMillis()
        }

        override fun validate(input: Int, cond: Long) = System.currentTimeMillis() - cond < 500

        override fun cache(input: Int): Long = System.currentTimeMillis()
    }

    private lateinit var flyweight: IntFlyweight
    private lateinit var latch: CountDownLatch

    @Before
    fun init() {
        flyweight = IntFlyweight()
        latch = CountDownLatch(1)
    }

    @Test
    fun testCache() {
        flyweight(1).subscribe { i ->
            flyweight(1).subscribe { j ->
                assertEquals(i, j, "Did not use cache during calls")
                latch.countDown()
            }
        }
        latch.await()
    }

    @Test
    fun testNoCache() {
        flyweight(1).subscribe { i ->
            flyweight(2).subscribe { j ->
                assertNotEquals(i, j, "Should not use cache for calls with different keys")
                latch.countDown()
            }
        }
        latch.await()
    }


}