3

クイック/軽快な通知サポートを見ていました。たとえば、次のようになります。

expect {
    NotificationCenter.default.postNotification(testNotification)
}.to(postNotifications(equal([testNotification]))

userInfo を検査するために返される通知を取得する方法はありますか? 私の目標は、通知を送信するメソッドを呼び出し、その通知 userInfo を調べて、キーと値のペアが正しいことを確認することです。

クイック: 2.1.0
軽快: 8.0.1

4

1 に答える 1

1

私はこれをやってしまった:

func equalName(_ expectedName: Notification.Name, condition: @escaping (([AnyHashable: Any]) -> Bool)) -> Predicate<[Notification]> {
    return Predicate.define("equal <\(stringify(expectedName))>") { actualExpression, msg in
        guard let actualValue = try actualExpression.evaluate() else {
            return PredicateResult(status: .fail, message: msg)
        }

        let actualNames = actualValue
            .filter { $0.name == expectedName }
            .filter { notification in
                guard let userInfo = notification.userInfo else {
                    return false
                }

                return condition(userInfo)
            }
            .compactMap { $0.name }
        let matches = actualNames.contains(expectedName)
        return PredicateResult(bool: matches, message: msg)
    }
}

そして、呼び出しサイトで条件を提供できます..

于 2019-07-23T03:53:54.723 に答える