简体   繁体   中英

Mocking process methods in Jest

I have electron-util.js file I want to cover with tests:

const isElectron = "electron" in process.versions;

const isUsingAsar =
  isElectron &&
  process.mainModule &&
  process.mainModule.filename.includes("app.asar");

export const fixPathForAsarUnpack = path =>
  isUsingAsar ? path.replace("app.asar", "app.asar.unpacked") : path;

In order to test fixPathForAsarUnpack method I need to mock versions and mainModule from process . I tried to do it like this:

import { fixPathForAsarUnpack } from "../src/electron-util";

test("fixes path for Electron", () => {
  process.versions = {
    electron: "0.0.0",
    mainModule: {
      filename: "/app.asar/index.html"
    }
  };

  const path =
    "/Users/relix/My.app/Contents/Resources/app.asar/node_modules/foo/binary";

  expect(fixPathForAsarUnpack(path)).toBe(
    "/Users/relix/My.app/Contents/Resources/app.asar.unpack/node_modules/foo/binary"
  );
});

But it throws an error:

  ● fixes path for Electron

    TypeError: Cannot assign to read only property 'versions' of object '[object process]'

      4 |
      5 | test("fixes path for Electron", () => {
    > 6 |   process.versions = {
        |   ^
      7 |     electron: "0.0.0",
      8 |     mainModule: {
      9 |       filename:

      at Object.<anonymous>.test (__test__/electron-util.test.js:6:3)

What am I doing wrong, how should I mock process object?

You should mock the process in this way:

const originalProcess = process
global.proces = {...originalProcess, version: "your code here"}
// do the test
// ...
// restore the original process object for next tests
global.process = originalProcess

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

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