forked from parse-community/Parse-SDK-iOS-OSX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FacebookUtilsTests.m
272 lines (216 loc) · 11.7 KB
/
FacebookUtilsTests.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
/**
* 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 Parse;
#import <OCMock/OCMock.h>
#import "PFFacebookTestCase.h"
#import "PFFacebookUtils_Private.h"
#import "PFFacebookPrivateUtilities.h"
///--------------------------------------
#pragma mark - FacebookUtilsTests
///--------------------------------------
@interface FacebookUtilsTests : PFFacebookTestCase
@end
@implementation FacebookUtilsTests
///--------------------------------------
#pragma mark - XCTestCase
///--------------------------------------
- (void)tearDown {
[PFFacebookUtils _setAuthenticationProvider:nil];
[super tearDown];
}
///--------------------------------------
#pragma mark - Helpers
///--------------------------------------
- (NSDictionary *)sampleAuthData {
return @{ @"id" : @"fbId",
@"auth_token" : @"token",
@"expiration_date" : @"1970-01-01T00:22:17.000Z" };
}
///--------------------------------------
#pragma mark - Tests
///--------------------------------------
- (void)testInitialize {
id userMock = PFStrictClassMock([PFUser class]);
OCMExpect(ClassMethod([userMock registerAuthenticationDelegate:[OCMArg checkWithBlock:^BOOL(id obj) {
return (obj != nil);
}] forAuthType:@"facebook"]));
XCTAssertThrows([PFFacebookUtils unlinkUserInBackground:userMock]);
XCTAssertThrows([PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:nil]);
id parseMock = PFStrictClassMock([Parse class]);
id configurationMock = PFStrictClassMock([ParseClientConfiguration class]);
OCMStub(ClassMethod([parseMock currentConfiguration])).andReturn(configurationMock);
XCTAssertNoThrow([PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:nil]);
XCTAssertNotNil([PFFacebookUtils _authenticationProvider]);
XCTAssertNoThrow([PFFacebookUtils initializeFacebookWithApplicationLaunchOptions:nil]);
OCMVerifyAll(userMock);
}
- (void)testLoginManager {
id mockedLoginManager = PFStrictClassMock([FBSDKLoginManager class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
OCMStub([mockedAuthProvider loginManager]).andReturn(mockedLoginManager);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
XCTAssertEqualObjects(mockedLoginManager, [PFFacebookUtils facebookLoginManager]);
}
- (void)testLoginReadPermissions {
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
OCMStub([mockedAuthProvider authenticateAsyncWithReadPermissions:@[ @"read" ] publishPermissions:nil]).andReturn([BFTask taskWithResult:@{}]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
id userMock = PFStrictClassMock([PFUser class]);
OCMStub(ClassMethod([userMock logInWithAuthTypeInBackground:@"facebook" authData:[OCMArg isNotNil]])).andReturn([BFTask taskWithResult:userMock]);
XCTestExpectation *taskExpecatation = [self expectationWithDescription:@"task"];
[[PFFacebookUtils logInInBackgroundWithReadPermissions:@[ @"read" ]] continueWithBlock:^id(BFTask *task) {
XCTAssertEqual(task.result, userMock);
[taskExpecatation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpecatation = [self expectationWithDescription:@"block"];
[PFFacebookUtils logInInBackgroundWithReadPermissions:@[ @"read" ] block:^(PFUser *resultUser, NSError *error) {
XCTAssertEqual(resultUser, userMock);
XCTAssertNil(error);
[blockExpecatation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testLoginWritePermissions {
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
OCMStub([mockedAuthProvider authenticateAsyncWithReadPermissions:nil publishPermissions:@[ @"publish" ]]).andReturn([BFTask taskWithResult:@{}]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
id userMock = PFStrictClassMock([PFUser class]);
OCMStub(ClassMethod([userMock logInWithAuthTypeInBackground:@"facebook" authData:[OCMArg isNotNil]])).andReturn([BFTask taskWithResult:userMock]);
XCTestExpectation *taskExpecatation = [self expectationWithDescription:@"task"];
[[PFFacebookUtils logInInBackgroundWithPublishPermissions:@[ @"publish" ]] continueWithBlock:^id(BFTask *task) {
XCTAssertEqual(task.result, userMock);
[taskExpecatation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpecatation = [self expectationWithDescription:@"block"];
[PFFacebookUtils logInInBackgroundWithPublishPermissions:@[ @"publish" ] block:^(PFUser *resultUser, NSError *error) {
XCTAssertEqual(resultUser, userMock);
XCTAssertNil(error);
[blockExpecatation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testLoginWithAccessToken {
id mockedPrivateUtilities = PFStrictClassMock([PFFacebookPrivateUtilities class]);
id mockedAccessToken = PFStrictClassMock([FBSDKAccessToken class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
// NOTE: (richardross) Until we decouple user login with auth data, we can only mock error cases here.
OCMStub(ClassMethod([mockedPrivateUtilities userAuthenticationDataFromAccessToken:mockedAccessToken])).andReturn(nil);
XCTestExpectation *taskExpectation = [self expectationWithDescription:@"task"];
[[PFFacebookUtils logInInBackgroundWithAccessToken:mockedAccessToken] continueWithBlock:^id(BFTask *task) {
XCTAssertEqualObjects(task.error.domain, PFParseErrorDomain);
XCTAssertEqual(task.error.code, kPFErrorFacebookInvalidSession);
[taskExpectation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpectation = [self expectationWithDescription:@"block"];
[PFFacebookUtils logInInBackgroundWithAccessToken:mockedAccessToken block:^(PFUser *user, NSError *error) {
XCTAssertNil(user);
XCTAssertEqualObjects(error.domain, PFParseErrorDomain);
XCTAssertEqual(error.code, kPFErrorFacebookInvalidSession);
[blockExpectation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testLinkWithReadPermissions {
id mockedUser = PFStrictClassMock([PFUser class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
OCMStub([mockedAuthProvider authenticateAsyncWithReadPermissions:@[ @"read" ] publishPermissions:nil]).andReturn([BFTask taskWithResult:@{}]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
OCMStub([mockedUser linkWithAuthTypeInBackground:@"facebook" authData:[OCMArg isNotNil]]).andReturn([BFTask taskWithResult:@YES]);
XCTestExpectation *taskExpecatation = [self expectationWithDescription:@"task"];
[[PFFacebookUtils linkUserInBackground:mockedUser withReadPermissions:@[ @"read" ]] continueWithBlock:^id(BFTask *task) {
XCTAssertEqualObjects(task.result, @YES);
[taskExpecatation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpectation = [self expectationWithDescription:@"block"];
[PFFacebookUtils linkUserInBackground:mockedUser withReadPermissions:@[ @"read" ] block:^(BOOL result, NSError *error) {
XCTAssertTrue(result);
[blockExpectation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testLinkWithWritePermissions {
id mockedUser = PFStrictClassMock([PFUser class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
OCMStub([mockedAuthProvider authenticateAsyncWithReadPermissions:nil publishPermissions:@[ @"publish" ]]).andReturn([BFTask taskWithResult:@{}]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
OCMStub([mockedUser linkWithAuthTypeInBackground:@"facebook" authData:[OCMArg isNotNil]]).andReturn([BFTask taskWithResult:@YES]);
XCTestExpectation *taskExpecation = [self expectationWithDescription:@"task"];
[[PFFacebookUtils linkUserInBackground:mockedUser withPublishPermissions:@[ @"publish" ]] continueWithBlock:^id(BFTask *task) {
XCTAssertEqualObjects(task.result, @YES);
[taskExpecation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpectation = [self expectationWithDescription:@"block"];
[PFFacebookUtils linkUserInBackground:mockedUser withPublishPermissions:@[ @"publish" ] block:^(BOOL result, NSError *error) {
XCTAssertTrue(result);
[blockExpectation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testLinkWithAccessToken {
id mockedPrivateUtilities = PFStrictClassMock([PFFacebookPrivateUtilities class]);
id mockedAccessToken = PFStrictClassMock([FBSDKAccessToken class]);
id mockedUser = PFStrictClassMock([PFUser class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
NSDictionary *sampleAuthData = [self sampleAuthData];
OCMStub(ClassMethod([mockedPrivateUtilities userAuthenticationDataFromAccessToken:mockedAccessToken])).andReturn(sampleAuthData);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
[OCMStub([mockedUser linkWithAuthTypeInBackground:@"facebook" authData:sampleAuthData]) andReturn:[BFTask taskWithResult:@YES]];
XCTestExpectation *taskExpecatation = [self expectationWithDescription:@"block"];
[[PFFacebookUtils linkUserInBackground:mockedUser withAccessToken:mockedAccessToken] continueWithBlock:^id(BFTask *task) {
XCTAssertEqualObjects(task.result, @YES);
[taskExpecatation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpectation = [self expectationWithDescription:@"block"];
[PFFacebookUtils linkUserInBackground:mockedUser withAccessToken:mockedAccessToken block:^(BOOL result, NSError *error) {
XCTAssertTrue(result);
[blockExpectation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testUnlink {
id mockedLinkedUser = PFStrictClassMock([PFUser class]);
id mockedAuthProvider = PFStrictClassMock([PFFacebookMobileAuthenticationProvider class]);
[PFFacebookUtils _setAuthenticationProvider:mockedAuthProvider];
[OCMStub([mockedLinkedUser unlinkWithAuthTypeInBackground:@"facebook"]) andReturn:[BFTask taskWithResult:@YES]];
XCTestExpectation *taskExpecatation = [self expectationWithDescription:@"block"];
[[PFFacebookUtils unlinkUserInBackground:mockedLinkedUser] continueWithBlock:^id(BFTask *task) {
XCTAssertEqualObjects(task.result, @YES);
[taskExpecatation fulfill];
return nil;
}];
[self waitForTestExpectations];
XCTestExpectation *blockExpectation = [self expectationWithDescription:@"block"];
[PFFacebookUtils unlinkUserInBackground:mockedLinkedUser block:^(BOOL result, NSError *error) {
XCTAssertTrue(result);
[blockExpectation fulfill];
}];
[self waitForTestExpectations];
}
- (void)testIsLinked {
id mockedLinkedUser = PFStrictClassMock([PFUser class]);
id mockedUnlinkedUser = PFStrictClassMock([PFUser class]);
OCMStub([mockedLinkedUser isLinkedWithAuthType:@"facebook"]).andReturn(YES);
OCMStub([mockedUnlinkedUser isLinkedWithAuthType:@"facebook"]).andReturn(NO);
XCTAssertTrue([PFFacebookUtils isLinkedWithUser:mockedLinkedUser]);
XCTAssertFalse([PFFacebookUtils isLinkedWithUser:mockedUnlinkedUser]);
}
@end