gpt4 book ai didi

ios - 使用嵌套数据更新 CoreData 对象时 RestKit 验证失败(Cocoa 错误 1550)

转载 作者:行者123 更新时间:2023-12-03 17:21:26 27 4
gpt4 key购买 nike

我正在编写一个单元测试来检查我的 CoreData 对象是否正确更新。问题是,当我尝试使用具有地址的数据更新没有地址的项目时,出现验证错误。当项目已经有地址时,一切都按预期进行,我已经标记了添加地址并通过测试的代码

我的模型结构如下:

[Project]
-localId [int]
-serverId [int]
-name [string]
-address [Address]

[Address]
-lineOne [string]
-lineTwo [string]
-city [string]
-state [string]
-country [string]
-zip [string]
-project [Project]

项目和地址在 CoreData 中具有一对一的关系,并且所有属性和关系都标记为可选。我在 RestKit 中使用 serverId 和 lineOne 作为标识。

这是有问题的单元测试:

// Create an object to match our criteria
Project *project = [NSEntityDescription insertNewObjectForEntityForName:@"Project" inManagedObjectContext:[RKManagedObjectStore defaultStore].persistentStoreManagedObjectContext];
[project setValue:@(1) forKey:@"serverId"];

//----IF I ADD THESE TWO LINES THE TEST PASSES----
//Address *address = [NSEntityDescription insertNewObjectForEntityForName:@"Address" inManagedObjectContext:[RKManagedObjectStore defaultStore].persistentStoreManagedObjectContext];
//[project setValue:address forKey:@"address"];



NSDictionary* fakeJson = @{@"id" : @1, @"name" : @"TEST", @"address" : @{@"line_1":@"123 Apple Street",@"line_2":@"Apartment 4",@"city":@"New York",@"country":@"USA",@"state":@"New York",@"zip":@"12345"}};

RKMappingTest* idTest = [RKMappingTest testForMapping:[Project showResponseMapping] sourceObject:fakeJson destinationObject:nil];
[idTest setManagedObjectContext:[RKManagedObjectStore defaultStore].persistentStoreManagedObjectContext];
[idTest performMapping];

//Assert that the destinationObject for the mapping is the existing one
XCTAssertEqualObjects(project, idTest.destinationObject, @"Expected to match the project, but did not");

这是抛出的错误:

2014-09-03 16:14:28.599 TestProject[3692:607] E restkit.object_mapping:RKMappingOperation.m:342 Validation failed while mapping attribute at key path 'address' to value <Address: 0x115b57a0> (entity: Address; id: 0x115b1e20 <x-coredata:///Address/t5016F936-C646-4CD0-84EC-366D2A8C7F056> ; data: {
city = "New York";
country = USA;
lineOne = "123 Apple Street";
lineTwo = "Apartment 4";
localId = nil;
project = nil;
state = "New York";
zip = 12345;
}). Error: The operation couldn’t be completed. (Cocoa error 1550.)
2014-09-03 16:14:28.600 Closeout[3692:607] E restkit:RKLog.m:151 Validation Error
NSLocalizedDescriptionKey: The operation couldn’t be completed. (Cocoa error 1550.)
NSValidationKeyErrorKey: address
NSValidationPredicateErrorKey: (null)
NSValidationObjectErrorKey:
<Project: 0x115a4e50> (entity: Project; id: 0x115aa980 <x-coredata:///Project/t5016F936-C646-4CD0-84EC-366D2A8C7F055> ; data: {
address = nil;
localId = nil;
name = TEST;
serverId = 1;
})

由于如果我向初始 CoreData 对象添加空白地址,测试就会通过,因此问题不在于映射或地址数据无效。我还可以从日志中看出新的 Address 对象已正确创建,只是无法通过关系链接它们。

感谢您的帮助。

最佳答案

经过两天的绞尽脑汁解决了这个问题。问题是当您在新项目上选中“使用 CoreData”框时,Xcode 生成的 AppDelegate 中的代码。它正在创建一个 CoreData 堆栈,然后我们为单元测试创​​建自己的堆栈,当 RestKit 拉取数据时,它会尝试连接来自不同上下文的对象(即使我们在执行的每个操作中都指定了一个上下文)。删除 AppDelegate 中所有 CoreData 生成的代码解决了该问题。

关于ios - 使用嵌套数据更新 CoreData 对象时 RestKit 验证失败(Cocoa 错误 1550),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25653081/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com