Commit Graph

556 Commits

Author SHA1 Message Date
jcamiel
aefbd79027
Update README with installation instruction for .deb 2022-12-09 23:41:25 +01:00
jcamiel
1dbdd99f34
Add name attribute to JUnit report 2022-12-09 16:49:58 +01:00
jcamiel
ec30da5b05
Normalize curl command line debug with the url at the end. 2022-12-09 15:10:35 +01:00
jcamiel
38c47501ab
Add --resolve options 2022-12-09 10:17:07 +01:00
jcamiel
00006eab74
Support new one line string format. 2022-12-08 13:15:32 +01:00
jcamiel
5532d1155a
Display warning when legacy syntax for one line string is used. 2022-12-08 13:13:16 +01:00
Luke Mondy
e6028f390a
Add support for htmlEscape and htmlUnescape in hurlfmt 2022-12-07 08:17:28 +11:00
Luke Mondy
db486f9695
Add htmlEscape and htmlUnescape filters
These filters use the html_escape crate (inspired by the use of the percent_encoding crate) to escape and unescape html.
2022-12-07 08:17:21 +11:00
jcamiel
2841a9459b
Change struct Bytes with tupple instead of anonymous struct. 2022-12-06 14:56:01 +01:00
jcamiel
0ab9fedafa
Change Template struct using delimiter: Option<char> field instead of quotes: bool. 2022-12-05 13:12:28 +01:00
hurl-bot
ae0c0ee6ab
Update crates 2022-12-05 08:23:32 +00:00
jcamiel
bc32e4e84d
Fix error message case. 2022-12-04 18:27:42 +01:00
jcamiel
d924d88b42
Update all installation docs. 2022-12-03 23:28:05 +01:00
Fabrice Reix
ffd31a271c
Add toInt filter 2022-12-03 12:16:24 +01:00
jcamiel
51b196ea88
Update variables hash while iterating and evaluating the capture section (instead of updating it once with all the variables). 2022-12-01 15:32:11 +01:00
Fabrice Reix
3eaa74ce11
Fix Parsing / compliant with grammar 2022-12-01 14:50:55 +01:00
jcamiel
44f43bcf73
Add support for LINK, UNLINK, PURGE, LOCK, UNLOCK, PROPFIND and VIEW HTTP method 2022-11-30 18:28:11 +01:00
jcamiel
589c4c20c3
Update 1.9.0-SNAPSHOT to 2.0.0 due to major breaking change. 2022-11-29 15:51:29 +01:00
hurl-bot
3f2397e6eb
Update crates 2022-11-29 13:07:15 +00:00
hurl-bot
4582c5a4fc
Update crates 2022-11-29 08:24:13 +00:00
Tim Bart
04ebc958c6
This PR adds support for configuring the client cert and private key for establishing a mutual TLS connection to a server.
Example:
```
GET https://localhost:8443/
[Options]
cacert: out/HurlCA.crt
cert: out/client.crt
key: out/client.key

HTTP 200
```

outputs:
```
Request can be run with the following curl command:
* curl 'https://localhost:8443/' --cacert out/HurlCA.crt --cert out/client.crt --key out/client.key
```
2022-11-28 20:33:05 -08:00
hurl-bot
de89ed043e
Update crates 2022-11-28 08:24:38 +00:00
jcamiel
ed3217c41f
Add support for GraphQL variables. 2022-11-25 11:34:03 +01:00
jcamiel
c15eecec88
Change "type": "multiline-string" for "type": "text" in JSON export. 2022-11-25 10:15:31 +01:00
hurl-bot
841f29a550
Update crates 2022-11-24 22:11:38 +00:00
jcamiel
0aa0568c91
Add application/json Content-Type header for GraphQL queries. 2022-11-24 16:14:44 +01:00
jcamiel
2242c8ba0d
Rename TextOneLine to OneLineText. 2022-11-24 15:10:13 +01:00
jcamiel
a0f7d3e278
Use real type Value instead of public alias JsonValue in implementation. 2022-11-24 13:37:05 +01:00
jcamiel
65350a71bb
Add GraphQL simple query support.
We add GraphQL query support. For the moment, variables are not supported.
2022-11-23 14:52:34 +01:00
hurl-bot
351fe21a93
Update crates 2022-11-22 07:10:46 +00:00
hurl-bot
e323006d1f
Update crates 2022-11-21 08:26:05 +00:00
jcamiel
5c7d2ea3ec
Remove HTML ast for HTML report generation. 2022-11-19 01:07:19 +01:00
jcamiel
80fb0fd5b3
Delete raw string wording everywhere. 2022-11-18 15:30:56 +01:00
hurl-bot
23e66e0158
Update crates 2022-11-18 08:24:51 +00:00
jcamiel
3b3483a997
Add lang identifier to multiline. 2022-11-18 00:20:53 +01:00
hurl-bot
f3bf0b7618
Update crates 2022-11-17 22:55:05 +00:00
hurl-bot
c599f4765f
Update crates 2022-11-17 08:26:47 +00:00
hurl-bot
af8d29131a Update crates 2022-11-16 09:14:56 +00:00
jcamiel
a34480120e
Change choice parser function signature to take a slice as argument.
With a slice as argument, we can use a vec or an array. In Hurl code, we use choice with array only.
We also change the implementation to remove the recursive call (and unncessary clone)
2022-11-15 14:03:13 +01:00
hurl-bot
b4c4d0ff77 Update crates 2022-11-15 08:27:12 +00:00
GitHub Action
ef454b59ff Update crates 2022-11-12 08:25:30 +00:00
GitHub Action
d3759a1c18 Update crates 2022-11-11 23:20:29 +00:00
jcamiel
4e41799623
Use HTTP instead of HTTP/* for any HTTP version match 2022-11-10 22:29:21 +01:00
GitHub Action
3c1c3a9b4d Update crates 2022-11-09 08:28:18 +00:00
GitHub Action
aa318c3e55 Update crates 2022-11-07 18:31:01 +00:00
GitHub Action
e455ebd685 Update hurl version to 1.9.0-SNAPSHOT 2022-11-07 13:11:48 +00:00
GitHub Action
1930fcf62b Create 1.8.0 release 2022-11-07 12:39:14 +00:00
jcamiel
403db2e131
Change raw string body for multiline string body. 2022-11-05 19:21:45 +01:00
GitHub Action
802391d7ee Update crates 2022-11-05 18:04:45 +00:00
jcamiel
b38d108eb2
Fix hurlfmt --color crash. 2022-11-05 01:17:23 +01:00
GitHub Action
3d475c7c88 Update crates 2022-11-04 17:52:42 +00:00
Fabrice Reix
d1713c8865
Fix clippy warnings (Rust 1.65.0) 2022-11-03 16:58:42 +01:00
Fabrice Reix
67d48bde22
Add filters urlEncode/urlDecode 2022-11-02 17:07:00 +01:00
Fabrice Reix
2653401819
Fix missing line in HTML output 2022-11-01 19:02:00 +01:00
jcamiel
f25c6b9129
Delete subquery dead code. 2022-10-31 11:04:49 +01:00
GitHub Action
f9d06655ff Update crates 2022-10-29 17:10:01 +00:00
Fabrice Reix
8666229edf
Move filters outside query 2022-10-28 08:04:16 +02:00
jcamiel
22c17ee998
Update README. 2022-10-26 22:47:04 +02:00
Fabrice Reix
75f1d111d4
Add/Check copyright in source files 2022-10-25 15:55:53 +02:00
Fabrice Reix
89f4c123cd
Replace Subquery by Filter 2022-10-25 08:50:22 +02:00
jcamiel
a32535d9be
Update docs for 1.8.0 2022-10-24 22:33:26 +02:00
Fabrice Reix
bf79a512e0
Newline added at the end of the files
hurlfmt now also outputs a trailing newline.
2022-10-24 15:04:50 +02:00
GitHub Action
1419e706fd Update crates 2022-10-22 08:30:57 +00:00
GitHub Action
42bb1dfd14 Update crates 2022-10-21 08:33:27 +00:00
jcamiel
8dded501ce
Move code from core.rs to runner_options.rs. 2022-10-20 20:57:35 +02:00
jcamiel
36452f705c
Fix max-time help. 2022-10-20 17:58:43 +02:00
jcamiel
8f96cd990c
Improve header ouputs with --include. 2022-10-20 15:07:08 +02:00
jcamiel
debbeb250e
Add retry-max-count request option. 2022-10-20 13:06:27 +02:00
jcamiel
9e6f5088c6
Add retry-interval request option. 2022-10-20 13:06:27 +02:00
jcamiel
cec84ca811
Add retry request option. 2022-10-20 13:06:27 +02:00
GitHub Action
1fb7a3ba1b Update crates 2022-10-20 08:31:17 +00:00
jcamiel
06c706210f
Output curl logs in very-verbose. 2022-10-19 21:19:37 +02:00
jcamiel
8fbe84c701
Update test self-signed certificate. 2022-10-19 17:32:34 +02:00
GitHub Action
7000c17224 Update crates 2022-10-19 08:39:30 +00:00
Fabrice Reix
6472866c22
Fix HTTP HEAD 2022-10-18 14:27:47 +02:00
jcamiel
e85354f0eb
Add retry-max-count option. 2022-10-18 11:51:49 +02:00
jcamiel
d34647ca7e
Clean hurl --help. 2022-10-18 11:50:32 +02:00
GitHub Action
bfffb04ec5 Update crates 2022-10-18 09:27:17 +00:00
jcamiel
43e6f703da
Add comment. 2022-10-17 08:50:27 +02:00
jcamiel
a58d4f27e0
Add --retry and --retry-interval options. 2022-10-16 10:42:41 +02:00
Fabrice Reix
b912a6f06c
Add url query 2022-10-16 09:59:08 +02:00
Fabrice Reix
5712eacf48
Add field url to HTTP response 2022-10-16 09:35:10 +02:00
GitHub Action
f96998b278 Update crates 2022-10-14 07:16:12 +00:00
GitHub Action
a446932b12 Update crates 2022-10-13 08:30:44 +00:00
GitHub Action
2ed7daa7a8 Update crates 2022-10-11 16:57:46 +00:00
GitHub Action
e27ef041f8 Update crates 2022-10-11 06:54:51 +00:00
jcamiel
397d91528a
Add Demo placeholder. 2022-10-10 17:50:58 +02:00
jcamiel
f7990069d7
Change EntryResult structure to have a list of calls property. 2022-10-10 15:51:33 +02:00
Fabrice Reix
1ae68efd82
Fix relative redirect 2022-10-10 15:13:03 +02:00
GitHub Action
8e868f41d0 Update crates 2022-10-10 08:35:17 +00:00
GitHub Action
38c68a4538 Update crates 2022-10-09 08:28:02 +00:00
GitHub Action
b424b1b0bd Update crates 2022-10-06 08:30:20 +00:00
GitHub Action
0d302c8534 Update crates 2022-10-04 08:31:26 +00:00
jcamiel
ef0230d65a
Simplify option parsing using clap apis. 2022-10-02 18:42:10 +02:00
GitHub Action
c182a062ce Update crates 2022-10-02 08:28:01 +00:00
jcamiel
d0f12d9d34
Make compact help. 2022-10-01 16:59:10 +02:00
Kian-Meng Ang
3a5ff7dcb2 Fix typos
Found via `codespell -S contrib,target -L crate,asser,te,pleas`
2022-10-01 18:48:18 +08:00
GitHub Action
28ec49f8c4 Update crates 2022-09-30 19:38:18 +00:00
jcamiel
52575789ef
Delete --progress and --summary from docs. 2022-09-30 18:01:20 +02:00
jcamiel
fb279b5a1e
Remove --progress and --summary option. 2022-09-30 18:01:19 +02:00