Skip to content

使用 Lincheck 編寫您的第一個測試

本教學課程展示如何編寫您的第一個 Lincheck 測試、設定 Lincheck 框架,以及使用其基本 API。您將建立一個新的 IntelliJ IDEA 專案,其中包含一個不正確的並行計數器實作,並為其編寫測試,之後再找到並分析錯誤。

建立專案

在 IntelliJ IDEA 中開啟一個現有的 Kotlin 專案,或建立一個新的專案。建立專案時,請使用 Gradle 建置系統。

加入必要的相依性

  1. 開啟 build.gradle(.kts) 檔案,並確認 mavenCentral() 已加入到儲存庫清單中。

  2. 將以下相依性加入到 Gradle 設定中:

    kotlin
    repositories {
        mavenCentral()
    }
    
    dependencies {
        // Lincheck 相依性
        testImplementation("org.jetbrains.lincheck:lincheck:3.0")
        // 此相依性允許您使用 kotlin.test 和 JUnit:
        testImplementation("junit:junit:4.13")
    }
    groovy
    repositories {
        mavenCentral()
    }
    
    dependencies {
        // Lincheck 相依性
        testImplementation "org.jetbrains.lincheck:lincheck:3.0"
        // 此相依性允許您使用 kotlin.test 和 JUnit:
        testImplementation "junit:junit:4.13"
    }

編寫並行計數器並執行測試

  1. src/test/kotlin 目錄中,建立一個 BasicCounterTest.kt 檔案,並 加入以下程式碼,其中包含一個有錯誤的並行計數器和一個用於測試的 Lincheck 測試:

    kotlin
    import org.jetbrains.lincheck.*
    import org.jetbrains.lincheck.datastructures.*
    import org.junit.*
    
    class Counter {
        @Volatile
        private var value = 0
    
        fun inc(): Int = ++value
        fun get() = value
    }
    
    class BasicCounterTest {
        private val c = Counter() // 初始狀態
    
        // 對 Counter 的操作
        @Operation
        fun inc() = c.inc()
    
        @Operation
        fun get() = c.get()
    
        @Test // JUnit
        fun stressTest() = StressOptions().check(this::class) // 魔法按鈕
    }

    此 Lincheck 測試會自動:

    • 使用指定的 inc()get() 操作產生多個隨機並行情境。
    • 為每個產生的情境執行大量呼叫。
    • 驗證每個呼叫結果是否正確。
  2. 執行上述測試,您將看到以下錯誤:

    text
    = Invalid execution results =
    | ------------------- |
    | Thread 1 | Thread 2 |
    | ------------------- |
    | inc(): 1 | inc(): 1 |
    | ------------------- |

    在這裡,Lincheck 找到了一個違反計數器原子性的執行 — 兩個並行的增量最終 結果都為 1。這意味著一個增量已丟失,且計數器的行為不正確。

追蹤無效執行

除了顯示無效執行結果之外,Lincheck 還可以提供導致錯誤的交錯執行。此 功能可透過模型檢查測試策略取得, 該策略檢查大量具有有限次上下文切換的執行。

  1. 若要切換測試策略,請將 options 類型從 StressOptions() 替換為 ModelCheckingOptions()。 更新後的 BasicCounterTest 類別將會像這樣:

    kotlin
    import org.jetbrains.lincheck.*
    import org.jetbrains.lincheck.datastructures.*
    import org.junit.*
    
    class Counter {
        @Volatile
        private var value = 0
    
        fun inc(): Int = ++value
        fun get() = value
    }
    
    class BasicCounterTest {
        private val c = Counter()
    
        @Operation
        fun inc() = c.inc()
    
        @Operation
        fun get() = c.get()
    
        @Test
        fun modelCheckingTest() = ModelCheckingOptions().check(this::class)
    }
  2. 再次執行測試。您將會得到導致不正確結果的執行追蹤:

    text
    = Invalid execution results =
    | ------------------- |
    | Thread 1 | Thread 2 |
    | ------------------- |
    | inc(): 1 | inc(): 1 |
    | ------------------- |
    
    The following interleaving leads to the error:
    | --------------------------------------------------------------------- |
    | Thread 1 |                          Thread  2                         |
    | --------------------------------------------------------------------- |
    |          | inc()                                                      |
    |          |   inc(): 1 at BasicCounterTest.inc(BasicCounterTest.kt:18) |
    |          |     value.READ: 0 at Counter.inc(BasicCounterTest.kt:10)   |
    |          |     switch                                                 |
    | inc(): 1 |                                                            |
    |          |     value.WRITE(1) at Counter.inc(BasicCounterTest.kt:10)  |
    |          |     value.READ: 1 at Counter.inc(BasicCounterTest.kt:10)   |
    |          |   result: 1                                                |
    | --------------------------------------------------------------------- |

    根據追蹤,發生了以下事件:

    • T2:第二個執行緒開始 inc() 操作,讀取目前的計數器值 (value.READ: 0) 並暫停。
    • T1:第一個執行緒執行 inc(),回傳 1,並完成。
    • T2:第二個執行緒恢復並增加之前取得的計數器值,不正確地將 計數器更新為 1

取得完整程式碼

測試 Java 標準函式庫

現在讓我們在 Java 標準的 ConcurrentLinkedDeque 類別中找到一個錯誤。 下面的 Lincheck 測試發現了從 deque 頭部移除和新增元素之間的競爭條件:

kotlin
import java.util.concurrent.*
import org.jetbrains.lincheck.*
import org.jetbrains.lincheck.datastructures.*
import org.junit.*

class ConcurrentDequeTest {
    private val deque = ConcurrentLinkedDeque<Int>()

    @Operation
    fun addFirst(e: Int) = deque.addFirst(e)

    @Operation
    fun addLast(e: Int) = deque.addLast(e)

    @Operation
    fun pollFirst() = deque.pollFirst()

    @Operation
    fun pollLast() = deque.pollLast()

    @Operation
    fun peekFirst() = deque.peekFirst()

    @Operation
    fun peekLast() = deque.peekLast()

    @Test
    fun modelCheckingTest() = ModelCheckingOptions().check(this::class)
}

執行 modelCheckingTest()。測試將會失敗並顯示以下輸出:

text
= Invalid execution results =
| ---------------------------------------- |
|      Thread 1     |       Thread 2       |
| ---------------------------------------- |
| addLast(22): void |                      |
| ---------------------------------------- |
| pollFirst(): 22   | addFirst(8): void    |
|                   | peekLast(): 22 [-,1] |
| ---------------------------------------- |

---
All operations above the horizontal line | ----- | happen before those below the line
---
Values in "[..]" brackets indicate the number of completed operations
in each of the parallel threads seen at the beginning of the current operation
---

The following interleaving leads to the error:
| --------------------------------------------------------------------------------------------------------------------------------- |
|                                                Thread 1                                                    |       Thread 2       |
| --------------------------------------------------------------------------------------------------------------------------------- |
| pollFirst()                                                                                                |                      |
|   pollFirst(): 22 at ConcurrentDequeTest.pollFirst(ConcurrentDequeTest.kt:17)                              |                      |
|     first(): Node@1 at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:915)                     |                      |
|     item.READ: null at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:917)                     |                      |
|     next.READ: Node@2 at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:925)                   |                      |
|     item.READ: 22 at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:917)                       |                      |
|     prev.READ: null at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:919)                     |                      |
|     switch                                                                                                 |                      |
|                                                                                                            | addFirst(8): void    |
|                                                                                                            | peekLast(): 22       |
|     compareAndSet(Node@2,22,null): true at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:920) |                      |
|     unlink(Node@2) at ConcurrentLinkedDeque.pollFirst(ConcurrentLinkedDeque.java:921)                      |                      |
|   result: 22                                                                                               |                      |
| --------------------------------------------------------------------------------------------------------------------------------- |

取得完整程式碼

下一步

選擇您的測試策略並設定測試執行

另請參閱