-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[console] Create PluginOnDisableCalledOnlyOnceTest test; Fix tests
- Loading branch information
Showing
2 changed files
with
42 additions
and
3 deletions.
There are no files selected for viewing
33 changes: 33 additions & 0 deletions
33
...sole/backend/integration-test/test/testpoints/plugin/PluginOnDisableCalledOnlyOnceTest.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* | ||
* Copyright 2019-2022 Mamoe Technologies and contributors. | ||
* | ||
* 此源代码的使用受 GNU AFFERO GENERAL PUBLIC LICENSE version 3 许可证的约束, 可以在以下链接找到该许可证. | ||
* Use of this source code is governed by the GNU AGPLv3 license that can be found through the following link. | ||
* | ||
* https://github.com/mamoe/mirai/blob/dev/LICENSE | ||
*/ | ||
|
||
package net.mamoe.console.integrationtest.testpoints.plugin | ||
|
||
import kotlinx.atomicfu.atomic | ||
import net.mamoe.console.integrationtest.AbstractTestPointAsPlugin | ||
import net.mamoe.mirai.console.plugin.jvm.JvmPluginDescription | ||
import net.mamoe.mirai.console.plugin.jvm.KotlinPlugin | ||
|
||
internal object PluginOnDisableCalledOnlyOnceTest : AbstractTestPointAsPlugin() { | ||
override fun newPluginDescription(): JvmPluginDescription { | ||
return JvmPluginDescription( | ||
id = "net.mamoe.testpoint.plugin-on-disable-called-only-once", | ||
version = "1.0.0", | ||
name = "PluginOnDisableCalledOnlyOnce", | ||
) {} | ||
} | ||
|
||
private val onDisableCalled = atomic(false) | ||
|
||
override fun KotlinPlugin.onDisable0() { | ||
if (!onDisableCalled.compareAndSet(expect = false, update = true)) { | ||
error("onDisable called multiple times!!") | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters