forked from parse-community/Parse-SDK-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
URLSessionDataTaskDelegateTests.m
210 lines (166 loc) · 9.73 KB
/
URLSessionDataTaskDelegateTests.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
/**
* Copyright (c) 2015-present, Parse, LLC.
* All rights reserved.
*
* This source code is licensed under the BSD-style license found in the
* LICENSE file in the root directory of this source tree. An additional grant
* of patent rights can be found in the PATENTS file in the same directory.
*/
#import <OCMock/OCMock.h>
@import Bolts.BFCancellationTokenSource;
@import Bolts.BFTask;
#import "PFCommandResult.h"
#import "PFConstants.h"
#import "PFTestCase.h"
#import "PFURLSessionJSONDataTaskDelegate.h"
@interface URLSessionDataTaskDelegateTests : PFTestCase
@end
@implementation URLSessionDataTaskDelegateTests
- (void)testConstructors {
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *tokenSource = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [[PFURLSessionJSONDataTaskDelegate alloc] initForDataTask:mockedTask
withCancellationToken:tokenSource.token];
XCTAssertNotNil(delegate);
XCTAssertEqual(mockedTask, delegate.dataTask);
XCTAssertNotNil(delegate.resultTask);
delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:tokenSource.token];
XCTAssertNotNil(delegate);
XCTAssertEqual(mockedTask, delegate.dataTask);
XCTAssertNotNil(delegate.resultTask);
}
- (void)testCancel {
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *source = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:source.token];
XCTAssertFalse(delegate.resultTask.cancelled);
OCMStub([mockedTask cancel]).andDo(^(NSInvocation *invocation) {
[delegate URLSession:[NSURLSession sharedSession]
task:mockedTask
didCompleteWithError:[NSError errorWithDomain:NSURLErrorDomain code:NSURLErrorCancelled userInfo:nil]];
});
[source cancel];
XCTAssertTrue(delegate.resultTask.cancelled);
}
- (void)testSuccess {
NSURLSession *mockedSession = PFStrictClassMock([NSURLSession class]);
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *source = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:source.token];
NSData *chunkA = [@"{ \"foo\" :" dataUsingEncoding:NSUTF8StringEncoding];
NSData *chunkB = [@" \"bar\" }" dataUsingEncoding:NSUTF8StringEncoding];
NSHTTPURLResponse *urlResponse = [[NSHTTPURLResponse alloc] initWithURL:[NSURL URLWithString:@"http://foo.bar"]
statusCode:200
HTTPVersion:@"HTTP/1.1"
headerFields:nil];
[delegate URLSession:mockedSession
task:mockedTask
didSendBodyData:5
totalBytesSent:5
totalBytesExpectedToSend:5];
[delegate URLSession:mockedSession
dataTask:mockedTask
didReceiveResponse:urlResponse
completionHandler:^(NSURLSessionResponseDisposition disposition) {
XCTAssertEqual(disposition, NSURLSessionResponseAllow);
}];
[delegate URLSession:mockedSession dataTask:mockedTask didReceiveData:chunkA];
[delegate URLSession:mockedSession dataTask:mockedTask didReceiveData:chunkB];
[delegate URLSession:mockedSession task:mockedTask didCompleteWithError:nil];
PFCommandResult *commandResult = delegate.resultTask.result;
XCTAssertEqualObjects([commandResult result], (@{ @"foo" : @"bar" }));
}
- (void)testUnknownError {
NSURLSession *mockedSession = PFStrictClassMock([NSURLSession class]);
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *source = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:source.token];
NSError *expectedError = [NSError errorWithDomain:PFParseErrorDomain code:1337 userInfo:nil];
NSData *chunk = [@"{ \"foo\" :" dataUsingEncoding:NSUTF8StringEncoding];
NSURLResponse *urlResponse = [[NSHTTPURLResponse alloc] initWithURL:[NSURL URLWithString:@"http://foo.bar"]
statusCode:500
HTTPVersion:@"HTTP/1.1"
headerFields:nil];
[delegate URLSession:mockedSession
task:mockedTask
didSendBodyData:5
totalBytesSent:5
totalBytesExpectedToSend:5];
[delegate URLSession:mockedSession
dataTask:mockedTask
didReceiveResponse:urlResponse
completionHandler:^(NSURLSessionResponseDisposition disposition) {
XCTAssertEqual(disposition, NSURLSessionResponseAllow);
}];
[delegate URLSession:mockedSession dataTask:mockedTask didReceiveData:chunk];
[delegate URLSession:mockedSession task:mockedTask didCompleteWithError:expectedError];
XCTAssertEqualObjects(delegate.resultTask.error.userInfo[@"originalError"], expectedError);
XCTAssertEqualObjects(delegate.resultTask.error.userInfo[NSUnderlyingErrorKey], expectedError);
}
- (void)testJSONError {
NSURLSession *mockedSession = PFStrictClassMock([NSURLSession class]);
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *source = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:source.token];
NSError *expectedError = [NSError errorWithDomain:NSCocoaErrorDomain code:3840 userInfo:nil];
NSData *chunk = [@"{ \"foo\" :" dataUsingEncoding:NSUTF8StringEncoding];
NSURLResponse *urlResponse = [[NSHTTPURLResponse alloc] initWithURL:[NSURL URLWithString:@"http://foo.bar"]
statusCode:200
HTTPVersion:@"HTTP/1.1"
headerFields:nil];
[delegate URLSession:mockedSession
task:mockedTask
didSendBodyData:5
totalBytesSent:5
totalBytesExpectedToSend:5];
[delegate URLSession:mockedSession
dataTask:mockedTask
didReceiveResponse:urlResponse
completionHandler:^(NSURLSessionResponseDisposition disposition) {
XCTAssertEqual(disposition, NSURLSessionResponseAllow);
}];
[delegate URLSession:mockedSession dataTask:mockedTask didReceiveData:chunk];
[delegate URLSession:mockedSession task:mockedTask didCompleteWithError:nil];
XCTAssertEqualObjects(delegate.resultTask.error.domain, expectedError.domain);
XCTAssertEqual(delegate.resultTask.error.code, expectedError.code);
}
- (void)testHTTPError {
NSURLSession *mockedSession = PFStrictClassMock([NSURLSession class]);
id mockedTask = PFStrictClassMock([NSURLSessionTask class]);
BFCancellationTokenSource *source = [BFCancellationTokenSource cancellationTokenSource];
PFURLSessionJSONDataTaskDelegate *delegate = [PFURLSessionJSONDataTaskDelegate taskDelegateForDataTask:mockedTask
withCancellationToken:source.token];
NSError *expectedError = [NSError errorWithDomain:PFParseErrorDomain
code:1337
userInfo:@{
NSLocalizedDescriptionKey : @"An error",
@"temporary" : @1,
@"error" : @"An error",
@"code" : @1337
}];
NSData *chunk = [@"{ \"error\" : \"An error\", \"code\": 1337 }" dataUsingEncoding:NSUTF8StringEncoding];
NSURLResponse *urlResponse = [[NSHTTPURLResponse alloc] initWithURL:[NSURL URLWithString:@"http://foo.bar"]
statusCode:500
HTTPVersion:@"HTTP/1.1"
headerFields:nil];
[delegate URLSession:mockedSession
task:mockedTask
didSendBodyData:5
totalBytesSent:5
totalBytesExpectedToSend:5];
[delegate URLSession:mockedSession
dataTask:mockedTask
didReceiveResponse:urlResponse
completionHandler:^(NSURLSessionResponseDisposition disposition) {
XCTAssertEqual(disposition, NSURLSessionResponseAllow);
}];
[delegate URLSession:mockedSession dataTask:mockedTask didReceiveData:chunk];
[delegate URLSession:mockedSession task:mockedTask didCompleteWithError:nil];
XCTAssertEqualObjects(delegate.resultTask.error, expectedError);
}
@end