We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
hurlfmt --out html is missing quotes around certificate query attributes
hurlfmt --out html
Given the following Hurl file:
GET https://hurl.dev HTTP 200 [Asserts] certificate "Subject" == "CN=hurl.dev" certificate "Issuer" == "C=US, O=Let's Encrypt, CN=R3" certificate "Expire-Date" daysAfterNow > 15 certificate "Serial-Number" matches "[0-9af]+"
The following command:
$ hurlfmt --out file.hurl
produces the following HTML file:
GET https://hurl.dev HTTP 200 [Asserts] certificate Subject == "CN=hurl.dev" certificate Issuer == "C=US, O=Let's Encrypt, CN=R3" certificate Expire-Date daysAfterNow > 15 certificate Serial-Number matches "[0-9af]+"
Subject, Issuer etc... have missing quotes
Subject
Issuer
hurl --version
hurl 3.1.0-SNAPSHOT libcurl/7.79.1 (SecureTransport) LibreSSL/3.3.6 zlib/1.2.11 nghttp2/1.45.1 Features (libcurl): alt-svc AsynchDNS HSTS HTTP2 IPv6 Largefile libz NTLM NTLM_WB SPNEGO SSL UnixSockets Features (built-in): brotli
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
What is the current bug behavior?
hurlfmt --out html
is missing quotes around certificate query attributesSteps to reproduce
Given the following Hurl file:
The following command:
produces the following HTML file:
Subject
,Issuer
etc... have missing quotesWhat is the expected correct behavior?
Execution context
hurl --version
)The text was updated successfully, but these errors were encountered: