2014-05-28 15:27:48 +00:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2016-05-11 13:50:21 +00:00
|
|
|
"container/list"
|
2016-05-07 08:56:44 +00:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"net"
|
2016-09-11 05:43:57 +00:00
|
|
|
"sync"
|
2014-05-28 15:27:48 +00:00
|
|
|
"testing"
|
|
|
|
"time"
|
2014-12-26 06:17:00 +00:00
|
|
|
|
2016-03-22 01:07:03 +00:00
|
|
|
"github.com/anacrolix/missinggo/bitmap"
|
2016-09-11 05:43:57 +00:00
|
|
|
"github.com/anacrolix/missinggo/pubsub"
|
|
|
|
"github.com/bradfitz/iter"
|
2016-03-22 01:07:03 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-05-07 08:56:44 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
2016-09-11 05:43:57 +00:00
|
|
|
|
|
|
|
"github.com/anacrolix/torrent/metainfo"
|
|
|
|
"github.com/anacrolix/torrent/peer_protocol"
|
|
|
|
"github.com/anacrolix/torrent/storage"
|
2014-05-28 15:27:48 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCancelRequestOptimized(t *testing.T) {
|
2016-05-07 08:56:44 +00:00
|
|
|
r, w := io.Pipe()
|
2014-05-28 15:27:48 +00:00
|
|
|
c := &connection{
|
|
|
|
PeerMaxRequests: 1,
|
2016-03-22 01:07:03 +00:00
|
|
|
peerPieces: func() bitmap.Bitmap {
|
|
|
|
var bm bitmap.Bitmap
|
|
|
|
bm.Set(1, true)
|
|
|
|
return bm
|
|
|
|
}(),
|
2016-05-07 08:56:44 +00:00
|
|
|
rw: struct {
|
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
}{
|
|
|
|
Writer: w,
|
|
|
|
},
|
|
|
|
conn: new(net.TCPConn),
|
|
|
|
// For the locks
|
|
|
|
t: &Torrent{cl: &Client{}},
|
2014-05-28 15:27:48 +00:00
|
|
|
}
|
2016-03-22 01:07:03 +00:00
|
|
|
assert.Len(t, c.Requests, 0)
|
2014-05-28 15:27:48 +00:00
|
|
|
c.Request(newRequest(1, 2, 3))
|
2016-05-07 08:56:44 +00:00
|
|
|
require.Len(t, c.Requests, 1)
|
2014-05-28 15:27:48 +00:00
|
|
|
// Posting this message should removing the pending Request.
|
2016-05-07 08:56:44 +00:00
|
|
|
require.True(t, c.Cancel(newRequest(1, 2, 3)))
|
|
|
|
assert.Len(t, c.Requests, 0)
|
|
|
|
// Check that write optimization filters out the Request, due to the
|
|
|
|
// Cancel. We should have received an Interested, due to the initial
|
|
|
|
// request, and then keep-alives until we close the connection.
|
|
|
|
go c.writer(0)
|
|
|
|
b := make([]byte, 9)
|
|
|
|
n, err := io.ReadFull(r, b)
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, len(b), n)
|
|
|
|
require.EqualValues(t, "\x00\x00\x00\x01\x02"+"\x00\x00\x00\x00", string(b))
|
|
|
|
time.Sleep(time.Millisecond)
|
|
|
|
c.mu().Lock()
|
|
|
|
c.Close()
|
|
|
|
c.mu().Unlock()
|
|
|
|
w.Close()
|
|
|
|
b, err = ioutil.ReadAll(r)
|
|
|
|
require.NoError(t, err)
|
|
|
|
// A single keep-alive will have gone through, as writer would be stuck
|
|
|
|
// trying to flush it, and then promptly close.
|
|
|
|
require.EqualValues(t, "\x00\x00\x00\x00", string(b))
|
2014-05-28 15:27:48 +00:00
|
|
|
}
|
2016-05-11 13:50:21 +00:00
|
|
|
|
|
|
|
// Ensure that no race exists between sending a bitfield, and a subsequent
|
|
|
|
// Have that would potentially alter it.
|
|
|
|
func TestSendBitfieldThenHave(t *testing.T) {
|
|
|
|
r, w := io.Pipe()
|
|
|
|
c := &connection{
|
|
|
|
t: &Torrent{
|
|
|
|
cl: &Client{},
|
|
|
|
},
|
|
|
|
rw: struct {
|
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
}{r, w},
|
|
|
|
outgoingUnbufferedMessages: list.New(),
|
|
|
|
}
|
|
|
|
go c.writer(time.Minute)
|
|
|
|
c.mu().Lock()
|
|
|
|
c.Bitfield([]bool{false, true, false})
|
|
|
|
c.mu().Unlock()
|
|
|
|
c.mu().Lock()
|
|
|
|
c.Have(2)
|
|
|
|
c.mu().Unlock()
|
|
|
|
b := make([]byte, 15)
|
|
|
|
n, err := io.ReadFull(r, b)
|
|
|
|
c.mu().Lock()
|
|
|
|
// This will cause connection.writer to terminate.
|
|
|
|
c.closed.Set()
|
|
|
|
c.mu().Unlock()
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.EqualValues(t, 15, n)
|
|
|
|
// Here we see that the bitfield doesn't have piece 2 set, as that should
|
|
|
|
// arrive in the following Have message.
|
|
|
|
require.EqualValues(t, "\x00\x00\x00\x02\x05@\x00\x00\x00\x05\x04\x00\x00\x00\x02", string(b))
|
|
|
|
}
|
2016-09-11 05:43:57 +00:00
|
|
|
|
|
|
|
type torrentStorage struct {
|
|
|
|
writeSem sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) Close() error { return nil }
|
|
|
|
|
|
|
|
func (me *torrentStorage) Piece(mp metainfo.Piece) storage.PieceImpl {
|
|
|
|
return me
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) GetIsComplete() bool {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) MarkComplete() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) MarkNotComplete() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) ReadAt([]byte, int64) (int, error) {
|
|
|
|
panic("shouldn't be called")
|
|
|
|
}
|
|
|
|
|
|
|
|
func (me *torrentStorage) WriteAt(b []byte, _ int64) (int, error) {
|
|
|
|
if len(b) != defaultChunkSize {
|
|
|
|
panic(len(b))
|
|
|
|
}
|
|
|
|
me.writeSem.Unlock()
|
|
|
|
return len(b), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkConnectionMainReadLoop(b *testing.B) {
|
|
|
|
cl := &Client{}
|
|
|
|
ts := &torrentStorage{}
|
|
|
|
t := &Torrent{
|
|
|
|
cl: cl,
|
|
|
|
info: &metainfo.Info{
|
|
|
|
Pieces: make([]byte, 20),
|
|
|
|
Length: 1 << 20,
|
|
|
|
PieceLength: 1 << 20,
|
|
|
|
},
|
|
|
|
chunkSize: defaultChunkSize,
|
|
|
|
storage: &storage.Torrent{ts},
|
|
|
|
pieceStateChanges: pubsub.NewPubSub(),
|
|
|
|
}
|
|
|
|
t.makePieces()
|
|
|
|
t.pendingPieces.Add(0)
|
|
|
|
r, w := io.Pipe()
|
|
|
|
cn := &connection{
|
|
|
|
t: t,
|
|
|
|
rw: struct {
|
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
}{r, nil},
|
|
|
|
}
|
|
|
|
mrlErr := make(chan error)
|
|
|
|
cl.mu.Lock()
|
|
|
|
go func() {
|
|
|
|
err := cn.mainReadLoop()
|
|
|
|
if err != nil {
|
|
|
|
mrlErr <- err
|
|
|
|
}
|
|
|
|
close(mrlErr)
|
|
|
|
}()
|
|
|
|
msg := peer_protocol.Message{
|
|
|
|
Type: peer_protocol.Piece,
|
|
|
|
Piece: make([]byte, defaultChunkSize),
|
|
|
|
}
|
|
|
|
wb, err := msg.MarshalBinary()
|
|
|
|
require.NoError(b, err)
|
|
|
|
b.SetBytes(int64(len(msg.Piece)))
|
|
|
|
ts.writeSem.Lock()
|
|
|
|
for range iter.N(b.N) {
|
|
|
|
cl.mu.Lock()
|
|
|
|
t.pieces[0].DirtyChunks.Clear()
|
|
|
|
cl.mu.Unlock()
|
|
|
|
n, err := w.Write(wb)
|
|
|
|
require.NoError(b, err)
|
|
|
|
require.EqualValues(b, len(wb), n)
|
|
|
|
ts.writeSem.Lock()
|
|
|
|
}
|
|
|
|
w.Close()
|
|
|
|
require.NoError(b, <-mrlErr)
|
|
|
|
require.EqualValues(b, b.N, cn.UsefulChunksReceived)
|
|
|
|
}
|