mirror of
https://github.com/permissionlesstech/bitchat.git
synced 2026-07-24 23:45:18 +00:00
* Run local packages’ tests as well on CI * BitFoundation module to centralize shared components
119 lines
3.4 KiB
Swift
119 lines
3.4 KiB
Swift
//
|
|
// MockIdentityManager.swift
|
|
// bitchat
|
|
//
|
|
// This is free and unencumbered software released into the public domain.
|
|
// For more information, see <https://unlicense.org>
|
|
//
|
|
|
|
import Foundation
|
|
import BitFoundation
|
|
@testable import bitchat
|
|
|
|
final class MockIdentityManager: SecureIdentityStateManagerProtocol {
|
|
private let keychain: KeychainManagerProtocol
|
|
private var blockedFingerprints: Set<String> = []
|
|
private var blockedNostrPubkeys: Set<String> = []
|
|
private var socialIdentities: [String: SocialIdentity] = [:]
|
|
|
|
init(_ keychain: KeychainManagerProtocol) {
|
|
self.keychain = keychain
|
|
}
|
|
|
|
func loadIdentityCache() {}
|
|
|
|
func saveIdentityCache() {}
|
|
|
|
func forceSave() {}
|
|
|
|
func getSocialIdentity(for fingerprint: String) -> SocialIdentity? {
|
|
socialIdentities[fingerprint]
|
|
}
|
|
|
|
func upsertCryptographicIdentity(fingerprint: String, noisePublicKey: Data, signingPublicKey: Data?, claimedNickname: String?) {}
|
|
|
|
func getCryptoIdentitiesByPeerIDPrefix(_ peerID: PeerID) -> [CryptographicIdentity] {
|
|
[]
|
|
}
|
|
|
|
func updateSocialIdentity(_ identity: SocialIdentity) {
|
|
socialIdentities[identity.fingerprint] = identity
|
|
if identity.isBlocked {
|
|
blockedFingerprints.insert(identity.fingerprint)
|
|
} else {
|
|
blockedFingerprints.remove(identity.fingerprint)
|
|
}
|
|
}
|
|
|
|
func getFavorites() -> Set<String> {
|
|
Set()
|
|
}
|
|
|
|
func setFavorite(_ fingerprint: String, isFavorite: Bool) {}
|
|
|
|
func isFavorite(fingerprint: String) -> Bool {
|
|
false
|
|
}
|
|
|
|
func isBlocked(fingerprint: String) -> Bool {
|
|
blockedFingerprints.contains(fingerprint) || socialIdentities[fingerprint]?.isBlocked == true
|
|
}
|
|
|
|
func setBlocked(_ fingerprint: String, isBlocked: Bool) {
|
|
if var identity = socialIdentities[fingerprint] {
|
|
identity.isBlocked = isBlocked
|
|
socialIdentities[fingerprint] = identity
|
|
} else {
|
|
let identity = SocialIdentity(
|
|
fingerprint: fingerprint,
|
|
localPetname: nil,
|
|
claimedNickname: "",
|
|
trustLevel: .unknown,
|
|
isFavorite: false,
|
|
isBlocked: isBlocked,
|
|
notes: nil
|
|
)
|
|
socialIdentities[fingerprint] = identity
|
|
}
|
|
if isBlocked {
|
|
blockedFingerprints.insert(fingerprint)
|
|
} else {
|
|
blockedFingerprints.remove(fingerprint)
|
|
}
|
|
}
|
|
|
|
func isNostrBlocked(pubkeyHexLowercased: String) -> Bool {
|
|
blockedNostrPubkeys.contains(pubkeyHexLowercased)
|
|
}
|
|
|
|
func setNostrBlocked(_ pubkeyHexLowercased: String, isBlocked: Bool) {
|
|
if isBlocked {
|
|
blockedNostrPubkeys.insert(pubkeyHexLowercased)
|
|
} else {
|
|
blockedNostrPubkeys.remove(pubkeyHexLowercased)
|
|
}
|
|
}
|
|
|
|
func getBlockedNostrPubkeys() -> Set<String> {
|
|
blockedNostrPubkeys
|
|
}
|
|
|
|
func registerEphemeralSession(peerID: PeerID, handshakeState: HandshakeState) {}
|
|
|
|
func updateHandshakeState(peerID: PeerID, state: HandshakeState) {}
|
|
|
|
func clearAllIdentityData() {}
|
|
|
|
func removeEphemeralSession(peerID: PeerID) {}
|
|
|
|
func setVerified(fingerprint: String, verified: Bool) {}
|
|
|
|
func isVerified(fingerprint: String) -> Bool {
|
|
true
|
|
}
|
|
|
|
func getVerifiedFingerprints() -> Set<String> {
|
|
Set()
|
|
}
|
|
}
|