我正在尝试为使用meteor编写的API端点创建测试。我正在使用茉莉和速度。它打算在同一个项目中运行,这就是我使用它们的原因。 当我尝试运行测试并检查端点中的数据时,问题就出现了。我在mongodb副本中有一个bootstraped数据集,当我发布它时,它与在本地应用程序中引导的那个不匹配。 这是示例代码:
Jasmine.onTest(function () {
describe('RestApi.MyMethod', function () {
it('Expects to fail because it lacks of valid parameters', function () { /*but it fails because of the user can't be found in the real app*/
var response = "";
var userId = Meteor.users.findOne({"username": "MyUser"})._id;
try {
response = Meteor.http.call(
"POST",
"http://localhost:3000/api/myMethod",
{
data: {
"userId":
},
timeout: 1000
}
);
} catch(error){
expect(error.message.indexOf("failed [400]")).toBeGreaterThan(-1);
expect(error.message.indexOf("Invalid parameters provided")).toBeGreaterThan(-1);
}
expect(response).toBe('');
});
});
});
我认为它应该指向镜子的休息api。有没有办法做到这一点?我将localhost:3000更改为localhost:5000,但它无法正常工作。我该如何检查镜像端口? 提前谢谢!
答案 0 :(得分:3)
使用Meteor.absoluteUrl
而非硬编码端口。
在您的代码中,执行以下操作:
response = Meteor.http.call(
"POST",
Meteor.absoluteUrl("api/myMethod"), // this bit has changed.
{
data: {
"userId":
},
timeout: 1000
}
);
当测试运行时,您的测试镜将动态生成绝对URL。