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

import com.pitchedapps.frost.internal.concurrentTest
import org.junit.Before
import org.junit.Test

/**
 * 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

    @Before
    fun init() {
        flyweight = IntFlyweight()
    }

    @Test
    fun testCache() = concurrentTest { result ->
        flyweight(1).subscribe { i, _ ->
            flyweight(1).subscribe { j, _ ->
                if (i != null && i == j)
                    result.onComplete()
                else
                    result.onError("Did not use cache during calls")
            }
        }
    }

    @Test
    fun testNoCache() = concurrentTest { result ->
        flyweight(1).subscribe { i, _ ->
            flyweight(2).subscribe { j, _ ->
                if (i != null && i != j)
                    result.onComplete()
                else
                    result.onError("Should not use cache for calls with different keys")
            }
        }
    }


}