forked from ibireme/YYModel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYYTestModelMapper.m
293 lines (225 loc) · 12 KB
/
YYTestModelMapper.m
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
//
// YYTestModelMapper.m
// YYModel <https://github.com/ibireme/YYModel>
//
// Created by ibireme on 15/11/27.
// Copyright (c) 2015 ibireme.
//
// This source code is licensed under the MIT-style license found in the
// LICENSE file in the root directory of this source tree.
//
#import <XCTest/XCTest.h>
#import "YYModel.h"
@interface YYTestPropertyMapperModelAuto : NSObject
@property (nonatomic, assign) NSString *name;
@property (nonatomic, assign) NSNumber *count;
@end
@implementation YYTestPropertyMapperModelAuto
@end
@interface YYTestPropertyMapperModelCustom : NSObject
@property (nonatomic, assign) NSString *name;
@property (nonatomic, assign) NSNumber *count;
@property (nonatomic, assign) NSString *desc1;
@property (nonatomic, assign) NSString *desc2;
@property (nonatomic, assign) NSString *desc3;
@property (nonatomic, assign) NSString *desc4;
@property (nonatomic, assign) NSString *modelID;
@end
@implementation YYTestPropertyMapperModelCustom
+ (NSDictionary *)modelCustomPropertyMapper {
return @{ @"name" : @"n",
@"count" : @"ext.c",
@"desc1" : @"ext.d", // mapped to same key path
@"desc2" : @"ext.d", // mapped to same key path
@"desc3" : @"ext.d.e",
@"desc4" : @".ext",
@"modelID" : @[@"ID", @"Id", @"id", @"ext.id"]};
}
@end
@interface YYTestPropertyMapperModelWarn : NSObject {
NSString *_description;
}
@property (nonatomic, strong) NSString *description;
@property (nonatomic, strong) NSNumber *id;
@end
@implementation YYTestPropertyMapperModelWarn
@synthesize description = _description;
@end
@protocol YYTestPropertyMapperModelAuto <NSObject>
@end
@protocol YYTestPropertyMapperModelCustom <NSObject>
@end
@protocol YYSimpleProtocol <NSObject>
@end
@interface YYTestPropertyMapperModelContainer : NSObject
@property (nonatomic, strong) NSArray *array;
@property (nonatomic, strong) NSMutableArray *mArray;
@property (nonatomic, strong) NSDictionary *dict;
@property (nonatomic, strong) NSMutableDictionary *mDict;
@property (nonatomic, strong) NSSet *set;
@property (nonatomic, strong) NSMutableSet *mSet;
@property (nonatomic, strong) NSArray<YYTestPropertyMapperModelAuto> *pArray1;
@property (nonatomic, strong) NSArray<YYSimpleProtocol,YYTestPropertyMapperModelAuto> *pArray2;
@property (nonatomic, strong) NSArray<YYSimpleProtocol,YYTestPropertyMapperModelCustom> *pArray3;
@end
@implementation YYTestPropertyMapperModelContainer
@end
@interface YYTestPropertyMapperModelContainerGeneric : YYTestPropertyMapperModelContainer
@end
@implementation YYTestPropertyMapperModelContainerGeneric
+ (NSDictionary *)modelCustomPropertyMapper {
return @{ @"mArray" : @"array",
@"mDict" : @"dict",
@"mSet" : @"set",
@"pArray1" : @"array",
@"pArray2" : @"array",
@"pArray3" : @"array"};
}
+ (NSDictionary *)modelContainerPropertyGenericClass {
return @{@"array" : YYTestPropertyMapperModelAuto.class,
@"mArray" : YYTestPropertyMapperModelAuto.class,
@"dict" : YYTestPropertyMapperModelAuto.class,
@"mDict" : YYTestPropertyMapperModelAuto.class,
@"set" : @"YYTestPropertyMapperModelAuto",
@"mSet" : @"YYTestPropertyMapperModelAuto",
@"pArray3" : @"YYTestPropertyMapperModelAuto"};
}
@end
@interface YYTestModelPropertyMapper : XCTestCase
@end
@implementation YYTestModelPropertyMapper
- (void)testAuto {
NSString *json;
YYTestPropertyMapperModelAuto *model;
json = @"{\"name\":\"Apple\",\"count\":12}";
model = [YYTestPropertyMapperModelAuto yy_modelWithJSON:json];
XCTAssertTrue([model.name isEqualToString:@"Apple"]);
XCTAssertTrue([model.count isEqual:@12]);
json = @"{\"n\":\"Apple\",\"count\":12, \"description\":\"hehe\"}";
model = [YYTestPropertyMapperModelAuto yy_modelWithJSON:json];
XCTAssertTrue(model.name == nil);
XCTAssertTrue([model.count isEqual:@12]);
}
- (void)testCustom {
NSString *json;
NSDictionary *jsonObject;
YYTestPropertyMapperModelCustom *model;
json = @"{\"n\":\"Apple\",\"ext\":{\"c\":12}}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.name isEqualToString:@"Apple"]);
XCTAssertTrue([model.count isEqual:@12]);
json = @"{\"n\":\"Apple\",\"count\":12}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue(model.count == nil);
json = @"{\"n\":\"Apple\",\"ext\":12}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue(model.count == nil);
json = @"{\"n\":\"Apple\",\"ext\":@{}}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue(model.count == nil);
json = @"{\"ext\":{\"d\":\"Apple\"}}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.desc1 isEqualToString:@"Apple"]);
XCTAssertTrue([model.desc2 isEqualToString:@"Apple"]);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue([((NSDictionary *)jsonObject[@"ext"])[@"d"] isEqualToString:@"Apple"]);
json = @"{\"ext\":{\"d\":{ \"e\" : \"Apple\"}}}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.desc3 isEqualToString:@"Apple"]);
json = @"{\".ext\":\"Apple\"}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.desc4 isEqualToString:@"Apple"]);
json = @"{\".ext\":\"Apple\", \"name\":\"Apple\", \"count\":\"10\", \"desc1\":\"Apple\", \"desc2\":\"Apple\", \"desc3\":\"Apple\", \"desc4\":\"Apple\", \"modelID\":\"Apple\"}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.desc4 isEqualToString:@"Apple"]);
json = @"{\"id\":\"abcd\"}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.modelID isEqualToString:@"abcd"]);
json = @"{\"ext\":{\"id\":\"abcd\"}}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.modelID isEqualToString:@"abcd"]);
json = @"{\"id\":\"abcd\",\"ID\":\"ABCD\",\"Id\":\"Abcd\"}";
model = [YYTestPropertyMapperModelCustom yy_modelWithJSON:json];
XCTAssertTrue([model.modelID isEqualToString:@"ABCD"]);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue(jsonObject[@"id"] == nil);
XCTAssertTrue([jsonObject[@"ID"] isEqualToString:@"ABCD"]);
}
- (void)testWarn {
NSString *json = @"{\"description\":\"Apple\",\"id\":12345}";
YYTestPropertyMapperModelWarn *model = [YYTestPropertyMapperModelWarn yy_modelWithJSON:json];
XCTAssertTrue([model.description isEqualToString:@"Apple"]);
XCTAssertTrue([model.id isEqual:@12345]);
}
- (void)testContainer {
NSString *json;
NSDictionary *jsonObject = nil;
YYTestPropertyMapperModelContainer *model;
json = @"{\"array\":[\n {\"name\":\"Apple\", \"count\":10},\n {\"name\":\"Banana\", \"count\":11},\n {\"name\":\"Pear\", \"count\":12},\n null\n]}";
model = [YYTestPropertyMapperModelContainer yy_modelWithJSON:json];
XCTAssertTrue([model.array isKindOfClass:[NSArray class]]);
XCTAssertTrue(model.array.count == 4);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue([jsonObject[@"array"] isKindOfClass:[NSArray class]]);
model = [YYTestPropertyMapperModelContainerGeneric yy_modelWithJSON:json];
XCTAssertTrue([model.array isKindOfClass:[NSArray class]]);
XCTAssertTrue(model.array.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.array[0]).name isEqualToString:@"Apple"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.array[0]).count isEqual:@10]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.array[2]).name isEqualToString:@"Pear"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.array[2]).count isEqual:@12]);
XCTAssertTrue([model.mArray isKindOfClass:[NSMutableArray class]]);
XCTAssertTrue(model.pArray1.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray1[0]).name isEqualToString:@"Apple"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray1[0]).count isEqual:@10]);
XCTAssertTrue(model.pArray2.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray2[0]).name isEqualToString:@"Apple"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray2[0]).count isEqual:@10]);
XCTAssertTrue(model.pArray3.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray3[0]).name isEqualToString:@"Apple"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.pArray3[0]).count isEqual:@10]);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue([jsonObject[@"array"] isKindOfClass:[NSArray class]]);
json = @"{\"dict\":{\n \"A\":{\"name\":\"Apple\", \"count\":10},\n \"B\":{\"name\":\"Banana\", \"count\":11},\n \"P\":{\"name\":\"Pear\", \"count\":12},\n \"N\":null\n}}";
model = [YYTestPropertyMapperModelContainer yy_modelWithJSON:json];
XCTAssertTrue([model.dict isKindOfClass:[NSDictionary class]]);
XCTAssertTrue(model.dict.count == 4);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue(jsonObject != nil);
model = [YYTestPropertyMapperModelContainerGeneric yy_modelWithJSON:json];
XCTAssertTrue([model.dict isKindOfClass:[NSDictionary class]]);
XCTAssertTrue(model.dict.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.dict[@"A"]).name isEqualToString:@"Apple"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.dict[@"A"]).count isEqual:@10]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.dict[@"P"]).name isEqualToString:@"Pear"]);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.dict[@"P"]).count isEqual:@12]);
XCTAssertTrue([model.mDict isKindOfClass:[NSMutableDictionary class]]);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue(jsonObject != nil);
json = @"{\"set\":[\n {\"name\":\"Apple\", \"count\":10},\n {\"name\":\"Banana\", \"count\":11},\n {\"name\":\"Pear\", \"count\":12},\n null\n]}";
model = [YYTestPropertyMapperModelContainer yy_modelWithJSON:json];
XCTAssertTrue([model.set isKindOfClass:[NSSet class]]);
XCTAssertTrue(model.set.count == 4);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue(jsonObject != nil);
model = [YYTestPropertyMapperModelContainerGeneric yy_modelWithJSON:json];
XCTAssertTrue([model.set isKindOfClass:[NSSet class]]);
XCTAssertTrue(model.set.count == 3);
XCTAssertTrue([((YYTestPropertyMapperModelAuto *)model.set.anyObject).name isKindOfClass:[NSString class]]);
XCTAssertTrue([model.mSet isKindOfClass:[NSMutableSet class]]);
jsonObject = [model yy_modelToJSONObject];
XCTAssertTrue(jsonObject != nil);
model = [YYTestPropertyMapperModelContainerGeneric yy_modelWithJSON:@{@"set" : @[[YYTestPropertyMapperModelAuto new]]}];
XCTAssertTrue([model.set isKindOfClass:[NSSet class]]);
XCTAssertTrue([[model.set anyObject] isKindOfClass:[YYTestPropertyMapperModelAuto class]]);
model = [YYTestPropertyMapperModelContainerGeneric yy_modelWithJSON:@{@"array" : [NSSet setWithArray:@[[YYTestPropertyMapperModelAuto new]]]}];
XCTAssertTrue([model.array isKindOfClass:[NSArray class]]);
XCTAssertTrue([[model.array firstObject] isKindOfClass:[YYTestPropertyMapperModelAuto class]]);
model = [YYTestPropertyMapperModelContainer yy_modelWithJSON:@{@"mArray" : @[[YYTestPropertyMapperModelAuto new]]}];
XCTAssertTrue([model.mArray isKindOfClass:[NSMutableArray class]]);
XCTAssertTrue([[model.mArray firstObject] isKindOfClass:[YYTestPropertyMapperModelAuto class]]);
model = [YYTestPropertyMapperModelContainer yy_modelWithJSON:@{@"mArray" : [NSSet setWithArray:@[[YYTestPropertyMapperModelAuto new]]]}];
XCTAssertTrue([model.mArray isKindOfClass:[NSMutableArray class]]);
XCTAssertTrue([[model.mArray firstObject] isKindOfClass:[YYTestPropertyMapperModelAuto class]]);
}
@end