简体   繁体   English

用Jest单元测试JS脚本:我可以模拟ES6类

[英]Unit Testing a JS script with Jest: Can I mock an ES6 class

when I import a class from a module 当我从模块导入类时

const { OAuth2Client } = require('google-auth-library');

How can I mock it ? 我该如何嘲笑它?

jest.mock("google-auth-library");  // not mocking directly OAuth2Client

jest.mock("google-auth-library", OAuth2Client ) // is incorrect

And if I add the online implementation, I don't have the class name 如果我添加在线实施,则没有类名

jest.mock("google-auth-library", () => {
   return jest.fn().mockImplementation(() => {
      return {
        setCredentials: setCredentialsMock,
        getAccessToken: getAccessTokenMock
      }
   })
});

so I cannot call the constructor : 所以我不能调用构造函数:

const oAuth2Client = new OAuth2Client({...});

Feedback welcome 欢迎反馈

UPDATE 1 -- 更新1-

Here as the most important coding from google-auth-library-nodejs related to my issue 这是google-auth-library-nodejs中与我的问题相关的最重要的编码

google-auth-library-nodejs module google-auth-library-nodejs模块

======================================= /src/auth/index.ts ... export {.., OAuth2Client,...} from './auth/oauth2client'; ====================================== /src/auth/index.ts ...从'./auth/oauth2client'导出{..,OAuth2Client,...}; ... const auth = new GoogleAuth(); ... const auth = new GoogleAuth(); export {auth, GoogleAuth}; 导出{auth,GoogleAuth};

    =======================================
    /src/auth/oauth2client.js

    import {AuthClient} from './authclient';
    ...
    export class OAuth2Client extends AuthClient {
      ....
      constructor(clientId?: string, clientSecret?: string, redirectUri?: string);
      constructor(
         ...
        super();
        ...
        this._clientId = opts.clientId;
        this._clientSecret = opts.clientSecret;
        this.redirectUri = opts.redirectUri;
        ...
      }
      ...
      getAccessToken(): Promise<GetAccessTokenResponse>;
      ...
    }

======================================= /src/auth/authclient.ts ====================================== /src/auth/authclient.ts

    import {Credentials} from './credentials';
    ...
    export abstract class AuthClient extends EventEmitter {
       ...
      setCredentials(credentials: Credentials) {
        this.credentials = credentials;
      }
    }

======================================= /src/auth/credentials.js ===================================== / src / auth / credentials.js

    export interface Credentials {
      refresh_token?: string|null;
      expiry_date?: number|null;
      access_token?: string|null;
      token_type?: string|null;
      id_token?: string|null;
    }
    ...

SOLVED ... using the following specs : 解决...使用以下规格:

jest.mock("google-auth-library");
const { OAuth2Client } = require('google-auth-library');

const setCredentialsMock = jest.fn();
const getAccessTokenMock = jest.fn();

OAuth2Client.mockImplementation(() => {
  return {
    setCredentials: setCredentialsMock,
    getAccessToken: getAccessTokenMock
  }
});

import index from "../index.js"

describe('testing...', () => { 
  it("should setCredentials correctly....", () => {
    // GIVEN
    const oAuth2Client = new OAuth2Client("clientId", "clientSecret", "redirectUri");
    // WHEN
    oAuth2Client.setCredentials({ refresh_token: "aRefreshToken"});
    // THEN
    expect(setCredentialsMock).toHaveBeenCalledWith({ refresh_token: "aRefreshToken" });
  });
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM