mox/mox-/lifecycle_test.go

40 lines
779 B
Go
Raw Normal View History

2023-01-30 16:27:06 +03:00
package mox
import (
"context"
2023-01-30 16:27:06 +03:00
"errors"
"net"
"os"
"testing"
)
func TestLifecycle(t *testing.T) {
Shutdown, ShutdownCancel = context.WithCancel(context.Background())
2023-01-30 16:27:06 +03:00
nc0, nc1 := net.Pipe()
defer nc0.Close()
defer nc1.Close()
Connections.Register(nc0, "proto", "listener")
Connections.Shutdown()
2023-01-30 16:27:06 +03:00
done := Connections.Done()
2023-01-30 16:27:06 +03:00
select {
case <-done:
t.Fatalf("already done, but still a connection open")
default:
}
_, err := nc0.Read(make([]byte, 1))
if err == nil {
t.Fatalf("expected i/o deadline exceeded, got no error")
}
if !errors.Is(err, os.ErrDeadlineExceeded) {
t.Fatalf("got %v, expected os.ErrDeadlineExceeded", err)
}
Connections.Unregister(nc0)
2023-01-30 16:27:06 +03:00
select {
case <-done:
default:
t.Fatalf("unregistered connection, but not yet done")
}
}