@@ -219,6 +219,47 @@ - (void)testLogInCurrentUserWithUsernamePasswordNullResult {
219
219
OCMVerifyAll (commandRunner);
220
220
}
221
221
222
+ - (void )testLogInCurrentUserWithUsernamePasswordAuthData {
223
+ id commonDataSource = [self mockedCommonDataSource ];
224
+ id coreDataSource = [self mockedCoreDataSource ];
225
+ id commandRunner = [commonDataSource commandRunner ];
226
+
227
+ NSDictionary *authData = @{ @" mfa" : @{ @" token" : @" 000000" } };
228
+ id commandResult = @{ @" objectId" : @" a" ,
229
+ @" yarr" : @1 };
230
+ [commandRunner mockCommandResult: commandResult forCommandsPassingTest: ^BOOL (id obj) {
231
+ PFRESTCommand *command = obj;
232
+
233
+ XCTAssertEqualObjects (command.httpMethod , PFHTTPRequestMethodGET);
234
+ XCTAssertNotEqual ([command.httpPath rangeOfString: @" login" ].location , NSNotFound );
235
+ XCTAssertNil (command.sessionToken );
236
+ XCTAssertEqualObjects (command.parameters , (@{ @" username" : @" yolo" , @" password" : @" yarr" , @" authData" : authData }));
237
+ XCTAssertEqualObjects (command.additionalRequestHeaders , @{ @" X-Parse-Revocable-Session" : @" 1" });
238
+
239
+ return YES ;
240
+ }];
241
+
242
+ id currentUserController = [coreDataSource currentUserController ];
243
+ PFUserController *controller = [PFUserController controllerWithCommonDataSource: commonDataSource
244
+ coreDataSource: coreDataSource];
245
+
246
+ XCTestExpectation *expectation = [self currentSelectorTestExpectation ];
247
+ [[controller logInCurrentUserAsyncWithUsername: @" yolo"
248
+ password: @" yarr"
249
+ authData: authData
250
+ revocableSession: YES ] continueWithBlock: ^id (BFTask *task) {
251
+ PFUser *user = task.result ;
252
+ XCTAssertNotNil (user);
253
+ XCTAssertEqualObjects (user.objectId , @" a" );
254
+ XCTAssertEqualObjects (user[@" yarr" ], @1 );
255
+ [expectation fulfill ];
256
+ return nil ;
257
+ }];
258
+ [self waitForTestExpectations ];
259
+
260
+ OCMVerifyAll (currentUserController);
261
+ }
262
+
222
263
- (void )testRequestPasswordReset {
223
264
id commonDataSource = [self mockedCommonDataSource ];
224
265
id coreDataSource = [self mockedCoreDataSource ];
0 commit comments