mirror of
https://github.com/amir20/dozzle.git
synced 2026-01-03 19:45:01 +01:00
85 lines
2.0 KiB
Plaintext
85 lines
2.0 KiB
Plaintext
/* snapshot: Test_createRoutes_foobar */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
foo page
|
|
|
|
/* snapshot: Test_createRoutes_index */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
index page
|
|
|
|
/* snapshot: Test_createRoutes_redirect */
|
|
HTTP/1.1 301 Moved Permanently
|
|
Connection: close
|
|
Content-Type: text/html; charset=utf-8
|
|
Location: /foobar/
|
|
|
|
<a href="/foobar/">Moved Permanently</a>.
|
|
|
|
/* snapshot: Test_createRoutes_version */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
dev
|
|
none
|
|
unknown
|
|
|
|
/* snapshot: Test_handler_listContainers_happy */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
[{"id":"1234567890","names":null,"name":"test","image":"image","imageId":"image_id","command":"command","created":0,"state":"state","status":"status"}]
|
|
|
|
/* snapshot: Test_handler_streamEvents_error */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
|
|
/* snapshot: Test_handler_streamEvents_error_request */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
|
|
/* snapshot: Test_handler_streamEvents_happy */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
|
|
event: containers-changed
|
|
data: start
|
|
|
|
/* snapshot: Test_handler_streamLogs_error_finding_container */
|
|
HTTP/1.1 500 Internal Server Error
|
|
Connection: close
|
|
Content-Type: text/plain; charset=utf-8
|
|
X-Content-Type-Options: nosniff
|
|
|
|
error finding container
|
|
|
|
/* snapshot: Test_handler_streamLogs_error_reading */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
|
|
/* snapshot: Test_handler_streamLogs_happy */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
|
|
data: INFO Testing logs... |