如何使用Mocha测试需要Node API的自定义模块? “无法读取未定义的属性'require'”

时间:2019-04-17 19:38:33

标签: electron mocha spectron

我正在构建一个电子应用程序。我正在使用Mocha和Spectron进行测试。摩卡在线上出错

const filebrowser = require("../src/filebrowser.js")

具体地说,当我尝试要求节点的fs模块时,它在第2行的filebrowser模块中失败了:

const {remote} = require('electron');
const fs = remote.require('fs');

我想这与Electron中的Main process / Renderer process范围有关,但是我不知道如何使其与Mocha一起正常工作。当模块依靠我通常通过电子远程模块访问的Node api时,如何正确地在Mocha测试文件中要求模块?

test / test.js(这是他们github页面上的spectron示例代码)。我通过package.json脚本(npm测试)使用“ mocha”命令运行它。请注意,我还没有为我的文件浏览器模块编写测试,它在require语句上失败。

const Application = require('spectron').Application
const assert = require('assert')
const electronPath = require('electron') // Require Electron from the binaries included in node_modules.
const path = require('path')
const filebrowser = require("../src/filebrowser.js")

describe('Application launch', function () {
  this.timeout(10000)

  beforeEach(function () {
    this.app = new Application({
      path: electronPath,

      // use the main.js file in package.json located 1 level above.
      args: [path.join(__dirname, '..')]
    })

    return this.app.start()
  })

  afterEach(function () {
    if (this.app && this.app.isRunning()) {
        return this.app.stop()
    }
  })

  it('shows an initial window', function () {
    return this.app.client.getWindowCount().then(function (count) {
        assert.equal(count, 1)
    })
  })
})

src / filebrowser.js

const {remote} = require('electron');
const fs = remote.require('fs');
const Path = require('path');

module.exports = {        
    //note that I would be calling fs functions in here, but I never get that far because the error happens on remote.require('fs')
    determineFiletype: function(currentDirectory, fileName){}
}

1 个答案:

答案 0 :(得分:1)

经过更多研究,看来Spectron无法做到这一点。 Spectron在Webdriver进程中启动,而不是在电子应用程序的主进程中启动。这适用于端到端测试,但不适用于常规模块测试。幸运的是,electron-mocha模块非常适合模块测试。它使您可以指定要从中运行测试的进程,以及要包含在主进程中的任何模块。最棒的是,它可以在Chromium中运行,因此您可以像平常一样访问应用程序的所有API。