【发布时间】:2019-03-21 09:46:16
【问题描述】:
如何在 expressJS 应用程序中定义 get() 路由以进行简单的单元测试?
所以作为第一步,我将get() 的函数移到了一个自己的文件中:
index.js
const express = require('express')
const socketIo = require('socket.io')
const Gpio = require('pigpio').Gpio
const app = express()
const server = http.createServer(app)
const io = socketIo(server)
const setStatus = require('./lib/setStatus.js')
app.locals['target1'] = new Gpio(1, { mode: Gpio.OUTPUT })
app.get('/set-status', setStatus(app, io))
lib/setStatus.js
const getStatus = require('./getStatus.js')
module.exports = (app, io) => {
return (req, res) => {
const { id, value } = req.query // id is in this example '1'
req.app.locals['target' + id].pwmWrite(value))
getStatus(app, io)
res.send({ value }) // don't need this
}
}
lib/getStatus.js
const pins = require('../config.js').pins
module.exports = async (app, socket) => {
const res = []
pins.map((p, index) => {
res.push(app.locals['target' + (index + 1)].getPwmDutyCycle())
})
socket.emit('gpioStatus', res)
}
所以首先我不太确定,如果我正确拆分代码 - 考虑进行单元测试。
对我来说,调用/set-status?id=1&value=50 唯一要做的就是调用pwmWrite() 获取一个(我猜的)对象,该对象由new Gpio 定义并存储在expressJS 的locals 中。
第二个:如果这应该是正确的方法,我不明白如何编写一个 jestJS 单元测试来检查 pwmWrite 是否已被调用 - 这是一个异步函数内部。
这是我的尝试,但我无法测试 pwmWrite 的内部调用:
test('should call pwmWrite() and getStatus()', async () => {
const app = {}
const io = { emit: jest.fn() }
const req = {
app: {
locals: {
target1: { pwmWrite: jest.fn() }
}
}
}
}
expect.assertions(1)
expect(req.app.locals.target1.pwmWrite).toHaveBeenCalled()
await expect(getStatus(app, io)).toHaveBeenCalled()
})
【问题讨论】:
-
好吧,
app.locals['target1'].pwmWrite = jest.fn()? -
代码库似乎没问题,不清楚您的测试在哪里实际调用
setStatus?
标签: javascript unit-testing express jestjs