1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2022-2023 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#if canImport(TestSupport)
import TestSupport
#endif
#if FOUNDATION_FRAMEWORK
fileprivate protocol PredicateCodingConfigurationProviding : EncodingConfigurationProviding, DecodingConfigurationProviding where EncodingConfiguration == PredicateCodableConfiguration, DecodingConfiguration == PredicateCodableConfiguration {
static var config: PredicateCodableConfiguration { get }
}
extension PredicateCodingConfigurationProviding {
static var encodingConfiguration: PredicateCodableConfiguration {
Self.config
}
static var decodingConfiguration: PredicateCodableConfiguration {
Self.config
}
}
extension DecodingError {
fileprivate var debugDescription: String? {
switch self {
case .typeMismatch(_, let context):
return context.debugDescription
case .valueNotFound(_, let context):
return context.debugDescription
case .keyNotFound(_, let context):
return context.debugDescription
case .dataCorrupted(let context):
return context.debugDescription
default:
return nil
}
}
}
extension PredicateExpressions {
fileprivate struct TestNonStandardExpression : PredicateExpression, Decodable {
typealias Output = Bool
func evaluate(_ bindings: PredicateBindings) throws -> Bool {
true
}
}
}
@available(macOS 14, iOS 17, tvOS 17, watchOS 10, *)
final class PredicateCodableTests: XCTestCase {
struct Object : Equatable, PredicateCodableKeyPathProviding {
var a: Int
var b: String
var c: Double
var d: Int
var e: Character
var f: Bool
var g: [Int]
var h: Object2
static var predicateCodableKeyPaths: [String : PartialKeyPath<PredicateCodableTests.Object> & Sendable] {
[
"Object.f" : \.f,
"Object.g" : \.g,
"Object.h" : \.h
]
}
static let example = Object(a: 1, b: "Hello", c: 2.3, d: 4, e: "J", f: true, g: [9, 1, 4], h: Object2(a: 1, b: "Foo"))
}
struct Object2 : Equatable, PredicateCodableKeyPathProviding {
var a: Int
var b: String
static var predicateCodableKeyPaths: [String : PartialKeyPath<PredicateCodableTests.Object2> & Sendable] {
["Object2.a" : \.a]
}
}
struct MinimalConfig : PredicateCodingConfigurationProviding {
static let config = PredicateCodableConfiguration.standardConfiguration
}
struct StandardConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
config.allowType(Object.self, identifier: "Foundation.PredicateCodableTests.Object")
config.allowKeyPath(\Object.a, identifier: "Object.a")
config.allowKeyPath(\Object.b, identifier: "Object.b")
config.allowKeyPath(\Object.c, identifier: "Object.c")
return config
}()
}
struct ProvidedKeyPathConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
config.allowType(Object.self, identifier: "Foundation.PredicateCodableTests.Object")
config.allowKeyPathsForPropertiesProvided(by: Object.self)
return config
}()
}
struct RecursiveProvidedKeyPathConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
config.allowType(Object.self, identifier: "Foundation.PredicateCodableTests.Object")
config.allowKeyPathsForPropertiesProvided(by: Object.self, recursive: true)
return config
}()
}
struct EmptyConfig : PredicateCodingConfigurationProviding {
static let config = PredicateCodableConfiguration()
}
struct UUIDConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
config.allowType(UUID.self, identifier: "Foundation.UUID")
return config
}()
}
struct MismatchedKeyPathConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
// Intentionally provide a keypath that doesn't match the signature of the identifier/
config.allowKeyPath(\Object.b, identifier: "Object.a")
return config
}()
}
struct TestExpressionConfig : PredicateCodingConfigurationProviding {
static let config = {
var config = PredicateCodableConfiguration.standardConfiguration
config.allowPartialType(PredicateExpressions.TestNonStandardExpression.self, identifier: "PredicateExpressions.TestNonStandardExpression")
return config
}()
}
@discardableResult
private func _encodeDecode<
EncodingConfigurationProvider: PredicateCodingConfigurationProviding,
DecodingConfigurationProvider: PredicateCodingConfigurationProviding,
T: CodableWithConfiguration
>(
_ value: T,
encoding encodingConfig: EncodingConfigurationProvider.Type,
decoding decodingConfig: DecodingConfigurationProvider.Type
) throws -> T where
T.EncodingConfiguration == EncodingConfigurationProvider.EncodingConfiguration,
T.DecodingConfiguration == DecodingConfigurationProvider.DecodingConfiguration
{
let encoder = JSONEncoder()
let data = try encoder.encode(CodableConfiguration(wrappedValue: value, from: encodingConfig))
let decoder = JSONDecoder()
return try decoder.decode(CodableConfiguration<T, DecodingConfigurationProvider>.self, from: data).wrappedValue
}
@discardableResult
private func _encodeDecode<
ConfigurationProvider: PredicateCodingConfigurationProviding,
T: CodableWithConfiguration
>(
_ value: T,
for configuration: ConfigurationProvider.Type
) throws -> T where
T.EncodingConfiguration == ConfigurationProvider.EncodingConfiguration,
T.DecodingConfiguration == ConfigurationProvider.DecodingConfiguration
{
try _encodeDecode(value, encoding: configuration, decoding: configuration)
}
@discardableResult
private func _encodeDecode<T: Codable>(_ value: T) throws -> T {
let encoder = JSONEncoder()
let data = try encoder.encode(value)
let decoder = JSONDecoder()
return try decoder.decode(T.self, from: data)
}
func testBasicEncodeDecode() throws {
let predicate = #Predicate<Object> {
$0.a == 2
}
let decoded = try _encodeDecode(predicate, for: StandardConfig.self)
var object = Object.example
XCTAssertEqual(try predicate.evaluate(object), try decoded.evaluate(object))
object.a = 2
XCTAssertEqual(try predicate.evaluate(object), try decoded.evaluate(object))
object.a = 3
XCTAssertEqual(try predicate.evaluate(object), try decoded.evaluate(object))
XCTAssertThrowsError(try _encodeDecode(predicate, for: EmptyConfig.self))
XCTAssertThrowsError(try _encodeDecode(predicate))
}
func testDisallowedKeyPath() throws {
var predicate = #Predicate<Object> {
$0.f
}
XCTAssertThrowsError(try _encodeDecode(predicate))
XCTAssertThrowsError(try _encodeDecode(predicate, for: StandardConfig.self))
predicate = #Predicate<Object> {
$0.a == 1
}
XCTAssertThrowsError(try _encodeDecode(predicate, encoding: StandardConfig.self, decoding: MinimalConfig.self)) {
guard let decodingError = $0 as? DecodingError else {
XCTFail("Incorrect error thrown: \($0)")
return
}
XCTAssertEqual(decodingError.debugDescription, "A keypath for the 'Object.a' identifier is not in the provided allowlist")
}
}
func testKeyPathTypeMismatch() throws {
let predicate = #Predicate<Object> {
$0.a == 2
}
try _encodeDecode(predicate, for: StandardConfig.self)
XCTAssertThrowsError(try _encodeDecode(predicate, encoding: StandardConfig.self, decoding: MismatchedKeyPathConfig.self)) {
guard let decodingError = $0 as? DecodingError else {
XCTFail("Incorrect error thrown: \($0)")
return
}
XCTAssertEqual(decodingError.debugDescription, "Key path '\\Object.b' (KeyPath<\(_typeName(Object.self)), Swift.String>) for identifier 'Object.a' did not match the expression's requirement for KeyPath<\(_typeName(Object.self)), Swift.Int>")
}
}
func testDisallowedType() throws {
let uuid = UUID()
let predicate = #Predicate<Object> { obj in
uuid == uuid
}
XCTAssertThrowsError(try _encodeDecode(predicate))
XCTAssertThrowsError(try _encodeDecode(predicate, for: StandardConfig.self))
XCTAssertThrowsError(try _encodeDecode(predicate, encoding: UUIDConfig.self, decoding: MinimalConfig.self)) {
XCTAssertEqual(String(describing: $0), "The 'Foundation.UUID' identifier is not in the provided allowlist (required by /PredicateExpressions.Equal/PredicateExpressions.Value)")
}
let decoded = try _encodeDecode(predicate, for: UUIDConfig.self)
XCTAssertEqual(try decoded.evaluate(.example), try predicate.evaluate(.example))
}
func testProvidedProperties() throws {
var predicate = #Predicate<Object> {
$0.a == 2
}
XCTAssertThrowsError(try _encodeDecode(predicate, for: ProvidedKeyPathConfig.self))
XCTAssertThrowsError(try _encodeDecode(predicate, for: RecursiveProvidedKeyPathConfig.self))
predicate = #Predicate<Object> {
$0.f == false
}
var decoded = try _encodeDecode(predicate, for: ProvidedKeyPathConfig.self)
XCTAssertEqual(try decoded.evaluate(.example), try predicate.evaluate(.example))
decoded = try _encodeDecode(predicate, for: RecursiveProvidedKeyPathConfig.self)
XCTAssertEqual(try decoded.evaluate(.example), try predicate.evaluate(.example))
predicate = #Predicate<Object> {
$0.h.a == 1
}
XCTAssertThrowsError(try _encodeDecode(predicate, for: ProvidedKeyPathConfig.self))
decoded = try _encodeDecode(predicate, for: RecursiveProvidedKeyPathConfig.self)
XCTAssertEqual(try decoded.evaluate(.example), try predicate.evaluate(.example))
}
func testDefaultAllowlist() throws {
var predicate = #Predicate<String> {
$0.isEmpty
}
var decoded = try _encodeDecode(predicate)
XCTAssertEqual(try decoded.evaluate("Hello world"), try predicate.evaluate("Hello world"))
predicate = #Predicate<String> {
$0.count > 2
}
decoded = try _encodeDecode(predicate)
XCTAssertEqual(try decoded.evaluate("Hello world"), try predicate.evaluate("Hello world"))
predicate = #Predicate<String> {
$0.contains(/[a-z]/)
}
decoded = try _encodeDecode(predicate)
XCTAssertEqual(try decoded.evaluate("Hello world"), try predicate.evaluate("Hello world"))
let predicate2 = #Predicate<Object> {
$0 == $0
}
let decoded2 = try _encodeDecode(predicate2)
XCTAssertEqual(try decoded2.evaluate(.example), try predicate2.evaluate(.example))
var predicate3 = #Predicate<Array<String>> {
$0.isEmpty
}
var decoded3 = try _encodeDecode(predicate3)
XCTAssertEqual(try decoded3.evaluate(["A", "B", "C"]), try predicate3.evaluate(["A", "B", "C"]))
predicate3 = #Predicate<Array<String>> {
$0.count == 2
}
decoded3 = try _encodeDecode(predicate3)
XCTAssertEqual(try decoded3.evaluate(["A", "B", "C"]), try predicate3.evaluate(["A", "B", "C"]))
var predicate4 = #Predicate<Dictionary<String, Int>> {
$0.isEmpty
}
var decoded4 = try _encodeDecode(predicate4)
XCTAssertEqual(try decoded4.evaluate(["A": 1, "B": 2, "C": 3]), try predicate4.evaluate(["A": 1, "B": 2, "C": 3]))
predicate4 = #Predicate<Dictionary<String, Int>> {
$0.count == 2
}
decoded4 = try _encodeDecode(predicate4)
XCTAssertEqual(try decoded4.evaluate(["A": 1, "B": 2, "C": 3]), try predicate4.evaluate(["A": 1, "B": 2, "C": 3]))
let predicate5 = #Predicate<Int> {
(0 ..< 4).contains($0)
}
let decoded5 = try _encodeDecode(predicate5)
XCTAssertEqual(try decoded5.evaluate(2), try predicate5.evaluate(2))
}
func testMalformedData() {
func _malformedDecode<T: PredicateCodingConfigurationProviding>(_ json: String, config: T.Type = StandardConfig.self, reason: String, file: StaticString = #filePath, line: UInt = #line) {
let data = Data(json.utf8)
let decoder = JSONDecoder()
XCTAssertThrowsError(try decoder.decode(CodableConfiguration<Predicate<Object>, T>.self, from: data), file: file, line: line) {
XCTAssertTrue(String(describing: $0).contains(reason), "Error '\($0)' did not contain reason '\(reason)'", file: file, line: line)
}
}
// expression is not a PredicateExpression
_malformedDecode(
"""
[
{
"variable" : [{
"key" : 0
}],
"expression" : 0,
"structure" : "Swift.Int"
}
]
""",
reason: "This type of this expression is unsupported"
)
// conjunction is missing generic arguments
_malformedDecode(
"""
[
{
"variable" : [{
"key" : 0
}],
"expression" : 0,
"structure" : "PredicateExpressions.Conjunction"
}
]
""",
reason: "Reconstruction of 'Conjunction' with the arguments [] failed"
)
// conjunction's generic arguments don't match constraint requirements
_malformedDecode(
"""
[
{
"variable" : [{
"key" : 0
}],
"expression" : 0,
"structure" : {
"identifier": "PredicateExpressions.Conjunction",
"args": [
"Swift.Int",
"Swift.Int"
]
}
}
]
""",
reason: "Reconstruction of 'Conjunction' with the arguments [Swift.Int, Swift.Int] failed"
)
// expression is not a StandardPredicateExpression
_malformedDecode(
"""
[
{
"variable" : [{
"key" : 0
}],
"expression" : 0,
"structure" : "PredicateExpressions.TestNonStandardExpression"
}
]
""",
config: TestExpressionConfig.self,
reason: "This expression is unsupported by this predicate"
)
}
func testBasicVariadic() throws {
let predicate = #Predicate<Object, Object> {
$0.a == 2 && $1.a == 3
}
let decoded = try _encodeDecode(predicate, for: StandardConfig.self)
var object = Object.example
let object2 = Object.example
XCTAssertEqual(try predicate.evaluate(object, object2), try decoded.evaluate(object, object2))
object.a = 2
XCTAssertEqual(try predicate.evaluate(object, object2), try decoded.evaluate(object, object2))
object.a = 3
XCTAssertEqual(try predicate.evaluate(object, object2), try decoded.evaluate(object, object2))
XCTAssertThrowsError(try _encodeDecode(predicate, for: EmptyConfig.self))
XCTAssertThrowsError(try _encodeDecode(predicate))
}
func testCapturedVariadicTypes() throws {
struct A<each T> : Equatable, Codable {
init(_: repeat (each T).Type) {}
func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
try container.encodeNil()
}
init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
guard container.decodeNil() else {
throw DecodingError.dataCorrupted(.init(codingPath: container.codingPath, debugDescription: "Did not find encoded nil"))
}
}
}
let a = A(String.self, Int.self)
let predicate = #Predicate<Int> { _ in
a == a
}
struct CustomConfig : PredicateCodingConfigurationProviding {
static let config = {
var configuration = PredicateCodableConfiguration.standardConfiguration
configuration.allowPartialType(A< >.self, identifier: "PredicateCodableTests.A")
return configuration
}()
}
let decoded = try _encodeDecode(predicate, for: CustomConfig.self)
XCTAssertEqual(try decoded.evaluate(2), try predicate.evaluate(2))
}
func testNestedPredicates() throws {
let predicateA = #Predicate<Object> {
$0.a == 3
}
let predicateB = #Predicate<Object> {
predicateA.evaluate($0) && $0.a > 2
}
let decoded = try _encodeDecode(predicateB, for: StandardConfig.self)
let objects = [
Object(a: 3, b: "abc", c: 0.0, d: 0, e: "c", f: true, g: [1, 3], h: Object2(a: 1, b: "Foo")),
Object(a: 2, b: "abc", c: 0.0, d: 0, e: "c", f: true, g: [1, 3], h: Object2(a: 1, b: "Foo")),
Object(a: 3, b: "abc", c: 0.0, d: 0, e: "c", f: true, g: [1, 3], h: Object2(a: 1, b: "Foo")),
Object(a: 2, b: "abc", c: 0.0, d: 0, e: "c", f: true, g: [1, 3], h: Object2(a: 1, b: "Foo")),
Object(a: 4, b: "abc", c: 0.0, d: 0, e: "c", f: true, g: [1, 3], h: Object2(a: 1, b: "Foo"))
]
for object in objects {
XCTAssertEqual(try decoded.evaluate(object), try predicateB.evaluate(object), "Evaluation failed to produce equal results for \(object)")
}
}
func testNestedPredicateRestrictedConfiguration() throws {
struct RestrictedBox<each T> : Codable {
let predicate: Predicate<repeat each T>
func encode(to encoder: any Encoder) throws {
var container = encoder.unkeyedContainer()
// Restricted empty configuration
try container.encode(predicate, configuration: PredicateCodableConfiguration())
}
init(_ predicate: Predicate<repeat each T>) {
self.predicate = predicate
}
init(from decoder: any Decoder) throws {
var container = try decoder.unkeyedContainer()
self.predicate = try container.decode(Predicate<repeat each T>.self, configuration: PredicateCodableConfiguration())
}
}
let predicateA = #Predicate<Object> {
$0.a == 3
}
let box = RestrictedBox(predicateA)
let predicateB = #Predicate<Object> {
box.predicate.evaluate($0) && $0.a > 2
}
struct CustomConfig : PredicateCodingConfigurationProviding {
static let config = {
var configuration = PredicateCodableConfiguration.standardConfiguration
configuration.allowKeyPathsForPropertiesProvided(by: PredicateCodableTests.Object.self)
configuration.allowKeyPath(\RestrictedBox<Object>.predicate, identifier: "RestrictedBox.Predicate")
return configuration
}()
}
// Throws an error because the sub-predicate's configuration won't contain anything in the allowlist
XCTAssertThrowsError(try _encodeDecode(predicateB, for: CustomConfig.self))
}
func testExpression() throws {
let expression = #Expression<Object, Int> {
$0.a
}
let decoded = try _encodeDecode(expression, for: StandardConfig.self)
var object = Object.example
XCTAssertEqual(try expression.evaluate(object), try decoded.evaluate(object))
object.a = 2
XCTAssertEqual(try expression.evaluate(object), try decoded.evaluate(object))
object.a = 3
XCTAssertEqual(try expression.evaluate(object), try decoded.evaluate(object))
XCTAssertThrowsError(try _encodeDecode(expression, for: EmptyConfig.self))
XCTAssertThrowsError(try _encodeDecode(expression))
}
}
#endif // FOUNDATION_FRAMEWORK
|