177 lines
5.1 KiB
Plaintext
177 lines
5.1 KiB
Plaintext
/* snapshot: Test_createRoutes_foobar */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
foo page
|
|
|
|
/* snapshot: Test_createRoutes_index */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/plain; charset=utf-8
|
|
|
|
index page
|
|
|
|
/* snapshot: Test_createRoutes_redirect */
|
|
HTTP/1.1 301 Moved Permanently
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/html; charset=utf-8
|
|
Location: /foobar/
|
|
|
|
<a href="/foobar/">Moved Permanently</a>.
|
|
|
|
/* snapshot: Test_createRoutes_redirect_with_auth */
|
|
HTTP/1.1 307 Temporary Redirect
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/html; charset=utf-8
|
|
Location: /foobar/login
|
|
|
|
<a href="/foobar/login">Temporary Redirect</a>.
|
|
|
|
/* snapshot: Test_createRoutes_username_password */
|
|
HTTP/1.1 307 Temporary Redirect
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/html; charset=utf-8
|
|
Location: /login
|
|
|
|
<a href="/login">Temporary Redirect</a>.
|
|
|
|
/* snapshot: Test_createRoutes_username_password_invalid */
|
|
HTTP/1.1 401 Unauthorized
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/plain; charset=utf-8
|
|
X-Content-Type-Options: nosniff
|
|
|
|
Unauthorized
|
|
|
|
/* snapshot: Test_createRoutes_username_password_valid_session */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
event: container-stopped
|
|
data: end of stream
|
|
|
|
/* snapshot: Test_createRoutes_version */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Content-Security-Policy: default-src 'none'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:; manifest-src 'self'; connect-src 'self' api.github.com;
|
|
Content-Type: text/html
|
|
|
|
<pre>dev</pre>
|
|
|
|
/* snapshot: Test_handler_streamEvents_error */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
event: containers-changed
|
|
data: []
|
|
|
|
/* snapshot: Test_handler_streamEvents_error_request */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
event: containers-changed
|
|
data: []
|
|
|
|
/* snapshot: Test_handler_streamEvents_happy */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
event: containers-changed
|
|
data: []
|
|
|
|
|
|
event: containers-changed
|
|
data: []
|
|
|
|
|
|
event: container-start
|
|
data: {"actorId":"1234","name":"start"}
|
|
|
|
/* snapshot: Test_handler_streamLogs_error_finding_container */
|
|
HTTP/1.1 404 Not Found
|
|
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 500 Internal Server Error
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/plain; charset=utf-8
|
|
X-Accel-Buffering: no
|
|
X-Content-Type-Options: nosniff
|
|
|
|
test error
|
|
|
|
/* snapshot: Test_handler_streamLogs_happy */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
data: {"m":"INFO Testing logs...","ts":0,"id":4256192898}
|
|
|
|
event: container-stopped
|
|
data: end of stream
|
|
|
|
/* snapshot: Test_handler_streamLogs_happy_container_stopped */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
event: container-stopped
|
|
data: end of stream
|
|
|
|
/* snapshot: Test_handler_streamLogs_happy_with_id */
|
|
HTTP/1.1 200 OK
|
|
Connection: close
|
|
Cache-Control: no-transform
|
|
Cache-Control: no-cache
|
|
Connection: keep-alive
|
|
Content-Type: text/event-stream
|
|
X-Accel-Buffering: no
|
|
|
|
data: {"m":"INFO Testing logs...","ts":1589396137772,"id":1469707724}
|
|
id: 1589396137772
|
|
|
|
event: container-stopped
|
|
data: end of stream |