EmailPasswordTests.swift 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  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 Foundation
  17. import FirebaseAuth
  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. #if compiler(>=5.5.2) && canImport(_Concurrency)
  38. @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
  39. func testCreateAccountWithEmailAndPasswordAsync() async throws {
  40. let auth = Auth.auth()
  41. try await auth.createUser(withEmail: kNewEmailToCreateUser, password: "password")
  42. XCTAssertEqual(auth.currentUser?.email, kNewEmailToCreateUser, "Expected email doesn't match")
  43. try await deleteCurrentUserAsync()
  44. }
  45. #endif
  46. func testSignInExistingUserWithEmailAndPassword() {
  47. let auth = Auth.auth()
  48. let expectation = self
  49. .expectation(description: "Signed in existing account with email and password.")
  50. auth.signIn(withEmail: kExistingEmailToSignIn, password: "password") { user, error in
  51. XCTAssertNil(error)
  52. XCTAssertEqual(auth.currentUser?.email,
  53. self.kExistingEmailToSignIn,
  54. "Signed user does not match request.")
  55. expectation.fulfill()
  56. }
  57. waitForExpectations(timeout: TestsBase.kExpectationsTimeout)
  58. }
  59. #if compiler(>=5.5.2) && canImport(_Concurrency)
  60. @available(iOS 13, tvOS 13, macOS 10.15, macCatalyst 13, watchOS 7, *)
  61. func testSignInExistingUserWithEmailAndPasswordAsync() async throws {
  62. let auth = Auth.auth()
  63. try await auth.signIn(withEmail: kExistingEmailToSignIn, password: "password")
  64. XCTAssertEqual(auth.currentUser?.email,
  65. kExistingEmailToSignIn,
  66. "Signed user does not match request.")
  67. }
  68. #endif
  69. }