mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
70 lines
2.5 KiB
Objective-C
70 lines
2.5 KiB
Objective-C
//
|
|
// RKMappingTestExpectation.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 2/17/12.
|
|
// Copyright (c) 2009-2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKMappingTestExpectation.h"
|
|
|
|
@interface RKMappingTestExpectation ()
|
|
@property (nonatomic, copy, readwrite) NSString *sourceKeyPath;
|
|
@property (nonatomic, copy, readwrite) NSString *destinationKeyPath;
|
|
@property (nonatomic, strong, readwrite) id value;
|
|
@property (nonatomic, copy, readwrite) BOOL (^evaluationBlock)(RKObjectAttributeMapping *mapping, id value);
|
|
@end
|
|
|
|
|
|
@implementation RKMappingTestExpectation
|
|
|
|
@synthesize sourceKeyPath;
|
|
@synthesize destinationKeyPath;
|
|
@synthesize value;
|
|
@synthesize evaluationBlock;
|
|
|
|
+ (RKMappingTestExpectation *)expectationWithSourceKeyPath:(NSString *)sourceKeyPath destinationKeyPath:(NSString *)destinationKeyPath {
|
|
RKMappingTestExpectation *expectation = [self new];
|
|
expectation.sourceKeyPath = sourceKeyPath;
|
|
expectation.destinationKeyPath = destinationKeyPath;
|
|
|
|
return expectation;
|
|
}
|
|
|
|
+ (RKMappingTestExpectation *)expectationWithSourceKeyPath:(NSString *)sourceKeyPath destinationKeyPath:(NSString *)destinationKeyPath value:(id)value {
|
|
RKMappingTestExpectation *expectation = [self new];
|
|
expectation.sourceKeyPath = sourceKeyPath;
|
|
expectation.destinationKeyPath = destinationKeyPath;
|
|
expectation.value = value;
|
|
|
|
return expectation;
|
|
}
|
|
|
|
+ (RKMappingTestExpectation *)expectationWithSourceKeyPath:(NSString *)sourceKeyPath destinationKeyPath:(NSString *)destinationKeyPath evaluationBlock:(BOOL (^)(RKObjectAttributeMapping *mapping, id value))testBlock {
|
|
RKMappingTestExpectation *expectation = [self new];
|
|
expectation.sourceKeyPath = sourceKeyPath;
|
|
expectation.destinationKeyPath = destinationKeyPath;
|
|
expectation.evaluationBlock = testBlock;
|
|
|
|
return expectation;
|
|
}
|
|
|
|
- (NSString *)mappingDescription {
|
|
return [NSString stringWithFormat:@"expected sourceKeyPath '%@' to map to destinationKeyPath '%@'",
|
|
self.sourceKeyPath, self.destinationKeyPath];
|
|
}
|
|
|
|
- (NSString *)description {
|
|
if (self.value) {
|
|
return [NSString stringWithFormat:@"expected sourceKeyPath '%@' to map to destinationKeyPath '%@' with %@ value '%@'",
|
|
self.sourceKeyPath, self.destinationKeyPath, [self.value class], self.value];
|
|
} else if (self.evaluationBlock) {
|
|
return [NSString stringWithFormat:@"expected sourceKeyPath '%@' to map to destinationKeyPath '%@' satisfying evaluation block",
|
|
self.sourceKeyPath, self.destinationKeyPath];
|
|
}
|
|
|
|
return [self mappingDescription];
|
|
}
|
|
|
|
@end
|