如何测试Firebase登录操作(反应/笑话)

Leo*_*ban 6 javascript unit-testing firebase reactjs jestjs

我正在尝试创建一个测试,该测试将查看signIn是否已被调用,然后继续进行successand error函数测试。

我在firebase-mock这里使用软件包:https : //github.com/soumak77/firebase-mock/blob/master/tutorials/auth/authentication.md

以下是我的登录操作

// Sign in action
export const signIn = (email, password, redirectUrl = ROUTEPATH_DEFAULT_PAGE) => (dispatch) => {
  dispatch({ type: USER_LOGIN_PENDING });

  firebase
    .then(auth => auth.signInWithEmailAndPassword(email, password))
    .catch((e) => {
      console.error('actions/Login/signIn', e);
      // Register a new user
      if (e.code === LOGIN_USER_NOT_FOUND) {
        dispatch(push(ROUTEPATH_FORBIDDEN));
        dispatch(toggleNotification(true, e.message, 'error'));
      } else {
        dispatch(displayError(true, e.message));
        setTimeout(() => {
          dispatch(displayError(false, ''));
        }, 5000);
        throw e;
      }
    })
    .then(res => res.getIdToken())
    .then((idToken) => {
      if (!idToken) {
        dispatch(displayError(true, 'Sorry, there was an issue with getting your token.'));
      }

      dispatch(onCheckAuth(email));
      dispatch(push(redirectUrl));
    });
};
Run Code Online (Sandbox Code Playgroud)

我的测试:

import configureMockStore from 'redux-mock-store';
import thunk from 'redux-thunk';
import { MockFirebase } from 'firebase-mock';

// Login Actions
import { onCheckAuth, signIn } from 'actions';

// String Constants
import { LOGIN_USER_NOT_FOUND } from 'copy';

const middlewares = [thunk];
const mockStore = configureMockStore(middlewares);

let mockProps;

describe('login actions', () => {
  // console.log('MockFirebase', MockFirebase);
  // console.log('onCheckAuth', onCheckAuth);
  let mockAuth;

  beforeEach(() => {
    mockAuth = new MockFirebase();
    console.log('mockAuth: ==>', mockAuth);

    mockProps = {
      signIn: jest.fn(),
      signOut: jest.fn(),
      checkAuth: jest.fn(),
      createUser: jest.fn(),
      resetPassword: jest.fn(),
      verifyEmail: jest.fn()
    };
  });

  it('signIn should be called', () => {
    const user = {
      email: 'first.last@yum.com',
      password: 'abd123'
    };

    signIn(user.email, user.password);
    console.log('signIn', signIn);

    expect(signIn).toHaveBeenCalled();
  });
});
Run Code Online (Sandbox Code Playgroud)

错误信息

失败client / actions / Login / index.test.js吗?登录操作›应该调用signIn

Expect(jest.fn())[。not] .toHaveBeenCalled()

jest.fn()值必须是模拟函数或间谍。收到:功能:[功能登录]

at Object.<anonymous> (client/actions/Login/index.test.js:71:29)
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明

Leo*_*ban 5

我错误地模拟了Firebase服务功能,以下是我可以使用的代码,但是在这里遇到了一个新问题:如何测试是否在jest测试中调用了thenable中的代码?

以下测试通过了,但是不确定其中的代码store.dispatch是否可用...

// Mock all the exports in the module.
function mockFirebaseService() {
  return new Promise(resolve => resolve(true));
}

// Since "services/firebase" is a dependency on this file that we are testing,
// we need to mock the child dependency.
jest.mock('services/firebase', () => new Promise(resolve => resolve(true)));

describe('login actions', () => {
  let store;

  beforeEach(() => {
    store = mockStore({});
  });

  it('signIn should call firebase', () => {
    const user = {
      email: 'first.last@yum.com',
      password: 'abd123'
    };

    store.dispatch(signIn(user.email, user.password)).then(() => {
      expect(mockFirebaseService).toHaveBeenCalled();
    });
  });
});
Run Code Online (Sandbox Code Playgroud)