| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166 |
- /*
- * Copyright 2017 Google
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #import <TargetConditionals.h>
- #if TARGET_OS_IOS
- #import <XCTest/XCTest.h>
- #import "OCMock.h"
- #import "FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthErrors.h"
- #import "FirebaseAuth/Sources/Public/FirebaseAuth/FIRAuthUIDelegate.h"
- #import "FirebaseAuth/Sources/Public/FirebaseAuth/FIROAuthProvider.h"
- #import "FirebaseCore/Sources/Private/FirebaseCoreInternal.h"
- #import "FirebaseAuth/Sources/Auth/FIRAuthGlobalWorkQueue.h"
- #import "FirebaseAuth/Sources/Auth/FIRAuth_Internal.h"
- #import "FirebaseAuth/Sources/AuthProvider/OAuth/FIROAuthCredential_Internal.h"
- #import "FirebaseAuth/Sources/Backend/FIRAuthBackend.h"
- #import "FirebaseAuth/Sources/Backend/FIRAuthRequestConfiguration.h"
- #import "FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigRequest.h"
- #import "FirebaseAuth/Sources/Backend/RPC/FIRGetProjectConfigResponse.h"
- #import "FirebaseAuth/Sources/Utilities/FIRAuthErrorUtils.h"
- #import "FirebaseAuth/Sources/Utilities/FIRAuthURLPresenter.h"
- #import "FirebaseAuth/Sources/Utilities/FIRAuthWebUtils.h"
- #import "FirebaseAuth/Tests/Unit/OCMStubRecorder+FIRAuthUnitTests.h"
- /** @var kExpectationTimeout
- @brief The maximum time waiting for expectations to fulfill.
- */
- static const NSTimeInterval kExpectationTimeout = 1;
- /** @var kFakeAuthorizedDomain
- @brief A fake authorized domain for the app.
- */
- static NSString *const kFakeAuthorizedDomain = @"test.firebaseapp.com";
- /** @var kFakeBundleID
- @brief A fake bundle ID.
- */
- static NSString *const kFakeBundleID = @"com.firebaseapp.example";
- /** @var kFakeAccessToken
- @brief A fake access token for testing.
- */
- static NSString *const kFakeAccessToken = @"fakeAccessToken";
- /** @var kFakeIDToken
- @brief A fake ID token for testing.
- */
- static NSString *const kFakeIDToken = @"fakeIDToken";
- /** @var kFakeProviderID
- @brief A fake provider ID for testing.
- */
- static NSString *const kFakeProviderID = @"fakeProviderID";
- /** @var kFakeAPIKey
- @brief A fake API key.
- */
- static NSString *const kFakeAPIKey = @"asdfghjkl";
- /** @var kFakeEmulatorHost
- @brief A fake emulator host.
- */
- static NSString *const kFakeEmulatorHost = @"emulatorhost";
- /** @var kFakeEmulatorPort
- @brief A fake emulator port.
- */
- static NSString *const kFakeEmulatorPort = @"12345";
- /** @var kFakeClientID
- @brief A fake client ID.
- */
- static NSString *const kFakeClientID = @"123456.apps.googleusercontent.com";
- /** @var kFakeReverseClientID
- @brief The dot-reversed version of the fake client ID.
- */
- static NSString *const kFakeReverseClientID = @"com.googleusercontent.apps.123456";
- /** @var kFakeFirebaseAppID
- @brief A fake Firebase app ID.
- */
- static NSString *const kFakeFirebaseAppID = @"1:123456789:ios:123abc456def";
- /** @var kFakeEncodedFirebaseAppID
- @brief A fake encoded Firebase app ID to be used as a custom URL scheme.
- */
- static NSString *const kFakeEncodedFirebaseAppID = @"app-1-123456789-ios-123abc456def";
- /** @var kFakeOAuthResponseURL
- @brief A fake OAuth response URL used in test.
- */
- static NSString *const kFakeOAuthResponseURL = @"fakeOAuthResponseURL";
- /** @var kFakeRedirectURLResponseURL
- @brief A fake callback URL (minus the scheme) containing a fake response URL.
- */
- static NSString *const kFakeRedirectURLResponseURL =
- @"://firebaseauth/"
- @"link?deep_link_id=https%3A%2F%2Fexample.firebaseapp.com%2F__%2Fauth%2Fcallback%3FauthType%"
- @"3DsignInWithRedirect%26link%3D";
- /** @var kFakeRedirectURLBaseErrorString
- @brief The base for a fake redirect URL string that contains an error.
- */
- static NSString *const kFakeRedirectURLBaseErrorString =
- @"com.googleusercontent.apps.123456://fire"
- "baseauth/link?deep_link_id=https%3A%2F%2Fexample.firebaseapp.com%2F__%2Fauth%2Fcallback%3f";
- /** @var kNetworkRequestFailedErrorString
- @brief The error message returned if a network request failure occurs within the web context.
- */
- static NSString *const kNetworkRequestFailedErrorString =
- @"firebaseError%3D%257B%2522code%2"
- "522%253A%2522auth%252Fnetwork-request-failed%2522%252C%2522message%2522%253A%2522The%"
- "2520netwo"
- "rk%2520request%2520failed%2520.%2522%257D%26authType%3DsignInWithRedirect";
- /** @var kInvalidClientIDString
- @brief The error message returned if the client ID used is invalid.
- */
- static NSString *const kInvalidClientIDString =
- @"firebaseError%3D%257B%2522code%2522%253A%2522auth"
- "%252Finvalid-oauth-client-id%2522%252C%2522message%2522%253A%2522The%2520OAuth%2520client%"
- "2520"
- "ID%2520provided%2520is%2520either%2520invalid%2520or%2520does%2520not%2520match%2520the%"
- "2520sp"
- "ecified%2520API%2520key.%2522%257D%26authType%3DsignInWithRedirect";
- /** @var kInternalErrorString
- @brief The error message returned if there is an internal error within the web context.
- */
- static NSString *const kInternalErrorString =
- @"firebaseError%3D%257B%2522code%2522%253"
- "A%2522auth%252Finternal-error%2522%252C%2522message%2522%253A%2522Internal%2520error%2520.%"
- "252"
- "2%257D%26authType%3DsignInWithRedirect";
- /** @var kUnknownErrorString
- @brief The error message returned if an unknown error is returned from the web context.
- */
- static NSString *const kUnknownErrorString =
- @"firebaseError%3D%257B%2522code%2522%253A%2522auth%2"
- "52Funknown-error-id%2522%252C%2522message%2522%253A%2522The%2520OAuth%2520client%2520ID%"
- "2520pr"
- "ovided%2520is%2520either%2520invalid%2520or%2520does%2520not%2520match%2520the%2520specified%"
- "2"
- "520API%2520key.%2522%257D%26authType%3DsignInWithRedirect";
- @interface FIROAuthProviderTests : XCTestCase
- @end
- @implementation FIROAuthProviderTests {
- /** @var _mockBackend
- @brief The mock @c FIRAuthBackendImplementation.
- */
- id _mockBackend;
- /** @var _provider
- @brief The @c FIROAuthProvider instance under test.
- */
- FIROAuthProvider *_provider;
- /** @var _mockAuth
- @brief The mock @c FIRAuth instance associated with @c _provider.
- */
- id _mockAuth;
- /** @var _mockURLPresenter
- @brief The mock @c FIRAuthURLPresenter instance associated with @c _mockAuth.
- */
- id _mockURLPresenter;
- /** @var _mockApp
- @brief The mock @c FIRApp instance associated with @c _mockAuth.
- */
- id _mockApp;
- /** @var _mockOptions
- @brief The mock @c FIROptions instance associated with @c _mockApp.
- */
- id _mockOptions;
- /** @var _mockRequestConfiguration
- @brief The mock @c FIRAuthRequestConfiguration instance associated with @c _mockAuth.
- */
- id _mockRequestConfiguration;
- }
- - (void)setUp {
- [super setUp];
- _mockBackend = OCMProtocolMock(@protocol(FIRAuthBackendImplementation));
- [FIRAuthBackend setBackendImplementation:_mockBackend];
- _mockAuth = OCMClassMock([FIRAuth class]);
- _mockApp = OCMClassMock([FIRApp class]);
- OCMStub([_mockAuth app]).andReturn(_mockApp);
- _mockOptions = OCMClassMock([FIROptions class]);
- OCMStub([(FIRApp *)_mockApp options]).andReturn(_mockOptions);
- OCMStub([_mockOptions googleAppID]).andReturn(kFakeFirebaseAppID);
- _mockURLPresenter = OCMClassMock([FIRAuthURLPresenter class]);
- OCMStub([_mockAuth authURLPresenter]).andReturn(_mockURLPresenter);
- _mockRequestConfiguration = OCMClassMock([FIRAuthRequestConfiguration class]);
- OCMStub([_mockAuth requestConfiguration]).andReturn(_mockRequestConfiguration);
- OCMStub([_mockRequestConfiguration APIKey]).andReturn(kFakeAPIKey);
- }
- /** @fn testObtainingOAuthCredentialNoIDToken
- @brief Tests the correct creation of an OAuthCredential without an IDToken.
- */
- - (void)testObtainingOAuthCredentialNoIDToken {
- FIRAuthCredential *credential = [FIROAuthProvider credentialWithProviderID:kFakeProviderID
- accessToken:kFakeAccessToken];
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(OAuthCredential.accessToken, kFakeAccessToken);
- XCTAssertEqualObjects(OAuthCredential.provider, kFakeProviderID);
- XCTAssertNil(OAuthCredential.IDToken);
- }
- /** @fn testObtainingOAuthCredentialWithIDToken
- @brief Tests the correct creation of an OAuthCredential with an IDToken
- */
- - (void)testObtainingOAuthCredentialWithIDToken {
- FIRAuthCredential *credential = [FIROAuthProvider credentialWithProviderID:kFakeProviderID
- IDToken:kFakeIDToken
- accessToken:kFakeAccessToken];
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(OAuthCredential.accessToken, kFakeAccessToken);
- XCTAssertEqualObjects(OAuthCredential.provider, kFakeProviderID);
- XCTAssertEqualObjects(OAuthCredential.IDToken, kFakeIDToken);
- }
- /** @fn testObtainingOAuthProvider
- @brief Tests the correct creation of an FIROAuthProvider instance.
- */
- - (void)testObtainingOAuthProvider {
- id mockAuth = OCMClassMock([FIRAuth class]);
- id mockApp = OCMClassMock([FIRApp class]);
- OCMStub([mockAuth app]).andReturn(mockApp);
- id mockOptions = OCMClassMock([FIROptions class]);
- OCMStub([mockOptions clientID]).andReturn(kFakeClientID);
- OCMStub([mockOptions googleAppID]).andReturn(kFakeFirebaseAppID);
- OCMStub([(FIRApp *)mockApp options]).andReturn(mockOptions);
- FIROAuthProvider *OAuthProvider = [FIROAuthProvider providerWithProviderID:kFakeProviderID
- auth:mockAuth];
- XCTAssertTrue([OAuthProvider isKindOfClass:[FIROAuthProvider class]]);
- XCTAssertEqualObjects(OAuthProvider.providerID, kFakeProviderID);
- }
- /** @fn testGetCredentialWithUIDelegateWithClientID
- @brief Tests a successful invocation of @c getCredentialWithUIDelegte:completion:
- */
- - (void)testGetCredentialWithUIDelegateWithClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL = [NSMutableString
- stringWithString:[kFakeReverseClientID
- stringByAppendingString:kFakeRedirectURLResponseURL]];
- // Add fake OAuthResponse to callback.
- [redirectURL appendString:kFakeOAuthResponseURL];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider
- getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(error);
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(kFakeOAuthResponseURL,
- OAuthCredential.OAuthResponseURLString);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateUserCancellationWithClientID
- @brief Tests an unsuccessful invocation of @c getCredentialWithUIDelegte:completion: due to user
- cancelation.
- */
- - (void)testGetCredentialWithUIDelegateUserCancellationWithClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL = [NSMutableString
- stringWithString:[kFakeReverseClientID
- stringByAppendingString:kFakeRedirectURLResponseURL]];
- // Add fake OAuthResponse to callback.
- [redirectURL appendString:kFakeOAuthResponseURL];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(nil, [FIRAuthErrorUtils webContextCancelledErrorWithMessage:nil]);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(credential);
- XCTAssertEqual(FIRAuthErrorCodeWebContextCancelled, error.code);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateNetworkRequestFailedWithClientID
- @brief Tests an unsuccessful invocation of @c getCredentialWithUIDelegte:completion: due to a
- failed network request within the web context.
- */
- - (void)testGetCredentialWithUIDelegateNetworkRequestFailedWithClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL =
- [NSMutableString stringWithString:kFakeRedirectURLBaseErrorString];
- [redirectURL appendString:kNetworkRequestFailedErrorString];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(credential);
- XCTAssertEqual(FIRAuthErrorCodeWebNetworkRequestFailed, error.code);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateInternalErrorWithClientID
- @brief Tests an unsuccessful invocation of @c getCredentialWithUIDelegte:completion: due to an
- internal error within the web context.
- */
- - (void)testGetCredentialWithUIDelegateInternalErrorWithClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL =
- [NSMutableString stringWithString:kFakeRedirectURLBaseErrorString];
- // Add internal error string to redirect URL.
- [redirectURL appendString:kInternalErrorString];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(credential);
- XCTAssertEqual(FIRAuthErrorCodeWebInternalError, error.code);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateInvalidClientID
- @brief Tests an unsuccessful invocation of @c getCredentialWithUIDelegte:completion: due to an
- use of an invalid client ID.
- */
- - (void)testGetCredentialWithUIDelegateInvalidClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL =
- [NSMutableString stringWithString:kFakeRedirectURLBaseErrorString];
- // Add invalid client ID error to redirect URL.
- [redirectURL appendString:kInvalidClientIDString];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(credential);
- XCTAssertEqual(FIRAuthErrorCodeInvalidClientID, error.code);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateUnknownErrorWithClientID
- @brief Tests an unsuccessful invocation of @c getCredentialWithUIDelegte:completion: due to an
- unknown error.
- */
- - (void)testGetCredentialWithUIDelegateUnknownErrorWithClientID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL =
- [NSMutableString stringWithString:kFakeRedirectURLBaseErrorString];
- // Add unknown error to redirect URL.
- [redirectURL appendString:kUnknownErrorString];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(credential);
- XCTAssertEqual(FIRAuthErrorCodeWebSignInUserInteractionFailure,
- error.code);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateWithFirebaseAppID
- @brief Tests a successful invocation of @c getCredentialWithUIDelegte:completion:
- */
- - (void)testGetCredentialWithUIDelegateWithFirebaseAppID {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeEncodedFirebaseAppID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"appId"], kFakeFirebaseAppID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL = [NSMutableString
- stringWithString:[kFakeEncodedFirebaseAppID
- stringByAppendingString:kFakeRedirectURLResponseURL]];
- // Add fake OAuthResponse to callback.
- [redirectURL appendString:kFakeOAuthResponseURL];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider
- getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(error);
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(kFakeOAuthResponseURL,
- OAuthCredential.OAuthResponseURLString);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateWithFirebaseAppIDWhileClientIdPresent
- @brief Tests a successful invocation of @c getCredentialWithUIDelegte:completion: when the
- client ID is present in the plist file, but the encoded app ID is the registered custom URL
- scheme.
- */
- - (void)testGetCredentialWithUIDelegateWithFirebaseAppIDWhileClientIdPresent {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeEncodedFirebaseAppID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- OCMExpect([_mockBackend getProjectConfig:[OCMArg any] callback:[OCMArg any]])
- .andCallBlock2(
- ^(FIRGetProjectConfigRequest *request, FIRGetProjectConfigResponseCallback callback) {
- XCTAssertNotNil(request);
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- id mockGetProjectConfigResponse = OCMClassMock([FIRGetProjectConfigResponse class]);
- OCMStub([mockGetProjectConfigResponse authorizedDomains]).andReturn(@[
- kFakeAuthorizedDomain
- ]);
- callback(mockGetProjectConfigResponse, nil);
- });
- });
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"https");
- XCTAssertEqualObjects(presentURL.host, kFakeAuthorizedDomain);
- XCTAssertEqualObjects(presentURL.path, @"/__/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"appId"], kFakeFirebaseAppID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL = [NSMutableString
- stringWithString:[kFakeEncodedFirebaseAppID
- stringByAppendingString:kFakeRedirectURLResponseURL]];
- // Add fake OAuthResponse to callback.
- [redirectURL appendString:kFakeOAuthResponseURL];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider
- getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(error);
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(kFakeOAuthResponseURL,
- OAuthCredential.OAuthResponseURLString);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- /** @fn testGetCredentialWithUIDelegateUseEmulator
- @brief Tests a successful invocation of @c getCredentialWithUIDelegte:completion: when using the
- emulator.
- */
- - (void)testGetCredentialWithUIDelegateUseEmulator {
- id mockBundle = OCMClassMock([NSBundle class]);
- OCMStub(ClassMethod([mockBundle mainBundle])).andReturn(mockBundle);
- OCMStub([mockBundle objectForInfoDictionaryKey:@"CFBundleURLTypes"]).andReturn(@[
- @{@"CFBundleURLSchemes" : @[ kFakeReverseClientID ]}
- ]);
- OCMStub([mockBundle bundleIdentifier]).andReturn(kFakeBundleID);
- OCMStub([_mockOptions clientID]).andReturn(kFakeClientID);
- NSString *emulatorHostAndPort =
- [NSString stringWithFormat:@"%@:%@", kFakeEmulatorHost, kFakeEmulatorPort];
- OCMStub([_mockRequestConfiguration emulatorHostAndPort]).andReturn(emulatorHostAndPort);
- _provider = [FIROAuthProvider providerWithProviderID:kFakeProviderID auth:_mockAuth];
- id mockUIDelegate = OCMProtocolMock(@protocol(FIRAuthUIDelegate));
- // Expect view controller presentation by UIDelegate.
- OCMExpect([_mockURLPresenter presentURL:OCMOCK_ANY
- UIDelegate:mockUIDelegate
- callbackMatcher:OCMOCK_ANY
- completion:OCMOCK_ANY])
- .andDo(^(NSInvocation *invocation) {
- __unsafe_unretained id unretainedArgument;
- // Indices 0 and 1 indicate the hidden arguments self and _cmd.
- // `presentURL` is at index 2.
- [invocation getArgument:&unretainedArgument atIndex:2];
- NSURL *presentURL = unretainedArgument;
- XCTAssertEqualObjects(presentURL.scheme, @"http");
- XCTAssertEqualObjects(presentURL.host, kFakeEmulatorHost);
- XCTAssertEqualObjects([presentURL.port stringValue], kFakeEmulatorPort);
- XCTAssertEqualObjects(presentURL.path, @"/emulator/auth/handler");
- NSDictionary *params = [FIRAuthWebUtils dictionaryWithHttpArgumentsString:presentURL.query];
- XCTAssertEqualObjects(params[@"ibi"], kFakeBundleID);
- XCTAssertEqualObjects(params[@"clientId"], kFakeClientID);
- XCTAssertEqualObjects(params[@"apiKey"], kFakeAPIKey);
- XCTAssertEqualObjects(params[@"authType"], @"signInWithRedirect");
- XCTAssertNotNil(params[@"v"]);
- // `callbackMatcher` is at index 4
- [invocation getArgument:&unretainedArgument atIndex:4];
- FIRAuthURLCallbackMatcher callbackMatcher = unretainedArgument;
- NSMutableString *redirectURL = [NSMutableString
- stringWithString:[kFakeReverseClientID
- stringByAppendingString:kFakeRedirectURLResponseURL]];
- // Add fake OAuthResponse to callback.
- [redirectURL appendString:kFakeOAuthResponseURL];
- // Verify that the URL is rejected by the callback matcher without the event ID.
- XCTAssertFalse(callbackMatcher([NSURL URLWithString:redirectURL]));
- [redirectURL appendString:@"%26eventId%3D"];
- [redirectURL appendString:params[@"eventId"]];
- NSURLComponents *originalComponents = [[NSURLComponents alloc] initWithString:redirectURL];
- // Verify that the URL is accepted by the callback matcher with the matching event ID.
- XCTAssertTrue(callbackMatcher([originalComponents URL]));
- NSURLComponents *components = [originalComponents copy];
- components.query = @"https";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.host = @"badhost";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.path = @"badpath";
- XCTAssertFalse(callbackMatcher([components URL]));
- components = [originalComponents copy];
- components.query = @"badquery";
- XCTAssertFalse(callbackMatcher([components URL]));
- // `completion` is at index 5
- [invocation getArgument:&unretainedArgument atIndex:5];
- FIRAuthURLPresentationCompletion completion = unretainedArgument;
- dispatch_async(FIRAuthGlobalWorkQueue(), ^() {
- completion(originalComponents.URL, nil);
- });
- });
- XCTestExpectation *expectation = [self expectationWithDescription:@"callback"];
- [_provider
- getCredentialWithUIDelegate:mockUIDelegate
- completion:^(FIRAuthCredential *_Nullable credential,
- NSError *_Nullable error) {
- XCTAssertTrue([NSThread isMainThread]);
- XCTAssertNil(error);
- XCTAssertTrue([credential isKindOfClass:[FIROAuthCredential class]]);
- FIROAuthCredential *OAuthCredential = (FIROAuthCredential *)credential;
- XCTAssertEqualObjects(kFakeOAuthResponseURL,
- OAuthCredential.OAuthResponseURLString);
- [expectation fulfill];
- }];
- [self waitForExpectationsWithTimeout:kExpectationTimeout handler:nil];
- OCMVerifyAll(_mockBackend);
- }
- @end
- #endif
|