firebase_auth_mocks 0.1.3 copy "firebase_auth_mocks: ^0.1.3" to clipboard
firebase_auth_mocks: ^0.1.3 copied to clipboard

outdated

Mocks for Firebase Auth. Use this package with `google_sign_in_mocks` to write unit tests involving Firebase Authentication.

Mocks for Firebase Auth. Use this package with google_sign_in_mocks to write unit tests involving Firebase Authentication.

Usage #

A simple usage example:

import 'package:firebase_auth_mocks/firebase_auth_mocks.dart';
import 'package:google_sign_in_mocks/google_sign_in_mocks.dart';

main() {
    // Mock sign in with Google.
    final googleSignIn = MockGoogleSignIn();
    final signinAccount = await googleSignIn.signIn();
    final googleAuth = await signinAccount.authentication;
    final AuthCredential credential = GoogleAuthProvider.getCredential(
      accessToken: googleAuth.accessToken,
      idToken: googleAuth.idToken,
    );
    // Sign in.
    final auth = MockFirebaseAuth();
    final result = await auth.signInWithCredential(credential);
    final user = await result.user;
    print(user.displayName);
}

Features #

  • MockFirebaseAuth supports:
    • instantiating in a signed-in state or not: MockFirebaseAuth(signedIn: true/false).
    • firing events on sign-in to onAuthStateChanged.
    • signInWithCredential, signInWithEmailAndPassword, signInWithEmailAndLink or signInWithCustomToken signs in.
    • currentUser
  • AuthResult contains a hard-coded FirebaseUser.
  • FirebaseUser supports displayName, uid and getIdToken.
  • IdTokenResult supports token.

Features and bugs #

Please file feature requests and bugs at the issue tracker.

89
likes
0
pub points
94%
popularity

Publisher

verified publisherwafrat.com

Mocks for Firebase Auth. Use this package with `google_sign_in_mocks` to write unit tests involving Firebase Authentication.

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

firebase_auth, flutter, meta, mockito

More

Packages that depend on firebase_auth_mocks