| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- // Copyright 2020 Google LLC
- //
- // 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 Foundation
- @testable import FirebaseAuth
- let expectationTimeout: TimeInterval = 2
- class AuthBackendImplementationMock: NSObject, FIRAuthBackendImplementation {}
- extension AuthBackendImplementationMock {
- func createAuthURI(_ request: FIRCreateAuthURIRequest,
- callback: @escaping FIRCreateAuthURIResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func getAccountInfo(_ request: FIRGetAccountInfoRequest,
- callback: @escaping FIRGetAccountInfoResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func getProjectConfig(_ request: FIRGetProjectConfigRequest,
- callback: @escaping FIRGetProjectConfigResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func setAccountInfo(_ request: FIRSetAccountInfoRequest,
- callback: @escaping FIRSetAccountInfoResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func verifyAssertion(_ request: FIRVerifyAssertionRequest,
- callback: @escaping FIRVerifyAssertionResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func verifyCustomToken(_ request: FIRVerifyCustomTokenRequest,
- callback: @escaping FIRVerifyCustomTokenResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func verifyPassword(_ request: FIRVerifyPasswordRequest,
- callback: @escaping FIRVerifyPasswordResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func emailLinkSignin(_ request: FIREmailLinkSignInRequest,
- callback: @escaping FIREmailLinkSigninResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func secureToken(_ request: FIRSecureTokenRequest,
- callback: @escaping FIRSecureTokenResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func getOOBConfirmationCode(_ request: FIRGetOOBConfirmationCodeRequest,
- callback: @escaping FIRGetOOBConfirmationCodeResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func signUpNewUser(_ request: FIRSignUpNewUserRequest,
- callback: @escaping FIRSignupNewUserCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func deleteAccount(_ request: FIRDeleteAccountRequest, callback: @escaping FIRDeleteCallBack) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func sendVerificationCode(_ request: FIRSendVerificationCodeRequest,
- callback: @escaping FIRSendVerificationCodeResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func verifyPhoneNumber(_ request: FIRVerifyPhoneNumberRequest,
- callback: @escaping FIRVerifyPhoneNumberResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func verifyClient(_ request: FIRVerifyClientRequest,
- callback: @escaping FIRVerifyClientResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func revokeToken(_ request: FIRRevokeTokenRequest,
- callback: @escaping FIRRevokeTokenResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func signIn(withGameCenter request: FIRSignInWithGameCenterRequest,
- callback: @escaping FIRSignInWithGameCenterResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func getRecaptchaConfig(_ request: FIRGetRecaptchaConfigRequest,
- callback: @escaping FIRGetRecaptchaConfigResponseCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func resetPassword(_ request: FIRResetPasswordRequest,
- callback: @escaping FIRResetPasswordCallback) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- func call(with request: FIRAuthRPCRequest, response: FIRAuthRPCResponse,
- callback: @escaping (Error?) -> Void) {
- fatalError("You need to implement \(#function) in your mock.")
- }
- }
|