2015-04-08 00:20:01 +08:00
|
|
|
package torrent
|
|
|
|
|
2015-08-03 14:23:05 +08:00
|
|
|
import (
|
2018-06-12 20:40:04 +08:00
|
|
|
"reflect"
|
|
|
|
"strings"
|
2015-08-03 14:23:05 +08:00
|
|
|
"testing"
|
2015-04-08 00:20:01 +08:00
|
|
|
|
2017-09-23 13:25:47 +08:00
|
|
|
"github.com/anacrolix/missinggo/iter"
|
2020-01-10 12:09:21 +08:00
|
|
|
"github.com/anacrolix/missinggo/v2/bitmap"
|
2018-06-12 20:40:04 +08:00
|
|
|
"github.com/davecgh/go-spew/spew"
|
2015-08-03 14:23:05 +08:00
|
|
|
"github.com/stretchr/testify/assert"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestTorrentOffsetRequest(t *testing.T) {
|
2021-01-28 11:23:22 +08:00
|
|
|
check := func(tl, ps, off int64, expected Request, ok bool) {
|
2015-07-15 13:31:18 +08:00
|
|
|
req, _ok := torrentOffsetRequest(tl, ps, defaultChunkSize, off)
|
2015-08-03 14:23:05 +08:00
|
|
|
assert.Equal(t, _ok, ok)
|
|
|
|
assert.Equal(t, req, expected)
|
2015-04-08 00:20:01 +08:00
|
|
|
}
|
|
|
|
check(13, 5, 0, newRequest(0, 0, 5), true)
|
|
|
|
check(13, 5, 3, newRequest(0, 0, 5), true)
|
|
|
|
check(13, 5, 11, newRequest(2, 0, 3), true)
|
2021-01-28 11:23:22 +08:00
|
|
|
check(13, 5, 13, Request{}, false)
|
2015-04-08 00:20:01 +08:00
|
|
|
}
|
2017-09-23 13:25:47 +08:00
|
|
|
|
2021-05-08 08:35:23 +08:00
|
|
|
func BenchmarkIterBitmapsDistinct(t *testing.B) {
|
|
|
|
t.ReportAllocs()
|
2021-09-14 11:46:50 +08:00
|
|
|
for i := 0; i < t.N; i += 1 {
|
2021-05-08 08:35:23 +08:00
|
|
|
var skip, first, second bitmap.Bitmap
|
|
|
|
skip.Add(1)
|
|
|
|
first.Add(1, 0, 3)
|
|
|
|
second.Add(1, 2, 0)
|
|
|
|
skipCopy := skip.Copy()
|
|
|
|
t.StartTimer()
|
|
|
|
output := iter.ToSlice(iterBitmapsDistinct(&skipCopy, first, second))
|
|
|
|
t.StopTimer()
|
|
|
|
assert.Equal(t, []interface{}{0, 3, 2}, output)
|
2021-05-21 12:01:41 +08:00
|
|
|
assert.Equal(t, []bitmap.BitIndex{1}, skip.ToSortedSlice())
|
2021-05-08 08:35:23 +08:00
|
|
|
}
|
2017-09-23 13:25:47 +08:00
|
|
|
}
|
2018-06-12 20:40:04 +08:00
|
|
|
|
|
|
|
func TestSpewConnStats(t *testing.T) {
|
|
|
|
s := spew.Sdump(ConnStats{})
|
2018-06-13 08:56:09 +08:00
|
|
|
t.Logf("\n%s", s)
|
2018-06-12 20:40:04 +08:00
|
|
|
lines := strings.Count(s, "\n")
|
|
|
|
assert.EqualValues(t, 2+reflect.ValueOf(ConnStats{}).NumField(), lines)
|
|
|
|
}
|