hurl/integration/tests_ok/very_verbose.err.pattern

280 lines
7.3 KiB
Plaintext
Raw Normal View History

* Options:
* fail fast: true
* follow redirect: true
2022-10-15 23:39:47 +03:00
* insecure: false
* max redirect: 50
2022-10-15 23:39:47 +03:00
* retry: false
2022-10-17 21:05:49 +03:00
* retry max count: 10
* ------------------------------------------------------------------------------
* Executing entry 1
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/very-verbose/redirect
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/very-verbose/redirect' -L
*
2022-10-19 22:19:37 +03:00
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#0)
> GET /very-verbose/redirect HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
>
2022-07-05 18:24:18 +03:00
* Request body:
*
2022-10-19 22:19:37 +03:00
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 0
* Response: (received 205 bytes in ~~~ ms)
*
< HTTP/1.0 301 MOVED PERMANENTLY
< Content-Type: text/html; charset=utf-8
< Content-Length: 205
< Location: http://localhost:8000/very-verbose/redirected
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* <html>
* <head>
* <meta content="text/html;charset=utf-8">
* <title>301 Moved</title>
* </head>
* <body>
* <h1>301 Moved</h1>
* The document has moved
* <a href="/very-verbose/redirected">here</a>.
* </body>
* </html>
2022-08-16 10:44:26 +03:00
*
* => Redirect to http://localhost:8000/very-verbose/redirected
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#1)
> GET /very-verbose/redirected HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
>
2022-07-05 18:24:18 +03:00
* Request body:
*
2022-10-19 22:19:37 +03:00
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 1
* Response: (received 11 bytes in ~~~ ms)
*
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 11
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* Redirected.
warning: tests_ok/very_verbose.hurl:2:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
*
* ------------------------------------------------------------------------------
* Executing entry 2
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/very-verbose/encoding/latin1
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/very-verbose/encoding/latin1' -L
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#2)
> GET /very-verbose/encoding/latin1 HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
>
2022-07-05 18:24:18 +03:00
* Request body:
*
2022-10-19 22:19:37 +03:00
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 2
* Response: (received 4 bytes in ~~~ ms)
*
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=ISO-8859-1
< Content-Length: 4
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* café
warning: tests_ok/very_verbose.hurl:5:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
*
* ------------------------------------------------------------------------------
* Executing entry 3
*
* Cookie store:
*
* Request:
* POST http://localhost:8000/very-verbose/compressed/brotli
* Accept-Encoding: brotli
*
2022-07-05 18:24:18 +03:00
* Implicit content-type=application/json
*
* Request can be run with the following curl command:
2022-07-05 18:24:18 +03:00
* curl 'http://localhost:8000/very-verbose/compressed/brotli' -H 'Accept-Encoding: brotli' -H 'Content-Type: application/json' --data $'{\n "foo": "bar",\n "baz": true\n}' -L
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#3)
> POST /very-verbose/compressed/brotli HTTP/1.1
> Host: localhost:8000
> Accept: */*
> Accept-Encoding: brotli
2022-07-05 18:24:18 +03:00
> Content-Type: application/json
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
2022-07-05 18:24:18 +03:00
> Content-Length: 37
>
2022-07-05 18:24:18 +03:00
* Request body:
* {
* "foo": "bar",
* "baz": true
* }
2022-10-19 22:19:37 +03:00
** We are completely uploaded and fine
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 3
* Response: (received 17 bytes in ~~~ ms)
*
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 17
< Content-Encoding: br
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* Hello World!
warning: tests_ok/very_verbose.hurl:13:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
*
* ------------------------------------------------------------------------------
* Executing entry 4
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/very-verbose/cat
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/very-verbose/cat' -L
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#4)
> GET /very-verbose/cat HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
>
2022-07-05 18:24:18 +03:00
* Request body:
*
2022-10-19 22:19:37 +03:00
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 4
* Response: (received 25992 bytes in ~~~ ms)
*
< HTTP/1.0 200 OK
< Content-Type: image/jpeg
< Content-Length: 25992
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* Bytes <f198388ba26c2c53005f24643826384f15ba905b8ca070a470b61885c6639f8bbfe63fcee5fb498a630249e499e4eddcc9ca793406c14d02c97107e09c7af57a...>
warning: tests_ok/very_verbose.hurl:16:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
*
* ------------------------------------------------------------------------------
* Executing entry 5
*
* Cookie store:
*
* Request:
2022-07-05 18:24:18 +03:00
* POST http://localhost:8000/very-verbose/update-cat
* [MultipartFormData]
* cat: file,cat.jpg; image/jpeg
*
* Implicit content-type=multipart/form-data
*
* Request can be run with the following curl command:
* curl 'http://localhost:8000/very-verbose/update-cat' -F 'cat=@tests_ok~cat.jpg;type=image/jpeg' -L
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#5)
2022-07-05 18:24:18 +03:00
> POST /very-verbose/update-cat HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
2022-07-05 18:24:18 +03:00
> Content-Length: 26572
> Content-Type: multipart/form-data; boundary=~~~~~
>
* Request body:
* Bytes <~~~~~...>
2022-10-19 22:19:37 +03:00
** We are completely uploaded and fine
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 5
* Response: (received 0 bytes in ~~~ ms)
*
2022-07-05 18:24:18 +03:00
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 0
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
2022-07-05 18:24:18 +03:00
<
* Response body:
*
warning: tests_ok/very_verbose.hurl:21:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
2022-07-05 18:24:18 +03:00
*
* ------------------------------------------------------------------------------
* Executing entry 6
*
* Cookie store:
*
* Request:
* GET http://localhost:8000/very-verbose/done
2022-07-21 11:11:47 +03:00
* x-foo: bar
*
* Request can be run with the following curl command:
2022-07-21 11:11:47 +03:00
* curl 'http://localhost:8000/very-verbose/done' -H 'x-foo: bar' -L
*
2022-10-19 22:19:37 +03:00
** Hostname localhost was found in DNS cache
** Trying 127.0.0.1:8000...
** Connected to localhost (127.0.0.1) port 8000 (#6)
> GET /very-verbose/done HTTP/1.1
> Host: localhost:8000
> Accept: */*
2022-07-21 11:11:47 +03:00
> x-foo: bar
2022-08-12 21:07:14 +03:00
> User-Agent: hurl/~~~
>
2022-07-05 18:24:18 +03:00
* Request body:
*
2022-10-19 22:19:37 +03:00
** Mark bundle as not supporting multiuse
** HTTP 1.0, assume close after body
** Closing connection 6
* Response: (received 4 bytes in ~~~ ms)
*
< HTTP/1.0 200 OK
< Content-Type: text/html; charset=utf-8
< Content-Length: 4
< Server: Flask Server
2022-10-17 21:05:49 +03:00
< Date: ~~~
<
2022-07-05 18:24:18 +03:00
* Response body:
* Done
warning: tests_ok/very_verbose.hurl:25:1 'HTTP/*' keyword is deprecated, please use 'HTTP' instead
*