Merge branch 'feat/favorites-consent' into feat/app-lock

This commit is contained in:
jack 2026-08-11 10:16:56 +02:00
commit c8dd2180dc
11 changed files with 160 additions and 34 deletions

View File

@ -252,15 +252,23 @@ final class PrivateChatManager: ObservableObject {
/// suites through the shared UserDefaults-backed setting.
var sendsReadReceipts: () -> Bool = { ReadReceiptSettings.sendReadReceipts }
/// Records a withheld receipt in the owner's persisted set too: the
/// lifecycle read pass dedups against ChatViewModel.sentReadReceipts,
/// not this manager's set, so claiming only locally would let a receipt
/// for a message read while the setting was OFF fire after re-enabling.
var markReceiptHandled: ((String) -> Void)?
private func sendReadReceipt(for message: BitchatMessage) {
guard !sentReadReceipts.contains(message.id),
let senderPeerID = message.senderPeerID else {
return
}
// Withheld receipts are still claimed below as sent: re-enabling the
// setting must never fire a retroactive burst disclosing past reads.
// Withheld receipts are still claimed as sent in BOTH tracking
// sets: re-enabling the setting must never fire a retroactive burst
// disclosing past reads, from this manager or the lifecycle pass.
guard sendsReadReceipts() else {
sentReadReceipts.insert(message.id)
markReceiptHandled?(message.id)
return
}

View File

@ -79,6 +79,11 @@ enum VoiceBurstScope: Hashable {
/// bubble so nobody sees a duplicate.
@MainActor
final class ChatLiveVoiceCoordinator {
/// Injectable so tests exercise the live path without racing other
/// suites through the shared UserDefaults-backed preference (which now
/// defaults OFF).
var liveVoiceEnabled: () -> Bool = { PTTSettings.liveVoiceEnabled }
/// Burst IDs are sender-chosen, so they only identify a burst *within*
/// an authenticated (peer, scope) pair: keying assemblies by the full
/// triple stops an attacker who observed a public burst ID from racing
@ -187,7 +192,7 @@ final class ChatLiveVoiceCoordinator {
// Live voice off means classic-notes-only in both directions: no live
// bubble, no partial file, no early notification the finalized
// voice note still arrives through the normal pipeline.
guard PTTSettings.liveVoiceEnabled else {
guard liveVoiceEnabled() else {
SecureLogger.debug("PTT: dropping inbound voice frame — live voice is toggled off", category: .session)
return
}
@ -403,7 +408,7 @@ final class ChatLiveVoiceCoordinator {
case .directMessage: context.selectedPrivateChatPeer == peerID
case .publicMesh: context.isViewingPublicMeshTimeline
}
if PTTSettings.liveVoiceEnabled, PTTSettings.isAppActive, isViewing {
if liveVoiceEnabled(), PTTSettings.isAppActive, isViewing {
assembly.player = PTTBurstPlayer()
}

View File

@ -24,6 +24,9 @@ protocol ChatPeerIdentityContext: AnyObject {
var unreadPrivateMessages: Set<PeerID> { get }
/// Clears the peer's unread flag (single-writer store intent).
func markPrivateChatRead(_ peerID: PeerID)
/// Sets the peer's unread flag (shared requirement with the inbound DM
/// paths; witness on `ChatViewModel`).
func markPrivateChatUnread(_ peerID: PeerID)
/// Moves all messages from `oldPeerID`'s chat into `newPeerID`'s chat
/// (dedup by ID, order preserved, unread carried, old chat removed).
func migratePrivateChat(from oldPeerID: PeerID, to newPeerID: PeerID)
@ -621,12 +624,20 @@ extension ChatPeerIdentityCoordinator {
// inherit the thread's earned trust under the same nickname. Only
// warn when there is a conversation to protect.
if wasSelected || !context.privateMessages(for: newPeerID).isEmpty {
// Offline key rotation is the common case here (a favorite came
// back with new keys), and resolveNickname has no mesh nickname
// and no social identity for a fingerprint nobody verified yet
// the persisted favorite relationship still knows who this is.
let favoriteNickname = newPeerID.noiseKey
.flatMap { context.favoriteRelationship(forNoiseKey: $0)?.peerNickname }
.flatMap { $0.isEmpty ? nil : $0 }
let displayName = favoriteNickname ?? resolveNickname(for: newPeerID)
let notice = BitchatMessage(
sender: "system",
content: String(
format: String(localized: "system.identity.key_changed", defaultValue: "%@'s identity key changed — this can mean a new device or a reset. earlier verification no longer applies; verify them again before trusting this chat.", comment: "Private-chat system warning after a peer's Noise identity key changed; placeholder is the peer's name"),
locale: .current,
resolveNickname(for: newPeerID)
displayName
),
timestamp: Date(),
isRelay: false,
@ -636,6 +647,12 @@ extension ChatPeerIdentityCoordinator {
senderPeerID: context.myPeerID
)
context.appendPrivateMessage(notice, to: newPeerID)
// A security event nobody is looking at must not stay silent:
// surface it through the unread indicator unless the chat is
// open right now.
if !wasSelected {
context.markPrivateChatUnread(newPeerID)
}
context.notifyUIChanged()
}
}

View File

@ -832,12 +832,16 @@ final class ChatPrivateConversationCoordinator {
// a peer can only "hug"/"slap"/"screenshot" as themselves.
guard message.content.hasPrefix("* "), message.content.hasSuffix(" *") else { return message }
let inner = String(message.content.dropFirst(2).dropLast(2))
let sender = message.sender
// Match the ACTOR by base name: location-channel senders arrive
// suffixed (`bob#ab12`) while handleEmote embeds the unsuffixed
// nickname, so a raw-string compare would regress every received
// geohash action to plain text.
let senderBase = message.sender.splitSuffix().0
let isActionMessage =
Self.matchesActionTemplate(inner, prefix: "🫂 \(sender) hugs ", suffix: "")
|| Self.matchesActionTemplate(inner, prefix: "🐟 \(sender) slaps ", suffix: " around a bit with a large trout")
|| inner == "\(sender) took a screenshot"
Self.matchesActionTemplate(inner, prefix: "🫂 \(senderBase) hugs ", suffix: "")
|| Self.matchesActionTemplate(inner, prefix: "🐟 \(senderBase) slaps ", suffix: " around a bit with a large trout")
|| inner == "\(senderBase) took a screenshot"
guard isActionMessage else { return message }
@ -856,13 +860,30 @@ final class ChatPrivateConversationCoordinator {
)
}
/// The target slot of an action template: bounded, single-line, and
/// non-empty a nickname or the literal "you", never free text.
/// The target slot of an action template must be a single name token
/// "you", or a nickname optionally carrying a `#abcd` suffix never
/// free text. handleEmote only ever emits a resolved nickname or "you"
/// there; accepting arbitrary bounded text let a self-attributed action
/// smuggle a preamble (" hugs SECURITY: reset your keys at evil") into
/// the trusted system styling.
static func matchesActionTemplate(_ inner: String, prefix: String, suffix: String) -> Bool {
guard inner.hasPrefix(prefix), inner.hasSuffix(suffix),
inner.count >= prefix.count + suffix.count + 1 else { return false }
let target = inner.dropFirst(prefix.count).dropLast(suffix.count)
return !target.isEmpty && target.count <= 64 && !target.contains("\n")
let target = String(inner.dropFirst(prefix.count).dropLast(suffix.count))
return isNameToken(target)
}
/// A display name as it appears in action content: "you", or a single
/// whitespace-free token of bounded length (a nickname, optionally with
/// a `#abcd` disambiguator). A space-containing nickname degrades to a
/// plain message rather than trusted styling the safe direction.
static func isNameToken(_ token: String) -> Bool {
guard token == "you" else {
guard !token.isEmpty, token.count <= 32,
!token.contains(where: { $0.isWhitespace }) else { return false }
return true
}
return true
}
func migratePrivateChatsIfNeeded(for peerID: PeerID, senderNickname: String) {

View File

@ -90,6 +90,9 @@ private extension ChatViewModelBootstrapper {
viewModel.privateChatManager.conversationStore = viewModel.conversations
viewModel.privateChatManager.messageRouter = viewModel.messageRouter
viewModel.privateChatManager.unifiedPeerService = viewModel.unifiedPeerService
viewModel.privateChatManager.markReceiptHandled = { [weak viewModel] messageID in
viewModel?.markReadReceiptSent(messageID)
}
viewModel.unifiedPeerService.messageRouter = viewModel.messageRouter
// Surface silent outbox drops (attempt cap, TTL expiry, overflow
// eviction) as a visible failure. The store's no-downgrade rule does

View File

@ -69,7 +69,7 @@ extension ChatViewModel {
@MainActor
private func liveVoiceTarget() -> LiveVoiceTarget? {
guard PTTSettings.liveVoiceEnabled else { return nil }
guard liveVoiceCoordinator.liveVoiceEnabled() else { return nil }
if let selectedPeer = selectedPrivateChatPeer {
guard !selectedPeer.isGeoDM, !selectedPeer.isGeoChat, !selectedPeer.isGroup else { return nil }

View File

@ -180,15 +180,7 @@ struct MeshPeerList: View {
}
if !isMe {
Button(action: {
// The first favorite ever asks once: the star
// notifies the peer and shares the nostr key.
if !peer.isFavorite, !FavoriteConsent.isAcknowledged {
pendingFavorite = peer
} else {
onToggleFavorite(peer.peerID)
}
}) {
Button(action: { requestFavoriteToggle(peer) }) {
// Mutuality is the load-bearing state (one-sided
// favorites don't enable offline delivery), so it
// shows at the point of decision: half star until
@ -205,7 +197,7 @@ struct MeshPeerList: View {
.contentShape(Rectangle())
}
.buttonStyle(.plain)
.help(peer.isMutualFavorite ? Strings.favoriteMutualTooltip : Strings.favoritePendingTooltip)
.help(favoriteTooltip(for: peer))
}
}
.padding(.horizontal)
@ -221,7 +213,7 @@ struct MeshPeerList: View {
onTapPeer(peer.peerID)
}
Button(peer.isFavorite ? Strings.removeFavorite : Strings.addFavorite) {
onToggleFavorite(peer.peerID)
requestFavoriteToggle(peer)
}
Button(Strings.showFingerprint) {
onShowFingerprint(peer.peerID)
@ -246,7 +238,7 @@ struct MeshPeerList: View {
.accessibilityActions {
if !isMe {
Button(peer.isFavorite ? Strings.removeFavorite : Strings.addFavorite) {
onToggleFavorite(peer.peerID)
requestFavoriteToggle(peer)
}
Button(Strings.showFingerprint) {
onShowFingerprint(peer.peerID)
@ -291,6 +283,24 @@ struct MeshPeerList: View {
}
}
/// Routes every add-favorite entry point (star, context menu, VoiceOver)
/// through the one-time consent dialog; removals stay immediate.
private func requestFavoriteToggle(_ peer: MeshPeerRow) {
if !peer.isFavorite, !FavoriteConsent.isAcknowledged {
pendingFavorite = peer
} else {
onToggleFavorite(peer.peerID)
}
}
/// Tooltip for the star: the mutual/pending copy applies only once the
/// peer is actually favorited on an empty star it would claim a
/// favorite that doesn't exist.
private func favoriteTooltip(for peer: MeshPeerRow) -> String {
guard peer.isFavorite else { return Strings.addFavorite }
return peer.isMutualFavorite ? Strings.favoriteMutualTooltip : Strings.favoritePendingTooltip
}
/// One spoken sentence per row: name, how they're reachable, and any
/// state badges the visual row is icon soup for VoiceOver otherwise.
private func accessibilityDescription(for peer: MeshPeerRow) -> String {

View File

@ -127,6 +127,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func burstCreatesBubbleAndPersistsFramesInOrder() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0xA1)
defer { fallbackFileURL(burstID: burstID, peerID: peer).map { try? FileManager.default.removeItem(at: $0) } }
@ -168,6 +169,7 @@ struct ChatLiveVoiceCoordinatorTests {
let context = MockChatLiveVoiceContext()
context.selectedPrivateChatPeer = peer
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0xB2)
let hex = burstID.hexEncodedString()
let fileName = "voice_\(hex).m4a"
@ -223,6 +225,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func absorbIgnoresUnrelatedVoiceNotes() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
// A classic voice note (date-stamped name) and a live-capture name
// must both pass through untouched.
@ -247,6 +250,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func canceledBurstRemovesBubbleAndFile() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0xC3)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 1, kind: .frames([Data(repeating: 9, count: 40)]))), to: coordinator, from: peer)
@ -262,6 +266,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func emptyBurstLeavesNoBubble() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0xD4)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 0, kind: .start(codec: .aacLC16kMono))), to: coordinator, from: peer)
@ -275,6 +280,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func ignoresBlockedPeersAndUnknownControlPackets() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
context.blockedPeers = [peer]
send(try #require(VoiceBurstPacket(burstID: makeBurstID(0xE5), seq: 0, kind: .start(codec: .aacLC16kMono))), to: coordinator, from: peer)
@ -290,6 +296,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func concurrentAssemblyCapDropsExtraBursts() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
var cleanup: [Data] = []
defer {
@ -309,12 +316,10 @@ struct ChatLiveVoiceCoordinatorTests {
}
@Test func liveVoiceToggleOffDropsInboundFrames() throws {
let previous = PTTSettings.liveVoiceEnabled
PTTSettings.liveVoiceEnabled = false
defer { PTTSettings.liveVoiceEnabled = previous }
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
coordinator.liveVoiceEnabled = { false }
let burstID = makeBurstID(0xE8)
// Off means classic-notes-only: no live bubble, no partial file.
@ -328,6 +333,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func publicBurstCreatesMeshBubbleAndTracksTalker() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x71)
defer {
incomingFileURL(burstID: burstID, peerID: peer, scope: .publicMesh).map { try? FileManager.default.removeItem(at: $0) }
@ -369,6 +375,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func absorbEnforcesScopeBinding() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x72)
defer { fallbackFileURL(burstID: burstID, peerID: peer).map { try? FileManager.default.removeItem(at: $0) } }
@ -400,6 +407,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func collidingBurstIDFromAnotherPeerCannotHijackAssembly() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x73)
let attacker = PeerID(str: "ddddeeeeffff0002")
defer {
@ -435,6 +443,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func sameBurstIDCoexistsAcrossScopes() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x74)
defer {
fallbackFileURL(burstID: burstID, peerID: peer).map { try? FileManager.default.removeItem(at: $0) }
@ -492,6 +501,7 @@ struct ChatLiveVoiceCoordinatorTests {
@Test func finalizedNoteBindsToItsAuthenticatedSender() throws {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, sweepsOnInit: false)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x75)
let hex = burstID.hexEncodedString()
let attacker = PeerID(str: "ddddeeeeffff0002")
@ -550,6 +560,7 @@ struct ChatLiveVoiceCoordinatorTests {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, fileStore: store)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x76)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 0, kind: .start(codec: .aacLC16kMono))), to: coordinator, from: peer)
@ -571,6 +582,7 @@ struct ChatLiveVoiceCoordinatorTests {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, fileStore: store)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x77)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 0, kind: .start(codec: .aacLC16kMono))), to: coordinator, from: peer)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 1, kind: .frames([Data(repeating: 8, count: 60)]))), to: coordinator, from: peer)
@ -618,6 +630,7 @@ struct ChatLiveVoiceCoordinatorTests {
// sender out of range): the capture is the row's only audio.
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, fileStore: store)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x79)
let frame = Data(repeating: 0x0B, count: 60)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 1, kind: .frames([frame]))), to: coordinator, from: peer)
@ -642,6 +655,7 @@ struct ChatLiveVoiceCoordinatorTests {
let context = MockChatLiveVoiceContext()
let coordinator = ChatLiveVoiceCoordinator(context: context, fileStore: store)
coordinator.liveVoiceEnabled = { true }
let burstID = makeBurstID(0x7A)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 1, kind: .frames([Data(repeating: 0x0C, count: 60)]))), to: coordinator, from: peer)
send(try #require(VoiceBurstPacket(burstID: burstID, seq: 2, kind: .end(totalDataPackets: 1, durationMs: 64))), to: coordinator, from: peer)

View File

@ -46,6 +46,10 @@ private final class MockChatPeerIdentityContext: ChatPeerIdentityContext {
unreadPrivateMessages.remove(peerID)
}
func markPrivateChatUnread(_ peerID: PeerID) {
unreadPrivateMessages.insert(peerID)
}
@discardableResult
func appendPrivateMessage(_ message: BitchatMessage, to peerID: PeerID) -> Bool {
var chat = privateChats[peerID] ?? []
@ -390,6 +394,35 @@ struct ChatPeerIdentityCoordinatorContextTests {
#expect(notice?.content.contains("identity key changed") == true)
#expect(notice?.content.contains("alice") == true)
#expect(context.privateChats[oldPeerID] == nil)
// A background security event must surface via the unread indicator.
#expect(context.unreadPrivateMessages.contains(newPeerID))
}
@Test @MainActor
func migrateNoiseKeyUpdate_namesOfflineFavoritesFromTheRelationship() async {
let context = MockChatPeerIdentityContext()
let coordinator = ChatPeerIdentityCoordinator(context: context)
let oldPeerID = PeerID(str: "5555555555555555")
let newKey = Data(repeating: 0xCD, count: 32)
let newPeerID = PeerID(hexData: newKey)
// Offline key rotation: no mesh nickname, no social identity for the
// unverified new fingerprint only the favorite relationship knows
// who this is.
context.favoriteRelationshipsByNoiseKey[newKey] = FavoritesPersistenceService.FavoriteRelationship(
peerNoisePublicKey: newKey,
peerNostrPublicKey: nil,
peerNickname: "carol",
isFavorite: true,
theyFavoritedUs: true,
favoritedAt: Date(timeIntervalSince1970: 0),
lastUpdated: Date(timeIntervalSince1970: 0)
)
context.privateChats[oldPeerID] = [makePrivateMessage(id: "m2", timestamp: Date(timeIntervalSince1970: 1))]
coordinator.migrateNoiseKeyUpdate(oldPeerID: oldPeerID, newPeerID: newPeerID)
let notice = (context.privateChats[newPeerID] ?? []).last
#expect(notice?.content.contains("carol") == true)
}
@Test @MainActor

View File

@ -350,16 +350,25 @@ struct ChatPrivateConversationCoordinatorContextTests {
#expect(processed("* 🐟 bob slaps alice around a bit with a large trout *").sender == "system")
#expect(processed("* bob took a screenshot *").sender == "system")
// Location-channel senders arrive suffixed while content stays
// unsuffixed must still render as a system action.
#expect(processed("* 🫂 bob hugs alice *", sender: "bob#ab12").sender == "system")
#expect(processed("* 🫂 bob hugs alice#1a2b *").sender == "system")
// The spoof this parser used to allow: arbitrary text between the
// markers with a magic substring rendered as system-authored.
#expect(processed("* SECURITY: your session key expired, re-verify at evil.example — bob took a screenshot *").sender == "bob")
#expect(processed("* 🫂 admin hugs alice — send your keys to @admin *").sender == "bob")
// Self-attributed preamble smuggled into the target slot: the target
// must be a single name token, so free text with spaces is rejected.
#expect(processed("* 🫂 bob hugs SECURITY: reset your keys at evil.example *").sender == "bob")
// Actor slot must be the actual sender, not someone else's name.
#expect(processed("* alice took a screenshot *", sender: "bob").sender == "bob")
#expect(processed("* 🫂 alice hugs you *", sender: "bob").sender == "bob")
// Free text smuggled into the target slot: bounded, single-line only.
// Target slot: single whitespace-free token, bounded length only.
#expect(processed("* 🫂 bob hugs " + String(repeating: "x", count: 200) + " *").sender == "bob")
#expect(processed("* 🫂 bob hugs a\nb *").sender == "bob")
#expect(processed("* 🫂 bob hugs a b *").sender == "bob")
// Not an action shape at all.
#expect(processed("hello there").sender == "bob")
}

View File

@ -462,10 +462,13 @@ struct ChatViewModelServiceLifecycleTests {
#expect(!sentReadReceipt)
// ...while the chat is still marked read locally and the receipt is
// recorded as handled, so re-enabling the setting never fires a
// retroactive burst disclosing past reading activity.
// recorded as handled in BOTH tracking sets (the lifecycle pass
// dedups against the owner's persisted set, the manager against its
// own), so re-enabling the setting never fires a retroactive burst
// disclosing past reading activity from either path.
#expect(!viewModel.unreadPrivateMessages.contains(peerID))
#expect(viewModel.sentReadReceipts.contains("read-2") || viewModel.privateChatManager.sentReadReceipts.contains("read-2"))
#expect(viewModel.sentReadReceipts.contains("read-2"))
#expect(viewModel.privateChatManager.sentReadReceipts.contains("read-2"))
}
@Test @MainActor
@ -1603,6 +1606,9 @@ struct ChatViewModelPrivateMediaDeletionTests {
kind: .canceled
))
let coordinator = viewModel.liveVoiceCoordinator
// The live-voice preference defaults OFF now; this fixture exercises
// the opted-in live path.
coordinator.liveVoiceEnabled = { true }
defer {
coordinator.handleVoiceFramePayload(
from: peerID,