308 lines
9.8 KiB
Go
308 lines
9.8 KiB
Go
package terminal
|
|
|
|
import (
|
|
"context"
|
|
"encoding/base64"
|
|
"sync"
|
|
"sync/atomic"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/aoagents/agent-orchestrator/backend/internal/cdc"
|
|
"github.com/aoagents/agent-orchestrator/backend/internal/ports"
|
|
)
|
|
|
|
// fakeConn is an in-memory wsConn driven by channels.
|
|
type fakeConn struct {
|
|
in chan clientMsg
|
|
out chan serverMsg
|
|
pings int32
|
|
once sync.Once
|
|
closed chan struct{}
|
|
}
|
|
|
|
func newFakeConn() *fakeConn {
|
|
return &fakeConn{in: make(chan clientMsg, 16), out: make(chan serverMsg, 64), closed: make(chan struct{})}
|
|
}
|
|
|
|
func (c *fakeConn) ReadJSON(ctx context.Context, v any) error {
|
|
select {
|
|
case m := <-c.in:
|
|
*(v.(*clientMsg)) = m
|
|
return nil
|
|
case <-ctx.Done():
|
|
return ctx.Err()
|
|
case <-c.closed:
|
|
return context.Canceled
|
|
}
|
|
}
|
|
|
|
func (c *fakeConn) WriteJSON(_ context.Context, v any) error {
|
|
c.out <- v.(serverMsg)
|
|
return nil
|
|
}
|
|
|
|
func (c *fakeConn) Ping(context.Context) error {
|
|
atomic.AddInt32(&c.pings, 1)
|
|
return nil
|
|
}
|
|
|
|
func (c *fakeConn) Close(string) error {
|
|
c.once.Do(func() { close(c.closed) })
|
|
return nil
|
|
}
|
|
|
|
// recv waits for a frame of the given channel+type, draining others.
|
|
func recv(t *testing.T, c *fakeConn, ch, typ string, d time.Duration) serverMsg {
|
|
t.Helper()
|
|
deadline := time.After(d)
|
|
for {
|
|
select {
|
|
case m := <-c.out:
|
|
if m.Ch == ch && m.Type == typ {
|
|
return m
|
|
}
|
|
case <-deadline:
|
|
t.Fatalf("did not receive %s/%s within %s", ch, typ, d)
|
|
}
|
|
}
|
|
}
|
|
|
|
func TestServeOpenStreamsAndWritesTerminal(t *testing.T) {
|
|
src := &fakeSource{}
|
|
pty := newFakePTY()
|
|
sp := &fakeSpawner{ptys: []*fakePTY{pty}}
|
|
mgr := NewManager(src, nil, testLogger(), WithSpawn(sp.spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
recv(t, conn, chTerminal, msgOpened, time.Second)
|
|
|
|
pty.push([]byte("prompt$ "))
|
|
data := recv(t, conn, chTerminal, msgData, time.Second)
|
|
got, _ := base64.StdEncoding.DecodeString(data.Data)
|
|
if string(got) != "prompt$ " {
|
|
t.Fatalf("streamed data = %q", got)
|
|
}
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgData, Data: base64.StdEncoding.EncodeToString([]byte("whoami\n"))}
|
|
eventually(t, time.Second, func() bool { return string(pty.writtenBytes()) == "whoami\n" })
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgResize, Rows: 30, Cols: 100}
|
|
eventually(t, time.Second, func() bool {
|
|
rs := pty.resizeCalls()
|
|
return len(rs) == 1 && rs[0] == [2]uint16{30, 100}
|
|
})
|
|
}
|
|
|
|
// nextTerminal returns the next frame on conn.out (no skipping), so callers can
|
|
// assert frame ordering rather than just presence.
|
|
func nextTerminal(t *testing.T, c *fakeConn) serverMsg {
|
|
t.Helper()
|
|
select {
|
|
case m := <-c.out:
|
|
return m
|
|
case <-time.After(time.Second):
|
|
t.Fatal("no frame within 1s")
|
|
return serverMsg{}
|
|
}
|
|
}
|
|
|
|
// Opening a terminal whose session has already exited but is not yet reaped from
|
|
// m.sessions must (1) send opened before exited and (2) not register the noop
|
|
// unsubscribe, so a later open for the same id on this connection is still
|
|
// served instead of being silently dropped by the already-open guard.
|
|
func TestServeOpenAlreadyExitedSessionDoesNotBlockReopen(t *testing.T) {
|
|
src := &fakeSource{}
|
|
sp := &fakeSpawner{}
|
|
mgr := NewManager(src, nil, testLogger(), WithSpawn(sp.spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
|
|
exited := newSession("t1", ports.RuntimeHandle{ID: "t1"}, src, sp.spawn, testLogger())
|
|
exited.markExited()
|
|
mgr.mu.Lock()
|
|
mgr.sessions["t1"] = exited
|
|
mgr.mu.Unlock()
|
|
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
if m := nextTerminal(t, conn); m.Type != msgOpened {
|
|
t.Fatalf("first frame = %q, want opened", m.Type)
|
|
}
|
|
if m := nextTerminal(t, conn); m.Type != msgExited {
|
|
t.Fatalf("second frame = %q, want exited", m.Type)
|
|
}
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
if m := nextTerminal(t, conn); m.Type != msgOpened {
|
|
t.Fatalf("re-open frame = %q, want opened (open was dropped, entry stuck)", m.Type)
|
|
}
|
|
}
|
|
|
|
// A session that exits after being opened must clear its connection entry on
|
|
// exit, so a later open for the same id is served rather than dropped by the
|
|
// already-open guard.
|
|
func TestServeExitAfterOpenClearsEntryAllowingReopen(t *testing.T) {
|
|
src := &fakeSource{}
|
|
src.setAlive(false) // a dropped pty must not re-attach -> session exits
|
|
p := newFakePTY()
|
|
sp := &fakeSpawner{ptys: []*fakePTY{p}}
|
|
mgr := NewManager(src, nil, testLogger(), WithSpawn(sp.spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
recv(t, conn, chTerminal, msgOpened, time.Second)
|
|
|
|
p.Close() // drop the pty; IsAlive false => session exits, no re-attach
|
|
recv(t, conn, chTerminal, msgExited, time.Second)
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
recv(t, conn, chTerminal, msgOpened, 2*time.Second)
|
|
}
|
|
|
|
// The subscribe-to-assign window: a session can exit (running onExit, which
|
|
// deletes c.terms[id]) between subscribe returning exited=false and openTerminal
|
|
// assigning c.terms[id] = unsub. If the assign resurrects that entry without
|
|
// re-checking, the stale entry traps every later open for the id on this
|
|
// connection. Close the pty concurrently with the open (IsAlive false => no
|
|
// re-attach) so the exit races the assign across many iterations; every reopen
|
|
// must be served (opened), never silently dropped by the open guard.
|
|
func TestServeReopenAfterImmediateExitNeverStuck(t *testing.T) {
|
|
for i := 0; i < 400; i++ {
|
|
src := &fakeSource{}
|
|
src.setAlive(false) // dropped pty must not re-attach -> session exits
|
|
p := newFakePTY() // alive at subscribe; closed below to race the assign
|
|
sp := &fakeSpawner{ptys: []*fakePTY{p}}
|
|
mgr := NewManager(src, nil, testLogger(), WithSpawn(sp.spawn), WithHeartbeat(0))
|
|
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
// Send the open and close the pty concurrently: the session's exit
|
|
// (onExit -> delete c.terms[id]) then races openTerminal's assign of
|
|
// c.terms[id] = unsub. On the iterations where exit lands in the
|
|
// subscribe-to-assign window, an unguarded assign resurrects a stale
|
|
// entry for the dead pane, trapping every later open for this id.
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
go p.Close()
|
|
|
|
recv(t, conn, chTerminal, msgOpened, time.Second)
|
|
recv(t, conn, chTerminal, msgExited, time.Second)
|
|
|
|
// The reopen must be served even when the first open's session exited in
|
|
// the subscribe-to-assign window.
|
|
conn.in <- clientMsg{Ch: chTerminal, ID: "t1", Type: msgOpen}
|
|
recv(t, conn, chTerminal, msgOpened, time.Second)
|
|
|
|
cancel()
|
|
mgr.Close()
|
|
}
|
|
}
|
|
|
|
func TestServeRejectsOpenWithoutID(t *testing.T) {
|
|
mgr := NewManager(&fakeSource{}, nil, testLogger(), WithSpawn((&fakeSpawner{}).spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chTerminal, Type: msgOpen}
|
|
msg := recv(t, conn, chTerminal, msgError, time.Second)
|
|
if msg.Error == "" {
|
|
t.Fatal("expected an error message for open without id")
|
|
}
|
|
}
|
|
|
|
func TestServeForwardsSessionChannelFromCDC(t *testing.T) {
|
|
bc := cdc.NewBroadcaster()
|
|
mgr := NewManager(&fakeSource{}, bc, testLogger(), WithSpawn((&fakeSpawner{}).spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chSubscribe, Type: msgSubscribe}
|
|
// Give the subscription time to register before publishing.
|
|
eventually(t, time.Second, func() bool {
|
|
bc.Publish(cdc.Event{Seq: 9, ProjectID: "p1", SessionID: "s1", Type: cdc.EventSessionUpdated})
|
|
select {
|
|
case m := <-conn.out:
|
|
return m.Ch == chSessions && m.Session != nil && m.Session.Seq == 9
|
|
default:
|
|
return false
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestServeSystemPingGetsPong(t *testing.T) {
|
|
mgr := NewManager(&fakeSource{}, nil, testLogger(), WithSpawn((&fakeSpawner{}).spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
conn.in <- clientMsg{Ch: chSystem, Type: msgPing}
|
|
recv(t, conn, chSystem, msgPong, time.Second)
|
|
}
|
|
|
|
func TestServeHeartbeatPings(t *testing.T) {
|
|
mgr := NewManager(&fakeSource{}, nil, testLogger(), WithSpawn((&fakeSpawner{}).spawn), WithHeartbeat(10*time.Millisecond))
|
|
defer mgr.Close()
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
defer cancel()
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
eventually(t, time.Second, func() bool { return atomic.LoadInt32(&conn.pings) >= 2 })
|
|
}
|
|
|
|
func TestServeClosesConnOnReadEnd(t *testing.T) {
|
|
mgr := NewManager(&fakeSource{}, nil, testLogger(), WithSpawn((&fakeSpawner{}).spawn), WithHeartbeat(0))
|
|
defer mgr.Close()
|
|
conn := newFakeConn()
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
go mgr.Serve(ctx, conn)
|
|
|
|
cancel() // client/server context ends
|
|
select {
|
|
case <-conn.closed:
|
|
case <-time.After(time.Second):
|
|
t.Fatal("Serve must close the conn when the context is cancelled")
|
|
}
|
|
}
|
|
|
|
func TestEnqueueOverflowCancelsConn(t *testing.T) {
|
|
cancelled := make(chan struct{})
|
|
c := &connState{
|
|
out: make(chan serverMsg, 1),
|
|
cancel: func() { close(cancelled) },
|
|
terms: map[string]func(){},
|
|
}
|
|
c.enqueue(serverMsg{Ch: chTerminal, Type: msgData}) // fills buffer
|
|
c.enqueue(serverMsg{Ch: chTerminal, Type: msgData}) // overflow -> cancel
|
|
select {
|
|
case <-cancelled:
|
|
case <-time.After(time.Second):
|
|
t.Fatal("overflow must cancel the connection")
|
|
}
|
|
}
|