mirror of
https://github.com/tailscale/tailscale.git
synced 2026-05-06 04:36:15 +02:00
When --vmtest-web is set, Host.app is launched with --screenshot-port 0
to start a localhost HTTP server that captures the VZVirtualMachineView
display. The Go test harness parses the SCREENSHOT_PORT=<port> line from
stdout, then polls every 2 seconds for JPEG thumbnails and pushes them
over WebSocket to the web dashboard.
Clicking a screenshot thumbnail opens a full-resolution image proxied
through the web UI's /screenshot/{node} endpoint.
Screenshot events are excluded from the EventBus history (they're large
and only the latest matters, stored in NodeStatus.Screenshot).
Updates #13038
Change-Id: I9bc67ddd1cc72948b33c555d4be3d8db06a41f6d
Signed-off-by: Brad Fitzpatrick <bradfitz@tailscale.com>
46 lines
1.7 KiB
HTML
46 lines
1.7 KiB
HTML
{{if eq .Type "test_status"}}
|
|
<span class="test-status test-{{.Message}}" id="test-status" hx-swap-oob="outerHTML">{{.Message}} ({{.Detail}})</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "step_changed"}}
|
|
<div class="step step-{{.Step.Status}}" id="step-{{.Step.Index}}" hx-swap-oob="outerHTML">
|
|
<span class="step-icon">{{.Step.Status.Icon}}</span>
|
|
<span class="step-name">{{.Step.Name}}</span>
|
|
<span class="step-time">{{formatDuration .Step.Elapsed}}</span>
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if eq .Type "console_output"}}
|
|
<div id="console-{{.NodeName}}" hx-swap-oob="beforeend">{{ansi .Message}}
|
|
</div>
|
|
{{end}}
|
|
|
|
{{if eq .Type "dhcp_discover"}}
|
|
<span id="dhcp-{{.NodeName}}-{{.NIC}}" hx-swap-oob="innerHTML">Discover sent</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "dhcp_offer"}}
|
|
<span id="dhcp-{{.NodeName}}-{{.NIC}}" hx-swap-oob="innerHTML">Offered {{.Detail}}</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "dhcp_request"}}
|
|
<span id="dhcp-{{.NodeName}}-{{.NIC}}" hx-swap-oob="innerHTML">Requesting {{.Detail}}</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "dhcp_ack"}}
|
|
<span id="dhcp-{{.NodeName}}-{{.NIC}}" hx-swap-oob="innerHTML">Got {{.Detail}}</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "tailscale"}}
|
|
<span id="ts-{{.NodeName}}" hx-swap-oob="innerHTML">{{.Detail}}</span>
|
|
{{end}}
|
|
|
|
{{if eq .Type "screenshot"}}
|
|
<div id="screenshot-{{.NodeName}}" hx-swap-oob="innerHTML"><a href="/screenshot/{{.NodeName}}" target="_blank"><img src="data:image/jpeg;base64,{{.Message}}"></a></div>
|
|
{{end}}
|
|
|
|
{{if ne .Type "screenshot"}}
|
|
<div id="events" hx-swap-oob="beforeend"><div class="event event-{{.Type}}"><span class="event-time">{{.Time.Format "15:04:05.000"}}</span> {{if .NodeName}}<span class="event-node">[{{.NodeName}}]</span> {{end}}<span class="event-msg">{{.Message}}</span>{{if .Detail}} <span class="event-detail">{{.Detail}}</span>{{end}}</div>
|
|
</div>
|
|
{{end}}
|