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
81 lines
1.8 KiB
Go
81 lines
1.8 KiB
Go
package blocked
|
|
|
|
import (
|
|
"context"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tg"
|
|
"go.mau.fi/mautrix-telegram/pkg/gotd/tgmock"
|
|
)
|
|
|
|
func generateBlocked(count int) []tg.PeerBlocked {
|
|
r := make([]tg.PeerBlocked, 0, count)
|
|
|
|
for i := 0; i < count; i++ {
|
|
r = append(r, tg.PeerBlocked{
|
|
PeerID: &tg.PeerUser{
|
|
UserID: int64(i + 1),
|
|
},
|
|
Date: i,
|
|
})
|
|
}
|
|
|
|
return r
|
|
}
|
|
|
|
func result(r []tg.PeerBlocked, count int) tg.ContactsBlockedClass {
|
|
return &tg.ContactsBlockedSlice{
|
|
Blocked: r,
|
|
Count: count,
|
|
}
|
|
}
|
|
|
|
func TestIterator(t *testing.T) {
|
|
ctx := context.Background()
|
|
mock := tgmock.NewRequire(t)
|
|
limit := 10
|
|
totalRecords := 3 * limit
|
|
expected := generateBlocked(totalRecords)
|
|
raw := tg.NewClient(mock)
|
|
|
|
mock.ExpectCall(&tg.ContactsGetBlockedRequest{
|
|
Offset: 0,
|
|
Limit: limit,
|
|
}).ThenResult(result(expected[0:limit], totalRecords))
|
|
mock.ExpectCall(&tg.ContactsGetBlockedRequest{
|
|
Offset: limit,
|
|
Limit: limit,
|
|
}).ThenResult(result(expected[limit:2*limit], totalRecords))
|
|
mock.ExpectCall(&tg.ContactsGetBlockedRequest{
|
|
Offset: 2 * limit,
|
|
Limit: limit,
|
|
}).ThenResult(result(expected[2*limit:3*limit], totalRecords))
|
|
mock.ExpectCall(&tg.ContactsGetBlockedRequest{
|
|
Offset: 3 * limit,
|
|
Limit: limit,
|
|
}).ThenResult(result(expected[3*limit:], totalRecords))
|
|
|
|
iter := NewQueryBuilder(raw).GetBlocked().BatchSize(10).Iter()
|
|
i := 0
|
|
for iter.Next(ctx) {
|
|
require.Equal(t, expected[i], iter.Value().Contact)
|
|
i++
|
|
}
|
|
require.NoError(t, iter.Err())
|
|
require.Equal(t, totalRecords, i)
|
|
|
|
total, err := iter.Total(ctx)
|
|
require.NoError(t, err)
|
|
require.Equal(t, totalRecords, total)
|
|
|
|
mock.ExpectCall(&tg.ContactsGetBlockedRequest{
|
|
Offset: 0,
|
|
Limit: 1,
|
|
}).ThenResult(result(expected[:0], totalRecords))
|
|
total, err = iter.FetchTotal(ctx)
|
|
require.NoError(t, err)
|
|
require.Equal(t, totalRecords, total)
|
|
}
|