Jean-Christophe Amiel

Results 93 issues of Jean-Christophe Amiel

Given an endpoint that returns the JSON `{"status":"UP"}` with a trailing new line, and this test: ```hurl GET http://127.0.0.1:5000/api/health HTTP 200 {"status":"UP"} ``` Hurl displays the following error: ```diff error:...

enhancement

We have a mechanism for updating crates that run daily `update_crates`, we don't need to update crates when we do a new release.

ci

Add --proxy-cacert / CURLOPT_PROXY_ISSUERCERT option

enhancement
topic: curl options

It would be nice to support optional `_` in literal numbers to increase readability. ```hurl GET https://foo.com [Options] limit-rate: 32_000 ``` ```hurl GET https://foo.com HTTP 200 [Asserts] jsonpath "$.reviews" count...

enhancement

We need to make the [integration test README](https://github.com/Orange-OpenSource/hurl/blob/master/integration/README.md) clearer about how to update the PATH env so that the snapshot Hurl binary is tested. ```shell $ cd /Users/bob/hurl $ which...

documentation

We should remove `colored` Rust crate and provide our own ansi text color code. This shouldn't be too difficult, we just need to pay attention why there is a specific...

refactoring

```shell $ echo 'HEAD https://google.fr' | hurl --verbose --variable 'string="1"23"' ```

refactoring

Following We need to document the priority of the options: - options on cli - options in `[Options]` section Variables can be set via command line, option sections, environement variable,...

documentation

In Hurl grammar, `line_terminator` is defined as: ``` lt: sp* comment? [\n]? ``` We should fix it to reflect that CRLF (`\r\n`) are also accepted.

documentation

With 6.0.0, we have introduced generators, we need to update the FAQ about computations:

documentation