2018-10-10 18:03:03 -04:00
---
id: 587d824f367417b2b2512c5a
2021-02-06 04:42:36 +00:00
title: Run Functional Tests on an API Response using Chai-HTTP III - PUT method
2018-10-10 18:03:03 -04:00
challengeType: 2
2020-09-17 03:50:23 -07:00
forumTopicId: 301590
2021-01-13 03:31:00 +01:00
dashedName: run-functional-tests-on-an-api-response-using-chai-http-iii---put-method
2018-10-10 18:03:03 -04:00
---
2020-12-16 00:37:30 -07:00
# --description--
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/ ).
2020-12-16 00:37:30 -07:00
2021-02-06 04:42:36 +00:00
In the next example we'll see how to send data in a request payload (body). We are going to test a PUT request. The `'/travellers'` endpoint accepts a JSON object taking the structure:
2020-09-17 03:50:23 -07:00
```json
{
"surname": [last name of a traveller of the past]
}
```
2021-02-06 04:42:36 +00:00
The route responds with :
2020-12-16 00:37:30 -07:00
2020-09-17 03:50:23 -07:00
```json
{
"name": [first name], "surname": [last name], "dates": [birth - death years]
}
```
2021-02-06 04:42:36 +00:00
See the server code for more details.
2020-09-17 03:50:23 -07: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 `'send {surname: "Colombo"}'` test (`// #3` ):
Send the following JSON response as a payload:
2020-09-17 03:50:23 -07:00
```json
{
"surname": "Colombo"
}
```
2018-10-10 18:03:03 -04:00
2021-02-06 04:42:36 +00:00
Check for the following, within the `request.end` callback:
1. `status`
2. `type`
3. `body.name`
4. `body.surname`
Follow the assertion order above - we rely on it. Be sure to remove `assert.fail()` , once complete.
2020-12-16 00:37:30 -07:00
# --hints--
2021-02-06 04:42:36 +00:00
All tests should pass.
2020-12-16 00:37:30 -07:00
```js
(getUserInput) =>
$.get(getUserInput('url') + '/_api/get-tests?type=functional& n=2').then(
(data) => {
assert.equal(data.state, 'passed');
},
(xhr) => {
throw new Error(xhr.responseText);
}
);
```
2021-02-06 04:42:36 +00:00
You should test for 'res.status' to be 200.
2020-12-16 00:37:30 -07:00
```js
(getUserInput) =>
$.get(getUserInput('url') + '/_api/get-tests?type=functional& n=2').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);
}
);
2018-10-10 18:03:03 -04:00
```
2021-02-06 04:42:36 +00:00
You should test for 'res.type' to be 'application/json'.
2020-12-16 00:37:30 -07:00
```js
(getUserInput) =>
$.get(getUserInput('url') + '/_api/get-tests?type=functional& n=2').then(
(data) => {
assert.equal(data.assertions[1].method, 'equal');
assert.equal(data.assertions[1].args[0], 'res.type');
assert.match(data.assertions[1].args[1], /('|")application\/json\1/);
},
(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.body.name' to be 'Cristoforo'.
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=2').then(
(data) => {
assert.equal(data.assertions[2].method, 'equal');
assert.equal(data.assertions[2].args[0], 'res.body.name');
assert.match(data.assertions[2].args[1], /('|")Cristoforo\1/);
},
(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.body.surname' to be 'Colombo'.
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=2').then(
(data) => {
assert.equal(data.assertions[3].method, 'equal');
assert.equal(data.assertions[3].args[0], 'res.body.surname');
assert.match(data.assertions[3].args[1], /('|")Colombo\1/);
},
(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.
*/
```