1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-05 07:10:11 +08:00

[core] Do logout only if firstLoginSucceed

This commit is contained in:
Him188 2022-12-27 17:29:43 +00:00
parent 04b16fe2e4
commit e3e71e1d1f
No known key found for this signature in database
GPG Key ID: BA439CDDCF652375
2 changed files with 36 additions and 1 deletions
mirai-core/src
commonMain/kotlin/network/components
commonTest/kotlin/network/handler

View File

@ -182,7 +182,9 @@ internal class SsoProcessorImpl(
}
override suspend fun logout(handler: NetworkHandler) {
handler.sendWithoutExpect(StatSvc.Register.offline(client))
if (firstLoginSucceed) {
handler.sendWithoutExpect(StatSvc.Register.offline(client))
}
}
private fun createClient(bot: QQAndroidBot): QQAndroidClient {
@ -265,6 +267,7 @@ internal class SsoProcessorImpl(
logger.info { "Login successful" }
break@mainloop
}
is LoginPacketResponse.DeviceLockLogin -> {
response = WtLogin20(client).sendAndExpect()
}
@ -278,6 +281,7 @@ internal class SsoProcessorImpl(
is UrlDeviceVerificationResult -> {
WtLogin9(client, allowSlider).sendAndExpect()
}
is SmsDeviceVerificationResult -> {
WtLogin7(client, result.token, result.code).sendAndExpect()
}

View File

@ -10,6 +10,7 @@
package net.mamoe.mirai.internal.network.handler
import kotlinx.coroutines.test.runTest
import net.mamoe.mirai.internal.network.components.FirstLoginResult
import net.mamoe.mirai.internal.network.components.SsoProcessor
import net.mamoe.mirai.internal.network.framework.AbstractRealNetworkHandlerTest
import net.mamoe.mirai.internal.network.framework.TestCommonNetworkHandler
@ -51,4 +52,34 @@ internal class SelectorLoginRecoveryTest :
assertEquals(exceptionMessage, e.message)
}
}
/**
* 登录时遇到未知错误, [WtLogin] 会抛 [IllegalStateException] (即抛不可挽救的异常),
* selector 应该 close Bot, 不要 logout, 要重新抛出捕获的异常.
*/
@Test
fun `do not call logout when closing bot due to failed to login`() = runTest {
val exceptionMessage = "Login failed!"
setComponent(SsoProcessor, object : TestSsoProcessor(bot) {
override suspend fun login(handler: NetworkHandler) {
throw IllegalStateException(exceptionMessage)
}
override suspend fun logout(handler: NetworkHandler) {
if (firstLoginSucceed) {
throw AssertionError("Congratulations! You called logout!")
}
}
})
assertEquals(null, bot.components[SsoProcessor].firstLoginResult)
bot.components[SsoProcessor].setFirstLoginResult(null)
assertFailsWith<IllegalStateException> {
bot.login()
}.let { e ->
assertEquals(exceptionMessage, e.message)
}
assertEquals(FirstLoginResult.OTHER_FAILURE, bot.components[SsoProcessor].firstLoginResult)
bot.close()
}
}