2021-06-15 00:49:18 -07:00
---
id: 587d824f367417b2b2512c5a
2021-07-30 01:41:44 +09:00
title: Executar testes funcionais em uma resposta de API usando Chai-HTTP III - método PUT
2021-06-15 00:49:18 -07:00
challengeType: 2
forumTopicId: 301590
dashedName: run-functional-tests-on-an-api-response-using-chai-http-iii---put-method
---
# --description--
2021-07-30 23:57:21 +09:00
Lembrando que este projeto está sendo construído a partir do [Replit ](https://replit.com/github/freeCodeCamp/boilerplate-mochachai ), ou pose ser clonado no [GitHub ](https://github.com/freeCodeCamp/boilerplate-mochachai/ ).
2021-06-15 00:49:18 -07:00
2021-08-20 00:00:51 -07:00
Ao testar uma solicitação de `PUT` , você geralmente envia dados com ela. Os dados que você inclui com sua solicitação de `PUT` são chamados de corpo (body) da solicitação.
2021-06-15 00:49:18 -07:00
2021-08-20 00:00:51 -07:00
Para enviar uma solicitação de `PUT` e um objeto JSON para o endpoint `'/travellers'` , você pode usar os métodos `put` e `send` do plugin `chai-http` :
```js
chai
.request(server)
.put('/travellers')
.send({
"surname": [last name of a traveller of the past]
})
...
2021-06-15 00:49:18 -07:00
```
2021-08-20 00:00:51 -07:00
A rota responderá com:
2021-06-15 00:49:18 -07:00
```json
{
2021-08-20 00:00:51 -07:00
"name": [first name],
"surname": [last name],
"dates": [birth - death years]
2021-06-15 00:49:18 -07:00
}
```
2021-08-20 00:00:51 -07:00
Consulte o código do servidor para ver as diferentes respostas para o endpoint `'/travellers'` .
2021-06-15 00:49:18 -07:00
# --instructions--
2021-08-20 00:00:51 -07:00
Em `tests/2_functional-tests.js` , altere o teste `'Send {surname: "Colombo"}'` (`// #3` ) e use os métodos `put` e `send` para testar o endpoint `'/travellers'` .
2021-06-15 00:49:18 -07:00
2021-08-20 00:00:51 -07:00
Envie o objeto JSON a seguir com a sua solicitação de PUT:
2021-06-15 00:49:18 -07:00
```json
{
"surname": "Colombo"
}
```
2021-08-20 00:00:51 -07:00
Verifique o seguinte dentro da função de callback de `request.end` :
2021-06-15 00:49:18 -07:00
2021-08-20 00:00:51 -07:00
1. O `status` deve ser `200`
2. O `type` deve ser `application/json`
3. O `body.name` deve ser `Cristoforo`
4. O `body.surname` deve ser `Colombo`
2021-06-15 00:49:18 -07:00
2021-08-20 00:00:51 -07:00
Siga a ordem de declarações acima, pois dependemos disso. Além disso, não se esqueça de remover `assert.fail()` assim que o teste terminar.
2021-06-15 00:49:18 -07:00
# --hints--
2021-07-30 01:41:44 +09:00
Todos os testes devem passar.
2021-06-15 00:49:18 -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-08-20 00:00:51 -07:00
Você deve testar se `res.status` será 200.
2021-06-15 00:49:18 -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);
}
);
```
2021-08-20 00:00:51 -07:00
Você deve testar se `res.type` será `'application/json'` .
2021-06-15 00:49:18 -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);
}
);
```
2021-08-20 00:00:51 -07:00
Você deve testar se `res.body.name` será `'Cristoforo'` .
2021-06-15 00:49:18 -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);
}
);
```
2021-08-20 00:00:51 -07:00
Você deve testar se `res.body.surname` será `'Colombo'` .
2021-06-15 00:49:18 -07:00
```js
(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);
}
);
```
# --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.
*/
```