使用Node / Express + Mongo制作API。
我正在编写一些单元测试,我观察到我是否尝试/profile/1
_id=1
(我让mongo默认设置ID,因此我不能_id=1
)我收到了这个错误
MongooseError: Cast to ObjectId failed for value "1" at path "_id"
我以为我会有一个空对象用户。
function getProfile(req, res) {
const userId = req.params.userId
User.findById(userId, "-password", (err, user) => {
if (err) {
console.log(err);
res.status(400)
res.json({
success: false,
err
})
res.end()
return
}
if (!user) {
res.status(404)
res.json({
success: false,
message: `Cannot find an User with the userId: ${userId}`
})
res.end()
return
}
res.json({
success: true,
user: user
})
res.end()
return
})
}
我的测试:
describe('Test /profile route', () => {
it('shouldn\'t find Joe Doe\'s profile with a wrong ID\n', (done) => {
chai.request(server)
.get(`/profile/1`)
.end((err, res) => {
expect(res).to.have.status(404)
done()
})
})
我以为我会有一个错误404(如果,我知道它不是正确的代码错误,只是一个快速的方式让我看到我的测试去哪里)但我得到了400 - >意思是错误就是回归。
我阅读了mongoose文档,但我并没有真正看到他们用不同的方法解释返回值。
答案 0 :(得分:3)
问题在于' 1'不是有效的猫鼬对象ID。因此,它试图比较不同的类型。
尝试将其强制转换为对象ID,如下所示:
userId = mongoose.Types.ObjectId(userId)
然后运行您的查询
User.findById(userId, "-password", (err, user) => { .... });