7a04f298d2
- 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
112 lines
2.2 KiB
Go
112 lines
2.2 KiB
Go
package unpack
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/go-faster/errors"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tg"
|
|
)
|
|
|
|
func TestMessage(t *testing.T) {
|
|
testMsg := &tg.Message{
|
|
ID: 10,
|
|
Message: "Golang is always going to do some approximation of the right thing.",
|
|
}
|
|
testErr := errors.New("женой накормили толпу")
|
|
|
|
type args struct {
|
|
u tg.UpdatesClass
|
|
err error
|
|
}
|
|
tests := []struct {
|
|
name string
|
|
input args
|
|
output *tg.Message
|
|
isErr bool
|
|
}{
|
|
{"Good", args{
|
|
u: &tg.Updates{
|
|
Updates: []tg.UpdateClass{
|
|
&tg.UpdateNewMessage{
|
|
Message: testMsg,
|
|
},
|
|
},
|
|
},
|
|
err: nil,
|
|
}, testMsg, false},
|
|
{"GoodChannel", args{
|
|
u: &tg.Updates{
|
|
Updates: []tg.UpdateClass{
|
|
&tg.UpdateNewChannelMessage{
|
|
Message: testMsg,
|
|
},
|
|
},
|
|
},
|
|
err: nil,
|
|
}, testMsg, false},
|
|
{"Short", args{
|
|
u: &tg.UpdateShort{
|
|
Update: &tg.UpdateNewMessage{
|
|
Message: testMsg,
|
|
},
|
|
},
|
|
err: nil,
|
|
}, testMsg, false},
|
|
{"ShortSent", args{
|
|
u: &tg.UpdateShortSentMessage{
|
|
Out: testMsg.Out,
|
|
ID: testMsg.ID,
|
|
Date: testMsg.Date,
|
|
Media: testMsg.Media,
|
|
Entities: testMsg.Entities,
|
|
TTLPeriod: testMsg.TTLPeriod,
|
|
},
|
|
err: nil,
|
|
}, testMsg, false},
|
|
{"ShortChat", args{
|
|
u: &tg.UpdateShortChatMessage{
|
|
Out: testMsg.Out,
|
|
Mentioned: testMsg.Mentioned,
|
|
MediaUnread: testMsg.MediaUnread,
|
|
Silent: testMsg.Silent,
|
|
ID: testMsg.ID,
|
|
Message: testMsg.Message,
|
|
Date: testMsg.Date,
|
|
FwdFrom: testMsg.FwdFrom,
|
|
ViaBotID: testMsg.ViaBotID,
|
|
ReplyTo: testMsg.ReplyTo,
|
|
Entities: testMsg.Entities,
|
|
TTLPeriod: testMsg.TTLPeriod,
|
|
},
|
|
err: nil,
|
|
}, testMsg, false},
|
|
{"ExternalError", args{
|
|
u: nil,
|
|
err: testErr,
|
|
}, nil, true},
|
|
{"BadUnpack", args{
|
|
u: &tg.UpdateShort{
|
|
Update: &tg.UpdateConfig{},
|
|
},
|
|
err: nil,
|
|
}, nil, true},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
t.Run(test.name, func(t *testing.T) {
|
|
a := require.New(t)
|
|
|
|
r, err := Message(test.input.u, test.input.err)
|
|
if test.isErr {
|
|
a.Error(err)
|
|
return
|
|
}
|
|
|
|
a.NoError(err)
|
|
a.Equal(testMsg.ID, r.ID)
|
|
})
|
|
}
|
|
}
|