mtproto: add compat transport quick ack support

(cherry picked from commit d051bc37bd14076fdd0a83ad41cd507929b20ece)
This commit is contained in:
A 2026-06-09 02:44:15 +08:00
parent 47cab2c9b0
commit 091d8f084b
11 changed files with 915 additions and 21 deletions

View file

@ -1,17 +1,58 @@
package mtprotoedge
import (
"bytes"
"context"
"crypto/rand"
"sync"
"testing"
"time"
"github.com/gotd/td/bin"
"github.com/gotd/td/crypto"
"github.com/gotd/td/mt"
"github.com/gotd/td/proto"
"github.com/gotd/td/tg"
)
func TestEncryptOutboundFrameDecryptsWithGotdCipher(t *testing.T) {
var key crypto.Key
if _, err := rand.Read(key[:]); err != nil {
t.Fatalf("rand key: %v", err)
}
authKey := key.WithID()
body := mustEncodeTL(t, &mt.NewSessionCreated{
FirstMsgID: 111,
UniqueID: 222,
ServerSalt: 333,
})
c := &Conn{
cipher: crypto.NewServerCipher(rand.Reader),
key: authKey,
salt: 12345,
sessionID: 67890,
}
out, err := c.encryptOutboundFrame(&outboundFrame{
msgID: 7649066000000000001,
seqNo: 1,
typeID: mt.NewSessionCreatedTypeID,
body: body,
})
if err != nil {
t.Fatalf("encrypt: %v", err)
}
data, err := crypto.NewClientCipher(rand.Reader).DecryptFromBuffer(authKey, &bin.Buffer{Buf: append([]byte(nil), out.Raw()...)})
if err != nil {
t.Fatalf("decrypt: %v", err)
}
if data.Salt != c.salt || data.SessionID != c.sessionID {
t.Fatalf("salt/session = %d/%d, want %d/%d", data.Salt, data.SessionID, c.salt, c.sessionID)
}
if got := data.Data(); !bytes.Equal(got, body) {
t.Fatalf("body = %x, want %x", got, body)
}
}
func TestOutboundActorSerializesConcurrentSends(t *testing.T) {
const dc = 2
addr, pub, srv := startTestServer(t, Options{DC: dc})