forked from ibireme/YYModel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathYYTestAutoTypeConvert.m
456 lines (381 loc) · 17.1 KB
/
YYTestAutoTypeConvert.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
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
//
// YYTestAutoTypeConvert.m
// YYModel <https://github.com/ibireme/YYModel>
//
// Created by ibireme on 15/11/28.
// 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"
#import "YYTestHelper.h"
@interface YYTestAutoTypeModel : NSObject
@property bool boolValue;
@property BOOL BOOLValue;
@property char charValue;
@property unsigned char unsignedCharValue;
@property short shortValue;
@property unsigned short unsignedShortValue;
@property int intValue;
@property unsigned int unsignedIntValue;
@property long longValue;
@property unsigned long unsignedLongValue;
@property long long longLongValue;
@property unsigned long long unsignedLongLongValue;
@property float floatValue;
@property double doubleValue;
@property long double longDoubleValue;
@property (strong) Class classValue;
@property SEL selectorValue;
@property (copy) void (^blockValue)();
@property void *pointerValue;
@property CGRect structValue;
@property CGPoint pointValue;
@property (nonatomic, strong) id anyObject;
@property (nonatomic, strong) NSObject *object;
@property (nonatomic, strong) NSNumber *number;
@property (nonatomic, strong) NSDecimalNumber *decimal;
@property (nonatomic, strong) NSString *string;
@property (nonatomic, strong) NSMutableString *mString;
@property (nonatomic, strong) NSData *data;
@property (nonatomic, strong) NSMutableData *mData;
@property (nonatomic, strong) NSDate *date;
@property (nonatomic, strong) NSValue *value;
@property (nonatomic, strong) NSURL *url;
@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;
@end
@implementation YYTestAutoTypeModel
+ (NSDictionary *)modelCustomPropertyMapper {
return @{ @"boolValue" : @"v",
@"BOOLValue" : @"v",
@"charValue" : @"v",
@"unsignedCharValue" : @"v",
@"shortValue" : @"v",
@"unsignedShortValue" : @"v",
@"intValue" : @"v",
@"unsignedIntValue" : @"v",
@"longValue" : @"v",
@"unsignedLongValue" : @"v",
@"longLongValue" : @"v",
@"unsignedLongLongValue" : @"v",
@"floatValue" : @"v",
@"doubleValue" : @"v",
@"longDoubleValue" : @"v",
@"classValue" : @"v",
@"selectorValue" : @"v",
@"blockValue" : @"v",
@"pointerValue" : @"v",
@"structValue" : @"v",
@"pointValue" : @"v",
@"anyObject" : @"v",
@"object" : @"v",
@"number" : @"v",
@"decimal" : @"v",
@"string" : @"v",
@"mString" : @"v",
@"data" : @"v",
@"mData" : @"v",
@"date" : @"v",
@"value" : @"v",
@"url" : @"v",
@"array" : @"v",
@"mArray" : @"v",
@"dict" : @"v",
@"mDict" : @"v",
@"set" : @"v",
@"mSet" : @"v"
};
}
@end
@interface YYTestAutoTypeConvert : XCTestCase
@end
@implementation YYTestAutoTypeConvert
- (void)testNumber {
NSString *json;
YYTestAutoTypeModel *model;
json = @"{\"v\" : 1}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.BOOLValue);
XCTAssert(model.charValue == 1);
XCTAssert(model.unsignedCharValue == 1);
XCTAssert(model.shortValue == 1);
XCTAssert(model.unsignedShortValue == 1);
XCTAssert(model.intValue == 1);
XCTAssert(model.unsignedIntValue == 1);
XCTAssert(model.longValue == 1);
XCTAssert(model.unsignedLongValue == 1);
XCTAssert(model.longLongValue == 1);
XCTAssert(model.unsignedLongLongValue == 1);
XCTAssert(model.floatValue == 1);
XCTAssert(model.doubleValue == 1);
XCTAssert(model.longDoubleValue == 1);
XCTAssert([model.anyObject isEqual:@(1)]);
XCTAssert([model.object isEqual:@(1)]);
XCTAssert([model.number isEqual:@(1)]);
XCTAssert([model.decimal isEqual:@(1)]);
XCTAssert([model.string isEqualToString:@"1"]);
XCTAssert([model.mString isEqualToString:@"1"]);
XCTAssert([model.mString isKindOfClass:[NSMutableString class]]);
XCTAssert(model.classValue == nil);
XCTAssert(model.selectorValue == nil);
XCTAssert(model.blockValue == nil);
XCTAssert(model.pointerValue == nil);
json = @"{\"v\" : 1.5}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.BOOLValue);
XCTAssert(model.charValue == 1);
XCTAssert(model.unsignedCharValue == 1);
XCTAssert(model.shortValue == 1);
XCTAssert(model.unsignedShortValue == 1);
XCTAssert(model.intValue == 1);
XCTAssert(model.unsignedIntValue == 1);
XCTAssert(model.longValue == 1);
XCTAssert(model.unsignedLongValue == 1);
XCTAssert(model.longLongValue == 1);
XCTAssert(model.unsignedLongLongValue == 1);
XCTAssert(model.floatValue == 1.5);
XCTAssert(model.doubleValue == 1.5);
XCTAssert(model.longDoubleValue == 1.5);
XCTAssert([model.anyObject isEqual:@(1.5)]);
XCTAssert([model.object isEqual:@(1.5)]);
XCTAssert([model.number isEqual:@(1.5)]);
XCTAssert([model.decimal isEqual:@(1.5)]);
XCTAssert([model.string isEqualToString:@"1.5"]);
XCTAssert([model.mString isEqualToString:@"1.5"]);
XCTAssert([model.mString isKindOfClass:[NSMutableString class]]);
json = @"{\"v\" : -1}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.BOOLValue);
XCTAssert(model.charValue == -1);
XCTAssert(model.unsignedCharValue == (unsigned char)-1);
XCTAssert(model.shortValue == -1);
XCTAssert(model.unsignedShortValue == (unsigned short)-1);
XCTAssert(model.intValue == -1);
XCTAssert(model.unsignedIntValue == (unsigned int)-1);
XCTAssert(model.longValue == -1);
XCTAssert(model.unsignedLongValue == (unsigned long)-1);
XCTAssert(model.longLongValue == -1);
XCTAssert(model.unsignedLongLongValue == (unsigned long long)-1);
XCTAssert(model.floatValue == -1);
XCTAssert(model.doubleValue == -1);
XCTAssert(model.longDoubleValue == -1);
XCTAssert([model.anyObject isEqual:@(-1)]);
XCTAssert([model.object isEqual:@(-1)]);
XCTAssert([model.number isEqual:@(-1)]);
XCTAssert([model.decimal isEqual:@(-1)]);
XCTAssert([model.string isEqualToString:@"-1"]);
XCTAssert([model.mString isEqualToString:@"-1"]);
XCTAssert([model.mString isKindOfClass:[NSMutableString class]]);
json = @"{\"v\" : \"2\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.BOOLValue);
XCTAssert(model.charValue == 2);
XCTAssert(model.unsignedCharValue == 2);
XCTAssert(model.shortValue == 2);
XCTAssert(model.unsignedShortValue == 2);
XCTAssert(model.intValue == 2);
XCTAssert(model.unsignedIntValue == 2);
XCTAssert(model.longValue == 2);
XCTAssert(model.unsignedLongValue == 2);
XCTAssert(model.longLongValue == 2);
XCTAssert(model.unsignedLongLongValue == 2);
XCTAssert(model.floatValue == 2);
XCTAssert(model.doubleValue == 2);
XCTAssert(model.longDoubleValue == 2);
XCTAssert([model.anyObject isEqual:@"2"]);
XCTAssert([model.object isEqual:@"2"]);
XCTAssert([model.number isEqual:@(2)]);
XCTAssert([model.decimal isEqual:@(2)]);
XCTAssert([model.string isEqualToString:@"2"]);
XCTAssert([model.mString isEqualToString:@"2"]);
XCTAssert([model.mString isKindOfClass:[NSMutableString class]]);
model.intValue = 12;
[model yy_modelSetWithJSON:json];
XCTAssert(model.intValue == 2);
json = @"{\"v\" : \"-3.2\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(fabs(model.floatValue + 3.2) < 0.0001);
XCTAssert(fabs(model.doubleValue + 3.2) < 0.0001);
XCTAssert(fabsl(model.longDoubleValue + 3.2) < 0.0001);
XCTAssert([model.object isEqual:@"-3.2"]);
XCTAssert([model.number isEqual:@(-3.2)]);
XCTAssert([model.decimal isEqual:@(-3.2)]);
XCTAssert([model.string isEqualToString:@"-3.2"]);
XCTAssert([model.mString isEqualToString:@"-3.2"]);
XCTAssert([model.mString isKindOfClass:[NSMutableString class]]);
json = @"{\"v\" : \"true\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.intValue == 1);
json = @"{\"v\" : \"false\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue == 0);
XCTAssert(model.intValue == 0);
json = @"{\"v\" : \"YES\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue);
XCTAssert(model.intValue == 1);
json = @"{\"v\" : \"NO\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue == 0);
XCTAssert(model.intValue == 0);
json = @"{\"v\" : \"nil\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue == 0);
XCTAssert(model.intValue == 0);
XCTAssert([model.string isEqual:@"nil"]);
XCTAssert(model.number == nil);
json = @"{\"v\" : {}}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert(model.boolValue == 0);
XCTAssert(model.intValue == 0);
XCTAssert(model.string == nil);
XCTAssert(model.number == nil);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSDecimalNumber decimalNumberWithString:@"9876543210"]}];
XCTAssert(model.unsignedLongLongValue == 9876543210LLU);
XCTAssert(model.longLongValue == 9876543210LL);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSValue valueWithPointer:CFArrayCreate]}];
XCTAssert(model.pointerValue == CFArrayCreate);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSURL class]}];
XCTAssert(model.classValue == [NSURL class]);
__block int i = 0;
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : ^{i = 1;}}];
model.blockValue();
XCTAssert(i == 1);
}
- (void)testDate {
NSString *json;
YYTestAutoTypeModel *model;
json = @"{\"v\" : \"2014-05-06\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-05-06 07:08:09\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-05-06T07:08:09\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48Z\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48+0800\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48+12:00\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"Fri Sep 04 00:12:21 +0800 2015\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-05-06 07:08:09.000\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-05-06T07:08:09.000\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48.000Z\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48.000Z\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"2014-01-20T12:24:48.000+12:00\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
json = @"{\"v\" : \"Fri Sep 04 00:12:21.000 +0800 2015\"}";
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSDate new]}];
XCTAssert([model.date isKindOfClass:[NSDate class]]);
}
- (void)testString {
NSDictionary *json;
YYTestAutoTypeModel *model;
json = @{@"v" : @"Apple"};
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssertTrue([model.string isEqualToString:@"Apple"]);
json = @{@"v" : @" github.com"};
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssertTrue([model.url isEqual:[NSURL URLWithString:@"github.com"]]);
json = @{@"v" : @"stringWithFormat:"};
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssertTrue(model.selectorValue == @selector(stringWithFormat:));
json = @{@"v" : @"UILabel"};
model = [YYTestAutoTypeModel yy_modelWithJSON:json];
XCTAssertTrue(model.classValue == UILabel.class);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [@"haha" dataUsingEncoding:NSUTF8StringEncoding]}];
XCTAssert([model.string isEqualToString:@"haha"]);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSURL URLWithString:@"https://github.com"]}];
XCTAssert([model.string isEqualToString:@"https://github.com"]);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : @" "}];
XCTAssert(model.url == nil);
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [[NSAttributedString alloc] initWithString:@"test"]}];
XCTAssert([model.string isEqualToString:@"test"]);
}
- (void)testValue {
NSValue *value;
YYTestAutoTypeModel *model;
value = [NSValue valueWithCGRect:CGRectMake(1, 2, 3, 4)];
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : value}];
XCTAssertTrue(CGRectEqualToRect(model.structValue, CGRectMake(1, 2, 3, 4)));
XCTAssertTrue(CGPointEqualToPoint(model.pointValue, CGPointZero));
value = [NSValue valueWithCGPoint:CGPointMake(1, 2)];
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : value}];
XCTAssertTrue(CGRectEqualToRect(model.structValue, CGRectZero));
XCTAssertTrue(CGPointEqualToPoint(model.pointValue, CGPointMake(1, 2)));
}
- (void)testNull {
YYTestAutoTypeModel *model;
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSNull null]}];
XCTAssertTrue(model.boolValue == false);
XCTAssertTrue(model.object == nil);
}
- (void)testBlock {
int (^block)(void) = ^{return 12;};
NSDictionary *dic = @{@"v":block};
YYTestAutoTypeModel *model = [YYTestAutoTypeModel yy_modelWithDictionary:dic];
XCTAssertNotNil(model.blockValue);
block = (id)model.blockValue;
XCTAssertTrue(block() == 12);
}
- (void)testArrayAndDic {
NSString *json;
json = @"[{\"v\":1},{\"v\":2},{\"v\":3}]";
NSArray *array = [NSArray yy_modelArrayWithClass:YYTestAutoTypeModel.class json:json];
XCTAssertTrue(array.count == 3);
XCTAssertTrue([array.firstObject isKindOfClass:[YYTestAutoTypeModel class]]);
array = [NSArray yy_modelArrayWithClass:YYTestAutoTypeModel.class json:[YYTestHelper jsonDataFromString:json]];
XCTAssertTrue(array.count == 3);
XCTAssertTrue([array.firstObject isKindOfClass:[YYTestAutoTypeModel class]]);
array = [NSArray yy_modelArrayWithClass:YYTestAutoTypeModel.class json:[YYTestHelper jsonObjectFromString:json]];
XCTAssertTrue(array.count == 3);
XCTAssertTrue([array.firstObject isKindOfClass:[YYTestAutoTypeModel class]]);
json = @"{\"a\":{\"v\":1},\"b\":{\"v\":2},\"c\":{\"v\":3}}";
NSDictionary *dict = [NSDictionary yy_modelDictionaryWithClass:YYTestAutoTypeModel.class json:json];
XCTAssertTrue(dict.count == 3);
XCTAssertTrue([dict[@"a"] isKindOfClass:[YYTestAutoTypeModel class]]);
json = @"{\"a\":{\"v\":1},\"b\":{\"v\":2},\"c\":{\"v\":3}}";
dict = [NSDictionary yy_modelDictionaryWithClass:YYTestAutoTypeModel.class json:[YYTestHelper jsonDataFromString:json]];
XCTAssertTrue(dict.count == 3);
XCTAssertTrue([dict[@"a"] isKindOfClass:[YYTestAutoTypeModel class]]);
json = @"{\"a\":{\"v\":1},\"b\":{\"v\":2},\"c\":{\"v\":3}}";
dict = [NSDictionary yy_modelDictionaryWithClass:YYTestAutoTypeModel.class json:[YYTestHelper jsonObjectFromString:json]];
XCTAssertTrue(dict.count == 3);
XCTAssertTrue([dict[@"a"] isKindOfClass:[YYTestAutoTypeModel class]]);
YYTestAutoTypeModel *model;
model = [YYTestAutoTypeModel yy_modelWithJSON:@{@"v" : [NSSet setWithArray:@[@1,@2,@3]]}];
XCTAssertTrue([model.array isKindOfClass:[NSArray class]]);
XCTAssertTrue(model.array.count == 3);
}
@end