nushell/crates/nu-command/tests/commands/network/http
Sygmei ec5396a352
feat: added multiple options to http commands (#8571)
# Description

All `http` commands now have a `-f` flag which for now contains the
`headers`, `body` and `status` fields (we can later add stuff like
`is-redirect` or `cookies`).


![image](https://user-images.githubusercontent.com/3835355/227048504-6686445d-ad2e-4f5d-905d-e71b3a4b81a6.png)

*Try it yourself*
```
http get http://mockbin.org/bin/630069dc-2c09-483a-a484-672561b7de14
http get -f http://mockbin.org/bin/630069dc-2c09-483a-a484-672561b7de14
```

The `http` commands can also now use the `-e` flag, which stands for
`--allow-errors`. When the status code is `>= 400`, it will still allow
you to interpret it like a normal response.


![image](https://user-images.githubusercontent.com/3835355/227047790-b9f5a25f-2c0d-4741-881f-4189b23e4ef6.png)

*Try it yourself*
```
http get http://mockbin.org/bin/2ebd3d27-bdc2-4ee8-b042-0bc2c0d1ad2a # should fail like usual
http get -e http://mockbin.org/bin/2ebd3d27-bdc2-4ee8-b042-0bc2c0d1ad2a # will return the body
http get -e -f http://mockbin.org/bin/2ebd3d27-bdc2-4ee8-b042-0bc2c0d1ad2a # will let you see the full response
```

# User-Facing Changes

- Adds `-f` (`--full`) to all `http` commands
- Adds `-e` (--allow-errors) to all `http` commands
2023-03-23 13:32:35 -07:00
..
delete.rs changes Reqwest to Ureq. (#8320) 2023-03-05 14:48:13 -08:00
get.rs feat: added multiple options to http commands (#8571) 2023-03-23 13:32:35 -07:00
head.rs changes Reqwest to Ureq. (#8320) 2023-03-05 14:48:13 -08:00
mod.rs Add unit tests for HTTP commands. (#8267) 2023-03-02 11:05:18 -08:00
patch.rs changes Reqwest to Ureq. (#8320) 2023-03-05 14:48:13 -08:00
post.rs changes Reqwest to Ureq. (#8320) 2023-03-05 14:48:13 -08:00
put.rs changes Reqwest to Ureq. (#8320) 2023-03-05 14:48:13 -08:00