EmailPasswordTests.swift 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*
  2. * Copyright 2020 Google LLC
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. import FirebaseAuth
  17. import Foundation
  18. import XCTest
  19. class EmailPasswordTests: TestsBase {
  20. /// ** The testing email address for testCreateAccountWithEmailAndPassword. */
  21. let kNewEmailToCreateUser = "user+email_new_user@example.com"
  22. /// ** The testing email address for testSignInExistingUserWithEmailAndPassword. */
  23. let kExistingEmailToSignIn = "user+email_existing_user@example.com"
  24. func testCreateAccountWithEmailAndPassword() {
  25. let auth = Auth.auth()
  26. let expectation = self.expectation(description: "Created account with email and password.")
  27. auth.createUser(withEmail: kNewEmailToCreateUser, password: "password") { result, error in
  28. if let error = error {
  29. print("createUserWithEmail has error: \(error)")
  30. }
  31. expectation.fulfill()
  32. }
  33. waitForExpectations(timeout: TestsBase.kExpectationsTimeout)
  34. XCTAssertEqual(auth.currentUser?.email, kNewEmailToCreateUser, "Expected email doesn't match")
  35. deleteCurrentUser()
  36. }
  37. @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
  38. func testCreateAccountWithEmailAndPasswordAsync() async throws {
  39. let auth = Auth.auth()
  40. try await auth.createUser(withEmail: kNewEmailToCreateUser, password: "password")
  41. XCTAssertEqual(auth.currentUser?.email, kNewEmailToCreateUser, "Expected email doesn't match")
  42. try await deleteCurrentUserAsync()
  43. }
  44. func testSignInExistingUserWithEmailAndPassword() {
  45. let auth = Auth.auth()
  46. let expectation = self
  47. .expectation(description: "Signed in existing account with email and password.")
  48. auth.signIn(withEmail: kExistingEmailToSignIn, password: "password") { user, error in
  49. XCTAssertNil(error)
  50. XCTAssertEqual(auth.currentUser?.email,
  51. self.kExistingEmailToSignIn,
  52. "Signed user does not match request.")
  53. expectation.fulfill()
  54. }
  55. waitForExpectations(timeout: TestsBase.kExpectationsTimeout)
  56. }
  57. @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
  58. func testSignInExistingUserWithEmailAndPasswordAsync() async throws {
  59. let auth = Auth.auth()
  60. try await auth.signIn(withEmail: kExistingEmailToSignIn, password: "password")
  61. XCTAssertEqual(auth.currentUser?.email,
  62. kExistingEmailToSignIn,
  63. "Signed user does not match request.")
  64. }
  65. }