-
Notifications
You must be signed in to change notification settings - Fork 688
/
Copy pathMainSuite.m
207 lines (178 loc) · 7.75 KB
/
MainSuite.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
//
// Created by SuperPappi on 01/01/2013.
//
// To change the template use AppCode | Preferences | File Templates.
//
#import "SBJson4.h"
#import <XCTest/XCTest.h>
static NSData *slurpd(NSString *path) {
return [NSData dataWithContentsOfFile:path];
}
static NSString *slurp(NSString *path) {
return [NSString stringWithContentsOfFile:path encoding:NSUTF8StringEncoding error:nil];
}
static NSString *chomp(NSString *str) {
return [str substringToIndex:str.length - 1];
}
@interface MainSuite : XCTestCase
@end
@implementation MainSuite {
SBJson4Writer *writer;
NSUInteger count;
}
- (void)setUp {
writer = [[SBJson4Writer alloc] init];
count = 0u;
}
- (NSString*)suitePath:(NSString*)suite {
NSBundle *bundle = [NSBundle bundleForClass:[self class]];
return [[[bundle resourcePath] stringByAppendingPathComponent:@"TestData"]
stringByAppendingPathComponent:suite];
}
- (void)inExtForeachInSuite:(NSString *)suite
inext:(NSString *)inext
outExt:(NSString *)outext
block:(void (^)(NSString *, NSString *))block {
NSString *root = [self suitePath:suite];
for (NSString *fileName in [[NSFileManager defaultManager] enumeratorAtPath:root]) {
if (![inext isEqualToString:[fileName pathExtension]])
continue;
NSString *inpath = [root stringByAppendingPathComponent:fileName];
NSString *outpath = [[inpath stringByDeletingPathExtension] stringByAppendingPathExtension:outext];
if (![[NSFileManager defaultManager] isReadableFileAtPath:outpath])
continue;
count++;
block(inpath, outpath);
}
}
- (void)testRoundtrip {
[self inExtForeachInSuite:@"main"
inext:@"in"
outExt:@"out"
block:^(NSString *inpath, NSString *outpath) {
id parser = [SBJson4Parser parserWithBlock:^(id value, BOOL *string) {
XCTAssertNotNil(value);
NSString *output = [writer stringWithObject:value];
XCTAssertNotNil(output, @"%@", writer.error);
XCTAssertEqualObjects(output, chomp(slurp(outpath)), @"%@", [[inpath pathComponents] lastObject]);
}
allowMultiRoot:NO
unwrapRootArray:NO
errorHandler:^(NSError *error) {
XCTFail(@"%@", error);
}];
[parser parse:slurpd(inpath)];
}];
}
- (void)testParseUntilEOF {
[self inExtForeachInSuite:@"main"
inext:@"in"
outExt:@"eof"
block:^(NSString *inpath, NSString *outpath) {
id parser = [SBJson4Parser parserWithBlock:^(id value, BOOL *string) {}
allowMultiRoot:NO
unwrapRootArray:NO
errorHandler:^(NSError *error) {
XCTFail(@"%@", error);
}];
XCTAssertEqual([parser parse:slurpd(inpath)], SBJson4ParserWaitingForData);
}];
XCTAssertEqual(count, (NSUInteger)3);
}
/*
- (void)IGNOREDtestReallyBrokenUTF8 {
[self inExtForeachInSuite:@"kuhn" inext:@"in" outExt:@"out" block:^(NSString *inpath, NSString *outpath) {
id value = [parser objectWithData:slurpd(inpath)];
STAssertNotNil(value, parser.error);
NSString *output = [writer stringWithObject:value];
STAssertNotNil(output, writer.error);
STAssertEqualObjects(output, chomp(slurp(outpath)), nil);
}];
STAssertEquals(count, (NSUInteger)1, nil);
}*/
- (void)testParseError {
[self inExtForeachInSuite:@"main"
inext:@"in"
outExt:@"err"
block:^(NSString *inpath, NSString *outpath) {
id parser = [[SBJson4Parser alloc] initWithBlock:^(id o, BOOL *string) {
XCTFail(@"%@ - %@", o, [[inpath pathComponents] lastObject]);
}
processBlock:nil
multiRoot:NO
unwrapRootArray:NO
maxDepth:3
errorHandler:^(NSError *error) {
XCTAssertNotNil(error, @"%@", inpath);
XCTAssertEqualObjects([error localizedDescription], chomp(slurp(outpath)), @"%@", [[inpath pathComponents]
lastObject]);
}];
[parser parse:slurpd(inpath)];
}];
}
- (void)testWriteSuccess {
[self inExtForeachInSuite:@"main"
inext:@"plist"
outExt:@"out"
block:^(NSString *inpath, NSString *outpath) {
id value = [NSArray arrayWithContentsOfFile:inpath];
NSString *output = [writer stringWithObject:value];
XCTAssertNotNil(output, @"%@", writer.error);
XCTAssertEqualObjects(output, chomp(slurp(outpath)));
}];
}
- (void)testWriteError {
writer.maxDepth = 4u;
[self inExtForeachInSuite:@"main"
inext:@"plist"
outExt:@"err"
block:^(NSString *inpath, NSString *outpath) {
id value = [NSArray arrayWithContentsOfFile:inpath];
XCTAssertNil([writer stringWithObject:value]);
XCTAssertEqualObjects(writer.error, chomp(slurp(outpath)));
}];
}
- (void)testFormat {
writer.humanReadable = YES;
writer.sortKeys = YES;
[self inExtForeachInSuite:@"format"
inext:@"in"
outExt:@"out"
block:^(NSString *inpath, NSString *outpath) {
id parser = [SBJson4Parser parserWithBlock:^(id value, BOOL *string) {
NSString *output = [writer stringWithObject:value];
XCTAssertNotNil(output, @"%@", writer.error);
XCTAssertEqualObjects(output, chomp(slurp(outpath)));
}
allowMultiRoot:NO
unwrapRootArray:NO
errorHandler:^(NSError *error) {
XCTFail(@"%@", error);
}];
[parser parse:slurpd(inpath)];
}];
}
- (void)testComparatorSort {
writer.humanReadable = YES;
writer.sortKeys = YES;
writer.sortKeysComparator = ^(id obj1, id obj2) {
return [obj1 compare:obj2 options:NSCaseInsensitiveSearch|NSLiteralSearch];
};
[self inExtForeachInSuite:@"comparatorsort"
inext:@"in"
outExt:@"out"
block:^(NSString *inpath, NSString *outpath) {
id parser = [SBJson4Parser parserWithBlock:^(id value, BOOL *string) {
NSString *output = [writer stringWithObject:value];
XCTAssertNotNil(output, @"%@", writer.error);
XCTAssertEqualObjects(output, chomp(slurp(outpath)));
}
allowMultiRoot:NO
unwrapRootArray:NO
errorHandler:^(NSError *error) {
XCTFail(@"%@", error);
}];
[parser parse:slurpd(inpath)];
}];
}
@end