私はNodejsを使って小さなライブラリを構築しています。私はmochaとchaiでユニットテストをしています。ユニットテストmocha chaiでの引数
私の問題は、関数を偵察しようとしたときに起こり、いくつかのパラメータで呼び出されたと思います。
実際にログを記録すると、関数に渡されるパラメータは良好です。しかし、テストは何度も何度も失敗しています。ここで
import callback from './callback'
/**
* Connect the express routes with the injector directly inside of the app
* @param {Object} app An express application, or an application that has the same api
* @param {Object} injector An injector with the interface of deepin module
* @param {Object} parser An object with the interface of route-parser module
*/
const expressKonnector = (app, injector, parser) => {
const routes = parser.parseRoutes()
for (const route of routes) {
app[route.method](route.pattern, callback(injector, route))
}
}
export default expressKonnector
コールバックに依存するモジュールです:ここで
は、私がテストをM何import callbackRender from './callbackRender'
import { HttpRequest } from 'default-http'
export default (injector, route) => {
const ctrl = injector.get(route.controller)
return (request, response) => {
const result = ctrl[route.controllerMethod](new HttpRequest())
if (result.then) {
return result.then(res => callbackRender(res, response))
} else {
callbackRender(result, response)
}
}
}
そして、ここで失敗するテストです:私がするときは、次のスタックを持って
it('should call the app.get method with pattern /users/:idUser and a callback',() => {
const spy = chai.spy.on(app, 'get')
const routes = routeParser.parseRoutes()
expressKonnector(app, injector, routeParser)
expect(spy).to.have.been.called.with('/users/:idUser', callback(injector, routes[1]))
})
テストが失敗する:
ExpressKonnector ExpressKonnector should call the app.get method with pattern /users/:idUser and a callback:
AssertionError: expected { Spy, 3 calls } to have been called with [ '/users/:idUser', [Function] ]
at Context.<anonymous> (C:/Project/javascript/express-konnector/src/test/expressKonnector.spec.js:176:43)
あなたはより詳細な情報を持っている、または単に実行したい場合、あなたはこのgithubの(DEVブランチ)上のモジュールを持つことができ、 "NPM & & NPM testコマンドをインストール":
https://github.com/Skahrz/express-konnector