Skip to content

Commit 0270169

Browse files
committed
ci: Add tests for login with additional authData
1 parent 93b251f commit 0270169

File tree

2 files changed

+70
-0
lines changed

2 files changed

+70
-0
lines changed

Parse/Tests/Unit/UserCommandTests.m

+29
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,35 @@ - (void)testLogInCommand {
4141
XCTAssertFalse(command.revocableSessionEnabled);
4242
}
4343

44+
- (void)testLogInCommandWithAuthData {
45+
NSDictionary *authData = @{ @"mfa" : @{ @"token" : @"000000" } };
46+
PFRESTUserCommand *command = [PFRESTUserCommand logInUserCommandWithUsername:@"a"
47+
password:@"b"
48+
authData:authData
49+
revocableSession:YES
50+
error:nil];
51+
XCTAssertNotNil(command);
52+
XCTAssertEqualObjects(command.httpPath, @"login");
53+
XCTAssertEqualObjects(command.httpMethod, PFHTTPRequestMethodGET);
54+
XCTAssertNotNil(command.parameters);
55+
XCTAssertNotNil(command.parameters[@"username"]);
56+
XCTAssertNotNil(command.parameters[@"password"]);
57+
XCTAssertNotNil(command.parameters[@"authData"]);
58+
XCTAssertEqualObjects(command.parameters[@"authData"], authData);
59+
XCTAssertEqual(command.additionalRequestHeaders.count, 1);
60+
XCTAssertTrue(command.revocableSessionEnabled);
61+
XCTAssertNil(command.sessionToken);
62+
63+
command = [PFRESTUserCommand logInUserCommandWithUsername:@"a"
64+
password:@"b"
65+
authData:authData
66+
revocableSession:NO
67+
error:nil];
68+
XCTAssertNotNil(command);
69+
XCTAssertEqual(command.additionalRequestHeaders.count, 0);
70+
XCTAssertFalse(command.revocableSessionEnabled);
71+
}
72+
4473
- (void)testServiceLoginCommandWithAuthTypeData {
4574
PFRESTUserCommand *command = [PFRESTUserCommand serviceLoginUserCommandWithAuthenticationType:@"a"
4675
authenticationData:@{ @"b" : @"c" }

Parse/Tests/Unit/UserControllerTests.m

+41
Original file line numberDiff line numberDiff line change
@@ -219,6 +219,47 @@ - (void)testLogInCurrentUserWithUsernamePasswordNullResult {
219219
OCMVerifyAll(commandRunner);
220220
}
221221

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+
222263
- (void)testRequestPasswordReset {
223264
id commonDataSource = [self mockedCommonDataSource];
224265
id coreDataSource = [self mockedCoreDataSource];

0 commit comments

Comments
 (0)