freeCodeCamp/curriculum/challenges/chinese/06-information-security-and.../quality-assurance-and-testi.../run-functional-tests-on-api...

1.9 KiB
Raw Blame History

id title challengeType videoUrl localeTitle
587d824f367417b2b2512c59 Run Functional Tests on API Endpoints using Chai-HTTP II 2 使用Chai-HTTP II在API端点上运行功能测试

Description

提醒一下,这个项目是基于Glitch的以下入门项目构建的,或者是从GitHub克隆的。替换assert.fail。测试状态和text.response。让测试通过。在追加的查询中发送您的姓名吗name = ,端点以'你好'回应 ”。

Instructions

Tests

tests:
  - text: 所有测试都应该通过
    testString: getUserInput => $.get(getUserInput('url') + '/_api/get-tests?type=functional&n=1').then(data => { assert.equal(data.state,'passed'); }, xhr => { throw new Error(xhr.responseText); })
  - text: 你应该测试'res.status'== 200
    testString: getUserInput => $.get(getUserInput('url') + '/_api/get-tests?type=functional&n=1').then(data => { assert.equal(data.assertions[0].method, 'equal'); assert.equal(data.assertions[0].args[0], 'res.status'); assert.equal(data.assertions[0].args[1], '200');}, xhr => { throw new Error(xhr.responseText); })
  - text: 你应该测试'res.text'=='你好客人'
    testString: getUserInput => $.get(getUserInput('url') + '/_api/get-tests?type=functional&n=1').then(data => { assert.equal(data.assertions[1].method, 'equal'); assert.equal(data.assertions[1].args[0], 'res.text'); assert.match(data.assertions[1].args[1], /hello [\w\d_-]/);}, xhr => { throw new Error(xhr.responseText); })

Challenge Seed

Solution

// solution required