33 lines
692 B
Swift
33 lines
692 B
Swift
|
import SecretKit
|
||
|
import SecretAgentKit
|
||
|
|
||
|
struct StubWitness {
|
||
|
|
||
|
let speakNow: (AnySecret, SigningRequestProvenance) -> Bool
|
||
|
let witness: (AnySecret, SigningRequestProvenance) -> ()
|
||
|
|
||
|
}
|
||
|
|
||
|
extension StubWitness: SigningWitness {
|
||
|
|
||
|
func speakNowOrForeverHoldYourPeace(forAccessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws {
|
||
|
let objection = speakNow(secret, provenance)
|
||
|
if objection {
|
||
|
throw TheresMyChance()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
func witness(accessTo secret: AnySecret, by provenance: SigningRequestProvenance) throws {
|
||
|
witness(secret, provenance)
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
extension StubWitness {
|
||
|
|
||
|
struct TheresMyChance: Error {
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|