Hurl, run and test HTTP requests with plain text.
Go to file
2020-08-27 16:44:57 +02:00
ci Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
docs Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
integration Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
src Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
tests Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
.gitignore Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
.travis.yml Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
build.rs Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
build.sh Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
Cargo.lock Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
Cargo.toml Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
LICENSE.md Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00
README.md Init Commit - beta release 0.99.12 2020-08-27 16:44:57 +02:00


deploy status documentation

What's Hurl?

Hurl is a command line tool and a simple plain text format for describing an HTTP session.

Hurl is used in command lines or scripts to run HTTP sessions. Hurl can performs requests, capture values and evaluate queries on headers and body response. Hurl is very versatile: it can be used to get HTTP data and also to test HTTP sessions.

# Get home:
GET https://example.net

HTTP/1.1 200
[Captures]
csrf_token: xpath "string(//meta[@name='_csrf_token']/@content)"

# Do login!
POST https://example.net/login?user=toto&password=1234
X-CSRF-TOKEN: {{csrf_token}}

HTTP/1.1 302

Chaining multiple requests is easy:

GET https://api.example.net/health
GET https://api.example.net/health
GET https://api.example.net/health
GET https://api.example.net/health

Also an HTTP Test Tool

Hurl can run HTTP requests but can also be used to test HTTP responses. Different type of queries and predicates are supported, from XPath and JSONPath on body response, to assert on status code and response headers.

GET https://example.net

HTTP/1.1 200
[Asserts]
xpath "normalize-space(//head/title)" equals "Hello world!"

and is well adapted for REST/json apis

POST https://api.example.net/tests
{
    "id": "456",
    "evaluate": true
}

HTTP/1.1 200
[Asserts]
jsonpath "$.status" equals "RUNNING"      # Check the status code
jsonpath "$.tests" countEquals 25         # Check the number of items

and even SOAP apis

POST https://example.net/InStock
Content-Type: application/soap+xml; charset=utf-8
SOAPAction: "http://www.w3.org/2003/05/soap-envelope"
<?xml version="1.0" encoding="UTF-8"?>
<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:m="http://www.example.org">
  <soap:Header></soap:Header>
  <soap:Body>
    <m:GetStockPrice>
      <m:StockName>GOOG</m:StockName>
    </m:GetStockPrice>
  </soap:Body>
</soap:Envelope>

HTTP/1.1 200

Documentation

Visit the Hurl web site to find out how to install and use Hurl.

Feedbacks

Hurl is still in beta, any feedback, suggestion, bugs or improvements are welcome.

POST https://hurl.dev/api/feedback
{
    "name": "John Doe",
    "feedback": "Hurl is awesome !"
}
HTTP/1.1 200