我想用JEST测试我的Express API端点。
下面是我的Express API代码。
routs.ts
// Get release notes
routes.get('/release-notes', (req, res) => {
request.get({
url: 'https://host.com/rest/api/content/search?cql=parent=209266565',
json: true
})
.pipe(res);
});
export default routes;
上面的代码将返回数据,但是我想用Mock来测试API,而无需发出API请求
所以我手动创建了一个模拟响应,并需要使用它进行验证。
Mock.ts
export const releaseNotesMockData = {
'results': [
{
'id': '206169942',
'type': 'page',
'status': 'current',
'title': 'Release 2018-10-18 Full Flow CM00294965',
}]
};
使用以下代码,我找到了真正的API,测试通过了
describe('Test a 200', () => {
test('It should respond with a 200 status', async () => {
const response = await request(app).get('/release-notes');
expect(response.statusCode).toBe(200);
});
});
问题是,我不想使用真正的API进行测试,而是想使用Mocks进行测试。
下面是我尝试过的代码,它不起作用。请帮助
routs.test.ts
describe('api test', () => {
const url = '/release-notes';
it('user GET should be 200', async () => {
const result = await http({
url,
method: 'get'
});
expect(result).toBe('200');
});
});