rest api测试工具frisbyjs

安装:

npm install frisby --save-dev
npm install --save-dev jest

创建测试文件


mkdir -p __tests__/api
touch __tests__/api/api_spec.js

定义api_spec.js测试内容


const frisby = require('frisby');
const Joi = frisby.Joi; // Frisby exports Joi for convenience on type assersions


it ('should return a status of 200', function () {
  return frisby
    .get('https://jsonfeed.org/feed.json')
    .expect('status', 200)
    .expect('json', 'version', 'https://jsonfeed.org/version/1')
    .expect('json', 'title', 'JSON Feed')
    .expect('jsonTypes', 'items.*', { // Assert *each* object in 'items' array
      'id': Joi.string().required(),
      'url': Joi.string().uri().required(),
      'title': Joi.string().required(),
      'date_published': Joi.date().iso().required(),
    });
});

执行测试

jest

参考文档:
https://docs.frisbyjs.com/introduction/readme

喜欢关注一下,不喜欢点评一下
原文地址:https://www.cnblogs.com/chengmuyu/p/14870070.html