惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

H
Help Net Security
腾讯CDC
爱范儿
爱范儿
Google DeepMind News
Google DeepMind News
V
V2EX
Blog — PlanetScale
Blog — PlanetScale
Engineering at Meta
Engineering at Meta
GbyAI
GbyAI
量子位
F
Fortinet All Blogs
G
Google Developers Blog
T
The Blog of Author Tim Ferriss
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Hugging Face - Blog
Hugging Face - Blog
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
J
Java Code Geeks
S
SegmentFault 最新的问题
D
Docker
博客园 - 司徒正美
The GitHub Blog
The GitHub Blog
Jina AI
Jina AI
M
MIT News - Artificial intelligence
博客园 - 【当耐特】

Recent Commits to openclaw:main

test: merge chat side-result checks · openclaw/openclaw@ddd2c2a test: merge cron history checks · openclaw/openclaw@f7eb746 test: merge responsive navigation shell checks · openclaw/openclaw@c2e4b47 docs(changelog): add codex oauth fixes · openclaw/openclaw@628e6cd test: merge navigation routing cases · openclaw/openclaw@5d8cecb Tests: mock channel registry bundled fallback · openclaw/openclaw@2b08233 Secrets: avoid broad web search discovery for single plugin config · openclaw/openclaw@a464f59 test: merge config view browser checks · openclaw/openclaw@20cf511 fix(status): align oauth health with runtime · openclaw/openclaw@eed7116 feat: add macOS screen snapshots for monitor preview (#67954) thanks … · openclaw/openclaw@f377db1 fix: report shared auth scopes in hello-ok (#67810) thanks @BunsDev · openclaw/openclaw@0b6c39b Auto-reply: avoid eager bundled route fallback · openclaw/openclaw@3ea1bf4 Tests: narrow session binding contract setup · openclaw/openclaw@54e4e16 fix(macOS): enable undo/redo in webchat composer text input (#34962) · openclaw/openclaw@00951dc Tests: speed up channel setup promotion · openclaw/openclaw@82b529a Docs: refresh agent instructions · openclaw/openclaw@5775fe2 fix(auth): serialize OAuth refresh across agents to fix #26322 (#67876) · openclaw/openclaw@8e79080 test: allow ollama public surface boundary test · openclaw/openclaw@7d4f1a6 Docs: add test performance guardrails · openclaw/openclaw@89706d3 Tests: restore context-engine usage proof · openclaw/openclaw@e4c4f95 Tests: slim context engine runtime coverage · openclaw/openclaw@74c198f ci: retry failed custom checkouts · openclaw/openclaw@0ee5baf test: trim duplicate provider auth onboarding cases · openclaw/openclaw@1ffc02e matrix: fix sessions_spawn --thread subagent session spawning (#67643) · openclaw/openclaw@1ce2596 test: reduce auth choice fixture churn · openclaw/openclaw@857b9cd test: mock health status config boundaries · openclaw/openclaw@9d5ab4a test: mock onboard config io boundary · openclaw/openclaw@299694d test: mock legacy state plugin boundaries · openclaw/openclaw@2713089 test: mock channel install boundaries · openclaw/openclaw@b945248 test: mock doctor preview channel boundaries · openclaw/openclaw@b1a3ad4
test(android): cover turn mic transcription lifecycle · o...
obviyus · 2026-05-18 · via Recent Commits to openclaw:main

@@ -0,0 +1,258 @@

1+

package ai.openclaw.app.voice

2+3+

import android.Manifest

4+

import kotlinx.coroutines.CancellationException

5+

import kotlinx.coroutines.CompletableDeferred

6+

import kotlinx.coroutines.CoroutineScope

7+

import kotlinx.coroutines.Dispatchers

8+

import kotlinx.coroutines.ExperimentalCoroutinesApi

9+

import kotlinx.coroutines.Job

10+

import kotlinx.coroutines.flow.MutableStateFlow

11+

import kotlinx.coroutines.test.advanceUntilIdle

12+

import kotlinx.coroutines.test.runCurrent

13+

import kotlinx.coroutines.test.runTest

14+

import org.junit.Assert.assertEquals

15+

import org.junit.Assert.assertNull

16+

import org.junit.Test

17+

import org.junit.runner.RunWith

18+

import org.robolectric.RobolectricTestRunner

19+

import org.robolectric.RuntimeEnvironment

20+

import org.robolectric.Shadows.shadowOf

21+

import org.robolectric.annotation.Config

22+23+

@RunWith(RobolectricTestRunner::class)

24+

@Config(sdk = [34])

25+

class MicCaptureManagerTest {

26+

@Test

27+

@OptIn(ExperimentalCoroutinesApi::class)

28+

fun transcriptionFinalQueuesGatewayMessage() =

29+

runTest {

30+

val sentMessages = mutableListOf<String>()

31+

val manager =

32+

createManager(

33+

scope = this,

34+

sendToGateway = { message, onRunIdKnown ->

35+

sentMessages += message

36+

onRunIdKnown("run-1")

37+

null

38+

},

39+

)

40+41+

setPrivateField(manager, "transcriptionSessionId", "transcription-1")

42+

manager.onGatewayConnectionChanged(true)

43+

manager.handleGatewayEvent(

44+

"talk.event",

45+

"""{"transcriptionSessionId":"transcription-1","type":"partial","text":"hello"}""",

46+

)

47+

manager.handleGatewayEvent(

48+

"talk.event",

49+

"""{"transcriptionSessionId":"transcription-1","type":"transcript","text":"hello world","final":true}""",

50+

)

51+

runCurrent()

52+

manager.handleGatewayEvent("chat", chatFinalPayload(runId = "run-1", text = "reply"))

53+

advanceUntilIdle()

54+55+

assertNull(manager.liveTranscript.value)

56+

assertEquals(listOf("hello world"), sentMessages)

57+

val conversation = manager.conversation.value.first()

58+

assertEquals(VoiceConversationRole.User, conversation.role)

59+

assertEquals("hello world", conversation.text)

60+

}

61+62+

@Test

63+

fun transcriptionErrorDisablesMic() {

64+

val manager = createManager()

65+66+

setPrivateField(manager, "transcriptionSessionId", "transcription-1")

67+

manager.handleGatewayEvent(

68+

"talk.event",

69+

"""{"transcriptionSessionId":"transcription-1","type":"error","message":"provider unavailable"}""",

70+

)

71+72+

assertEquals(false, manager.micEnabled.value)

73+

assertEquals("Transcription failed: provider unavailable", manager.statusText.value)

74+

}

75+76+

@Test

77+

@OptIn(ExperimentalCoroutinesApi::class)

78+

fun punctuationOnlyTranscriptDoesNotSendTurn() =

79+

runTest {

80+

val sentMessages = mutableListOf<String>()

81+

val manager =

82+

createManager(

83+

scope = this,

84+

sendToGateway = { message, onRunIdKnown ->

85+

sentMessages += message

86+

onRunIdKnown("run-1")

87+

"run-1"

88+

},

89+

)

90+91+

setPrivateField(manager, "transcriptionSessionId", "transcription-1")

92+

manager.onGatewayConnectionChanged(true)

93+

manager.handleGatewayEvent(

94+

"talk.event",

95+

"""{"transcriptionSessionId":"transcription-1","type":"transcript","text":".","final":true}""",

96+

)

97+

advanceUntilIdle()

98+99+

assertEquals(emptyList<String>(), sentMessages)

100+

assertEquals(emptyList<VoiceConversationEntry>(), manager.conversation.value)

101+

}

102+103+

@Test

104+

fun pcm16FramesAreEncodedAsPcmuFrames() {

105+

val manager = createManager()

106+

val method = manager.javaClass.getDeclaredMethod("pcm16ToPcmu", ByteArray::class.java)

107+

method.isAccessible = true

108+109+

val encoded = method.invoke(manager, byteArrayOf(0, 0, 0, 0)) as ByteArray

110+111+

assertEquals(2, encoded.size)

112+

assertEquals(0xff.toByte(), encoded[0])

113+

assertEquals(0xff.toByte(), encoded[1])

114+

}

115+116+

@Test

117+

@OptIn(ExperimentalCoroutinesApi::class)

118+

fun disablingMicDuringSessionCreateClosesReturnedSession() =

119+

runTest {

120+

val createdSession = CompletableDeferred<String>()

121+

val closedSessions = mutableListOf<String>()

122+

val manager =

123+

createManager(

124+

scope = this,

125+

createTranscriptionSession = { createdSession.await() },

126+

closeTranscriptionSession = { sessionId -> closedSessions += sessionId },

127+

)

128+129+

manager.onGatewayConnectionChanged(true)

130+

manager.setMicEnabled(true)

131+

manager.setMicEnabled(false)

132+

createdSession.complete("transcription-1")

133+

advanceUntilIdle()

134+135+

assertEquals(listOf("transcription-1"), closedSessions)

136+

assertEquals(false, manager.isListening.value)

137+

}

138+139+

@Test

140+

@OptIn(ExperimentalCoroutinesApi::class)

141+

fun disablingMicKeepsSessionOpenForFinalTranscript() =

142+

runTest {

143+

val manager = createManager(scope = this)

144+145+

setPrivateMutableStateFlowValue(manager, "_micEnabled", true)

146+

setPrivateField(manager, "transcriptionSessionId", "transcription-1")

147+

manager.setMicEnabled(false)

148+

manager.handleGatewayEvent(

149+

"talk.event",

150+

"""{"transcriptionSessionId":"transcription-1","type":"transcript","text":"testing testing 1 2 3","final":true}""",

151+

)

152+

runCurrent()

153+154+

assertEquals("testing testing 1 2 3", manager.conversation.value.single().text)

155+

assertEquals("transcription-1", privateField<String?>(manager, "transcriptionSessionId"))

156+

privateField<Job?>(manager, "transcriptionDrainJob")?.cancel()

157+

}

158+159+

@Test

160+

@OptIn(ExperimentalCoroutinesApi::class)

161+

fun reconnectRestartsAfterPendingCreateCancellation() =

162+

runTest {

163+

val firstCreate = CompletableDeferred<String>()

164+

val secondCreate = CompletableDeferred<String>()

165+

var createCalls = 0

166+

val manager =

167+

createManager(

168+

scope = this,

169+

createTranscriptionSession = {

170+

createCalls += 1

171+

if (createCalls == 1) firstCreate.await() else secondCreate.await()

172+

},

173+

)

174+175+

manager.onGatewayConnectionChanged(true)

176+

manager.setMicEnabled(true)

177+

runCurrent()

178+

manager.onGatewayConnectionChanged(false)

179+

manager.onGatewayConnectionChanged(true)

180+

firstCreate.completeExceptionally(CancellationException("connection closed"))

181+

runCurrent()

182+183+

assertEquals(2, createCalls)

184+

assertEquals(true, manager.micEnabled.value)

185+

manager.setMicEnabled(false)

186+

secondCreate.completeExceptionally(CancellationException("test complete"))

187+

runCurrent()

188+

}

189+190+

private fun createManager(

191+

scope: CoroutineScope = CoroutineScope(Dispatchers.Unconfined),

192+

createTranscriptionSession: suspend () -> String = { "transcription-1" },

193+

closeTranscriptionSession: suspend (String) -> Unit = { _ -> },

194+

sendToGateway: suspend (String, (String) -> Unit) -> String? = { _, onRunIdKnown ->

195+

onRunIdKnown("run-1")

196+

"run-1"

197+

},

198+

): MicCaptureManager =

199+

MicCaptureManager(

200+

context =

201+

RuntimeEnvironment.getApplication().also { app ->

202+

shadowOf(app).grantPermissions(Manifest.permission.RECORD_AUDIO)

203+

},

204+

scope = scope,

205+

createTranscriptionSession = createTranscriptionSession,

206+

appendTranscriptionAudio = { _, _, _ -> },

207+

closeTranscriptionSession = closeTranscriptionSession,

208+

sendToGateway = sendToGateway,

209+

)

210+211+

private fun setPrivateField(

212+

target: Any,

213+

name: String,

214+

value: Any?,

215+

) {

216+

val field = target.javaClass.getDeclaredField(name)

217+

field.isAccessible = true

218+

field.set(target, value)

219+

}

220+221+

@Suppress("UNCHECKED_CAST")

222+

private fun setPrivateMutableStateFlowValue(

223+

target: Any,

224+

name: String,

225+

value: Boolean,

226+

) {

227+

val field = target.javaClass.getDeclaredField(name)

228+

field.isAccessible = true

229+

(field.get(target) as MutableStateFlow<Boolean>).value = value

230+

}

231+232+

@Suppress("UNCHECKED_CAST")

233+

private fun <T> privateField(

234+

target: Any,

235+

name: String,

236+

): T {

237+

val field = target.javaClass.getDeclaredField(name)

238+

field.isAccessible = true

239+

return field.get(target) as T

240+

}

241+242+

private fun chatFinalPayload(

243+

runId: String,

244+

text: String,

245+

): String =

246+

"""

247+

{

248+

"runId": "$runId",

249+

"state": "final",

250+

"message": {

251+

"role": "assistant",

252+

"content": [

253+

{ "type": "text", "text": "$text" }

254+

]

255+

}

256+

}

257+

""".trimIndent()

258+

}