| 97 | } |
| 98 | |
| 99 | type Client struct { |
| 100 | t testing.TB |
| 101 | logger slog.Logger |
| 102 | agentID uuid.UUID |
| 103 | server *drpcserver.Server |
| 104 | fakeAgentAPI *FakeAgentAPI |
| 105 | LastWorkspaceAgent func() |
| 106 | |
| 107 | mu sync.Mutex // Protects following. |
| 108 | logs []agentsdk.Log |
| 109 | derpMapUpdates chan *tailcfg.DERPMap |
| 110 | derpMapOnce sync.Once |
| 111 | refreshTokenCalls int |
| 112 | } |
| 113 | |
| 114 | func (*Client) AsRequestOption() codersdk.RequestOption { |
| 115 | return func(_ *http.Request) {} |
nothing calls this directly
no outgoing calls
no test coverage detected