move gotd fork into repo. (#111)

- update to latest telegram layer
- remove some references to fields in tg.Entities that don't exist in
the schema
- originally added here:
https://github.com/beeper/td/commit/820929062a2ba0104397bc01235ab58a9cff780e
  - referenced here
-
https://github.com/mautrix/telegramgo/commit/124f0967ed195b5a380c9bd02e170ada9710dde3
-
https://github.com/mautrix/telegramgo/commit/4205047aab2e0639217148b5d125bfaab668bd8e
This commit is contained in:
Adam Van Ymeren
2025-06-27 20:03:37 -07:00
committed by GitHub
parent 0952df0244
commit 7a04f298d2
19264 changed files with 1539697 additions and 84 deletions
+152
View File
@@ -0,0 +1,152 @@
package pool
import (
"context"
"testing"
"github.com/go-faster/errors"
"github.com/stretchr/testify/require"
"go.mau.fi/mautrix-telegram/pkg/gotd/bin"
"go.mau.fi/mautrix-telegram/pkg/gotd/tdsync"
)
type mockConn struct {
ready *tdsync.Ready
readyOnRun bool
}
func (mockConn) Ping(ctx context.Context) error {
return errors.New("not implemented")
}
func newMockConn(readyOnRun bool) mockConn {
return mockConn{
ready: tdsync.NewReady(),
readyOnRun: readyOnRun,
}
}
func (m mockConn) Run(ctx context.Context) error {
if m.readyOnRun {
m.ready.Signal()
}
<-ctx.Done()
return ctx.Err()
}
func (m mockConn) Invoke(ctx context.Context, input bin.Encoder, output bin.Decoder) error {
return nil
}
func (m mockConn) Ready() <-chan struct{} {
return m.ready.Ready()
}
func TestDC_acquire(t *testing.T) {
t.Run("AcquireRelease", func(t *testing.T) {
a := require.New(t)
ctx := context.Background()
created := 0
p := NewDC(ctx, 2, func() Conn {
created++
return newMockConn(true)
}, DCOptions{
MaxOpenConnections: 1,
})
defer func() {
a.NoError(p.Close())
}()
c, err := p.acquire(ctx)
a.NoError(err)
a.NotNil(c)
a.Equal(1, created, "Pool must create new connection")
p.release(c)
_, err = p.acquire(ctx)
a.NoError(err)
a.Equal(1, created, "Pool must re-use connection")
p.release(c)
})
t.Run("CancelWhileWait", func(t *testing.T) {
a := require.New(t)
ctx := context.Background()
created := 0
p := NewDC(ctx, 2, func() Conn {
created++
return newMockConn(true)
}, DCOptions{
MaxOpenConnections: 1,
})
defer func() {
a.NoError(p.Close())
}()
c, err := p.acquire(ctx)
a.NoError(err)
a.NotNil(c)
a.Equal(1, created, "Pool must create new connection")
canceledCtx, cancel := context.WithCancel(ctx)
cancel()
c2, err := p.acquire(canceledCtx)
a.ErrorIs(err, context.Canceled)
a.Nil(c2)
a.Empty(p.freeReq.m)
})
t.Run("Dead", func(t *testing.T) {
a := require.New(t)
ctx := context.Background()
created := 0
p := NewDC(ctx, 2, func() Conn {
created++
return newMockConn(true)
}, DCOptions{
MaxOpenConnections: 1,
})
defer func() {
a.NoError(p.Close())
}()
c, err := p.acquire(ctx)
a.NoError(err)
a.NotNil(c)
a.Equal(1, created, "Pool must create new connection")
p.release(c)
c.dead.Signal()
_, err = p.acquire(ctx)
a.NoError(err)
a.Equal(2, created, "Pool must not re-use dead connection")
})
t.Run("CancelWhileCreate", func(t *testing.T) {
a := require.New(t)
ctx := context.Background()
created := 0
p := NewDC(ctx, 2, func() Conn {
created++
return newMockConn(false)
}, DCOptions{
MaxOpenConnections: 1,
})
defer func() {
a.NoError(p.Close())
}()
canceledCtx, cancel := context.WithCancel(ctx)
cancel()
c, err := p.acquire(canceledCtx)
a.ErrorIs(err, context.Canceled)
a.Nil(c)
})
}