2021-06-15 00:49:18 -07:00
---
id: 587d824f367417b2b2512c5a
2021-07-16 11:03:16 +05:30
title: Eseguire test funzionali su una risposta API utilizzando il metodo Chai-HTTP III - 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-16 11:03:16 +05:30
Come promemoria, questo progetto viene costruito a partire dal seguente progetto iniziale su [Replit ](https://replit.com/github/freeCodeCamp/boilerplate-mochachai ), o clonato da [GitHub ](https://github.com/freeCodeCamp/boilerplate-mochachai/ ).
2021-06-15 00:49:18 -07:00
2021-07-16 11:03:16 +05:30
Nel prossimo esempio vedremo come inviare i dati in nel corpo di un payload di richiesta. Stiamo per testare una richiesta PUT. L'endpoint `'/travellers'` accetta un oggetto JSON che prende la struttura:
2021-06-15 00:49:18 -07:00
```json
{
"surname": [last name of a traveller of the past]
}
```
2021-07-16 11:03:16 +05:30
La rotta risponde con:
2021-06-15 00:49:18 -07:00
```json
{
"name": [first name], "surname": [last name], "dates": [birth - death years]
}
```
2021-07-16 11:03:16 +05:30
Vedi il codice del server per maggiori dettagli.
2021-06-15 00:49:18 -07:00
# --instructions--
2021-07-16 11:03:16 +05:30
All'interno di `tests/2_functional-tests.js` , modifica il test `'send {surname: "Colombo"}'` (`// #3` ):
2021-06-15 00:49:18 -07:00
2021-07-16 11:03:16 +05:30
Invia la seguente risposta JSON come payload:
2021-06-15 00:49:18 -07:00
```json
{
"surname": "Colombo"
}
```
2021-07-16 11:03:16 +05:30
Controlla quanto segue, all'interno della callback `request.end` :
2021-06-15 00:49:18 -07:00
1. `status`
2. `type`
3. `body.name`
4. `body.surname`
2021-07-16 11:03:16 +05:30
Segui l'ordine di asserzione indicato sopra - facciamo affidamento su di esso. Assicurati di rimuovere `assert.fail()` , una volta finito.
2021-06-15 00:49:18 -07:00
# --hints--
2021-07-16 11:03:16 +05:30
Tutti i test dovrebbero essere superati.
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-07-16 11:03:16 +05:30
Dovresti verificare che 'res.status' sia 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-07-16 11:03:16 +05:30
Dovresti verificare che 'res.type' sia '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-07-16 11:03:16 +05:30
Dovresti verificare che 'res.body.name' sia '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-07-16 11:03:16 +05:30
Dovresti verificare che 'res.body.surname' sia '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.
*/
```