--- id: 587d824f367417b2b2512c59 title: 使用 Chai-HTTP II 在 API 端上運行功能測試 challengeType: 2 forumTopicId: 301592 dashedName: run-functional-tests-on-api-endpoints-using-chai-http-ii --- # --description-- 請注意,本項目在[這個 Replit 項目](https://replit.com/github/freeCodeCamp/boilerplate-mochachai)的基礎上進行開發。你也可以從 [GitHub](https://repl.it/github/freeCodeCamp/boilerplate-mochachai) 上克隆。 # --instructions-- 在 `tests/2_functional-tests.js` 中,修改 `'Test GET /hello with your name'` 測試(`// #2`),對 `status` 和 `text` 斷言。 在查詢中發送 name,將 `?name=` 添加到路由。 端點響應 `'hello '`。 # --hints-- 應通過所有測試。 ```js (getUserInput) => $.get(getUserInput('url') + '/_api/get-tests?type=functional&n=1').then( (data) => { assert.equal(data.state, 'passed'); }, (xhr) => { throw new Error(xhr.responseText); } ); ``` 應測試 “res.status” 是否爲 200。 ```js (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); } ); ``` 應測試 “res.text“ 是否爲 ”hello Guest“。 ```js (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); } ); ``` # --solutions-- ```js /** Backend challenges don't need solutions, because they would need to be tested against a full working project. Please check our contributing guidelines to learn more. */ ```