aboutsummaryrefslogtreecommitdiff
path: root/core/src/test/kotlin/ca/allanwang/kau/kotlin/DebounceTest.kt
blob: 530f766b6093c8e5ffd1ea84496d6047b32bc001 (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
/*
 * Copyright 2018 Allan Wang
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package ca.allanwang.kau.kotlin

import kotlin.test.assertEquals
import org.junit.Ignore
import org.junit.Test

/**
 * Created by Allan Wang on 2017-08-05.
 */
class DebounceTest {

    @Test
    fun basic() {
        var i = 0
        val debounce = debounce(20) { i++ }
        assertEquals(0, i, "i should start as 0")
        (1..5).forEach { debounce() }
        Thread.sleep(50)
        assertEquals(1, i, "Debouncing did not cancel previous requests")
    }

    @Test
    fun basicExtension() {
        var i = 0
        val increment: () -> Unit = { i++ }
        (1..5).forEach { increment() }
        assertEquals(5, i, "i should be 5")
        val debounce = increment.debounce(50)
        (6..10).forEach { debounce() }
        assertEquals(5, i, "i should not have changed")
        Thread.sleep(100)
        assertEquals(6, i, "i should increment to 6")
    }

    @Test
    @Ignore("Pending fix")
    fun multipleDebounces() {
        var i = 0
        val debounce = debounce<Int>(20) { i += it }
        debounce(1) // ignore -> i = 0
        Thread.sleep(10)
        assertEquals(0, i)
        debounce(2) // accept -> i = 2
        Thread.sleep(30)
        assertEquals(2, i)
        debounce(4) // ignore -> i = 2
        Thread.sleep(10)
        assertEquals(2, i)
        debounce(8) // accept -> i = 10
        Thread.sleep(30)
        assertEquals(10, i)
    }
}