Search code examples
javascriptangularjasminekarma-jasmineangularfire2

Test for rejected promise with Jasmine


In my Angular2 app which uses AngularFire2, I have an AuthService which tries to authenticate anonymously with Firebase.

I am trying to write a test that expects AngularFireAuth's signInAnonymously to return a rejected promise; for authState to be null and an error to be thrown.

I an new to Jasmine and testing in general but I think I may need to be using asynchronous tests but I'm getting quite stuck.

Here is a simplified AuthService:

import { Injectable } from '@angular/core';

import { AngularFireAuth } from 'angularfire2/auth';
import * as firebase from 'firebase/app';
import { Observable } from 'rxjs/Rx';

@Injectable()
export class AuthService {
  private authState: firebase.User;

  constructor(private afAuth: AngularFireAuth) { this.init(); }

  private init (): void {
    this.afAuth.authState.subscribe((authState: firebase.User) => {
      if (authState === null) {
        this.afAuth.auth.signInAnonymously()
          .then((authState) => {
            this.authState = authState;
          })
          .catch((error) => {
            throw new Error(error.message);
          });
      } else {
        this.authState = authState;
      }
    }, (error) => {
      throw new Error(error.message);
    });
  }
}

And here are my test specs:

import { TestBed, inject } from '@angular/core/testing';

import { AngularFireAuth } from 'angularfire2/auth';
import 'rxjs/add/observable/of';
import { Observable } from 'rxjs/Rx';

import { AuthService } from './auth.service';
import { environment } from '../environments/environment';

describe('AuthService', () => {
  const mockAngularFireAuth: any = {
    auth: jasmine.createSpyObj('auth', {
      'signInAnonymously': Promise.resolve('foo'),
      // 'signInWithPopup': Promise.reject(),
      // 'signOut': Promise.reject()
    }),
    authState: Observable.of(null)
  };

  beforeEach(() => {
    TestBed.configureTestingModule({
      providers: [
        { provide: AngularFireAuth, useValue: mockAngularFireAuth },
        { provide: AuthService, useClass: AuthService }
      ]
    });
  });

  it('should be created', inject([ AuthService ], (service: AuthService) => {
    expect(service).toBeTruthy();
  }));

  //
  //
  //
  //
  //

  describe('when we can’t authenticate', () => {
    beforeEach(() => {
      mockAngularFireAuth.auth.signInAnonymously.and.returnValue(Promise.reject('bar'));
    });

    it('should thow', inject([ AuthService ], (service: AuthService) => {
      expect(mockAngularFireAuth.auth.signInAnonymously).toThrow();
    }));
  });

  //
  //
  //
  //
  //

});

Thank you for your help!


Solution

  • It turns out I was mocking mockAngularFireAuth correctly. I needed to reject mockAngularFireAuth.auth signInAnonymously()'s promise with an error and expect it to be caught, a la:

    import { TestBed, async, inject } from '@angular/core/testing';
    
    import { AngularFireAuth } from 'angularfire2/auth';
    import 'rxjs/add/observable/of';
    import { Observable } from 'rxjs/Rx';
    
    import { AuthService } from './auth.service';
    import { MockUser} from './mock-user';
    import { environment } from '../environments/environment';
    
    describe('AuthService', () => {
      // An anonymous user
      const authState: MockUser = {
        displayName: null,
        isAnonymous: true,
        uid: '17WvU2Vj58SnTz8v7EqyYYb0WRc2'
      };
    
      const mockAngularFireAuth: any = {
        auth: jasmine.createSpyObj('auth', {
          'signInAnonymously': Promise.reject({
            code: 'auth/operation-not-allowed'
          }),
          // 'signInWithPopup': Promise.reject(),
          // 'signOut': Promise.reject()
        }),
        authState: Observable.of(authState)
      };
    
      beforeEach(() => {
        TestBed.configureTestingModule({
          providers: [
            { provide: AngularFireAuth, useValue: mockAngularFireAuth },
            { provide: AuthService, useClass: AuthService }
          ]
        });
      });
    
      it('should be created', inject([ AuthService ], (service: AuthService) => {
        expect(service).toBeTruthy();
      }));
    
      describe('can authenticate anonymously', () => {
        describe('AngularFireAuth.auth.signInAnonymously()', () => {
          it('should return a resolved promise', () => {
            mockAngularFireAuth.auth.signInAnonymously()
              .then((data: MockUser) => {
                expect(data).toEqual(authState);
              });
          });
        });
      });
    
      describe('can’t authenticate anonymously', () => {
        describe('AngularFireAuth.auth.signInAnonymously()', () => {
          it('should return a rejected promise', () => {
            mockAngularFireAuth.auth.signInAnonymously()
              .catch((error: { code: string }) => {
                expect(error.code).toEqual('auth/operation-not-allowed');
              });
          });
        });
      });
      …
    });