EmailPasswordTests.swift 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. self.deleteCurrentUser()
  36. }
  37. func testSignInExistingUserWithEmailAndPassword() {
  38. let auth = Auth.auth()
  39. let expectation = self.expectation(description: "Signed in existing account with email and password.")
  40. auth.signIn(withEmail: kExistingEmailToSignIn, password: "password") { user, error in
  41. XCTAssertNil(error)
  42. XCTAssertEqual(auth.currentUser?.email,
  43. self.kExistingEmailToSignIn,
  44. "Signed user does not match request.")
  45. expectation.fulfill()
  46. }
  47. waitForExpectations(timeout:TestsBase.kExpectationsTimeout)
  48. }
  49. }