Jean-Christophe Amiel

Results 93 issues of Jean-Christophe Amiel

[`--to-entry`](https://hurl.dev/docs/manual.html#to-entry) run an Hurl file up to a specific entry count (entry included). It could be useful to a `to-line`option to run an Hurl file up to a specific line...

enhancement
topic: options

Using [`--error-format`](https://hurl.dev/docs/manual.html#error-format), it could be useful to add the curl command line to be able to reproduce the request: Actual output: ```shell $ hurl --error-format long --test test.hurl HTTP/1.1 200...

enhancement
topic: curl options
topic: options

Add support for curl -H/--header option to add a request header on each request: ```shell $ hurl --header "foo: bar" test.hurl ``` Adding multiple header is possible: ```shell $ hurl...

enhancement
topic: curl options

### Discussed in https://github.com/Orange-OpenSource/hurl/discussions/1921 Originally posted by **eydun** September 12, 2023 My login-request returns a token, which I am able to capture with jsonpath. But before I can use this...

enhancement
good first issue
topic: filters

In verbose mode, Hurl should display HTTP version and response headers as soon as they are provided by libcurl and not wait a complete reponse. Using a [SSE server test](https://sse.dev/test)using...

enhancement

### Problem to solve When using JSON body or multiline string, `{{` is interpreted as a variable expansion by Hurl. For instance, this JSON body: ```json { "template": "{{#user~}}I want...

enhancement

As written in the [Hurl grammar](https://hurl.dev/docs/grammar.html#multiline-string), multiline strings and one line strings should support [Hurl unicode literals](https://hurl.dev/docs/hurl-file.html#special-characters-in-strings): ~~~hurl POST https://foo.com ``` Un bon caf\u{e9}! ``` ~~~ equivalent to: ~~~hurl POST...

enhancement

The current [`isDate`](https://hurl.dev/docs/asserting-response.html#predicates) predicate takes "date" type as input. To use it on a string, user has to explicitly convert it to a date using a format spec and [`toDate`...

enhancement
good first issue
topic: predicates

I'm trying to test HTTP3 with curl-rust on macOS, so I want to link against a custom version of libcurl (that supports HTTP3). In https://github.com/alexcrichton/curl-rust/blob/ff6ad21cc1034826b2ab3f8be0653d8c446e1bdc/curl-sys/build.rs#L18-L19 there is a feature flag...