2018-10-10 18:03:03 -04:00
---
id: 587d824f367417b2b2512c59
2021-02-06 04:42:36 +00:00
title: Run Functional Tests on API Endpoints using Chai-HTTP II
2018-10-10 18:03:03 -04:00
challengeType: 2
2020-09-17 03:50:23 -07:00
forumTopicId: 301592
2021-01-13 03:31:00 +01:00
dashedName: run-functional-tests-on-api-endpoints-using-chai-http-ii
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
2020-09-17 03:50:23 -07:00
2021-02-06 04:42:36 +00:00
As a reminder, this project is being built upon the following starter project on [Repl.it ](https://repl.it/github/freeCodeCamp/boilerplate-mochachai ), or cloned from [GitHub ](https://github.com/freeCodeCamp/boilerplate-mochachai/ ).
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --instructions--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Within `tests/2_functional-tests.js` , alter the `'Test GET /hello with your name'` test (`// #2` ) to assert the `status` and the `text` response to make the test pass.
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Send your name in the query, appending `?name=<your_name>` to the route. The endpoint responds with `'hello <your_name>'` .
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
# --hints--
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
All tests should pass
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```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);
}
);
```
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
You should test for 'res.status' == 200
2018-10-10 18:03:03 -04:00
2020-12-16 00:37:30 -07:00
```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);
}
);
```
2021-02-06 04:42:36 +00:00
You should test for 'res.text' == 'hello Guest'
2018-10-10 18:03:03 -04:00
```js
2020-12-16 00:37:30 -07:00
(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);
}
);
2018-10-10 18:03:03 -04:00
```
2020-08-13 17:24:35 +02:00
2020-12-16 00:37:30 -07:00
# --solutions--
2021-01-13 03:31:00 +01:00
```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.
*/
```