2014-05-28 23:27:48 +08:00
|
|
|
package torrent
|
|
|
|
|
|
|
|
import (
|
2016-05-07 16:56:44 +08:00
|
|
|
"io"
|
|
|
|
"io/ioutil"
|
|
|
|
"net"
|
2014-05-28 23:27:48 +08:00
|
|
|
"testing"
|
|
|
|
"time"
|
2014-12-26 14:17:00 +08:00
|
|
|
|
2016-03-22 09:07:03 +08:00
|
|
|
"github.com/anacrolix/missinggo/bitmap"
|
|
|
|
"github.com/stretchr/testify/assert"
|
2016-05-07 16:56:44 +08:00
|
|
|
"github.com/stretchr/testify/require"
|
2014-05-28 23:27:48 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestCancelRequestOptimized(t *testing.T) {
|
2016-05-07 16:56:44 +08:00
|
|
|
r, w := io.Pipe()
|
2014-05-28 23:27:48 +08:00
|
|
|
c := &connection{
|
|
|
|
PeerMaxRequests: 1,
|
2016-03-22 09:07:03 +08:00
|
|
|
peerPieces: func() bitmap.Bitmap {
|
|
|
|
var bm bitmap.Bitmap
|
|
|
|
bm.Set(1, true)
|
|
|
|
return bm
|
|
|
|
}(),
|
2016-05-07 16:56:44 +08:00
|
|
|
rw: struct {
|
|
|
|
io.Reader
|
|
|
|
io.Writer
|
|
|
|
}{
|
|
|
|
Writer: w,
|
|
|
|
},
|
|
|
|
conn: new(net.TCPConn),
|
|
|
|
// For the locks
|
|
|
|
t: &Torrent{cl: &Client{}},
|
2014-05-28 23:27:48 +08:00
|
|
|
}
|
2016-03-22 09:07:03 +08:00
|
|
|
assert.Len(t, c.Requests, 0)
|
2014-05-28 23:27:48 +08:00
|
|
|
c.Request(newRequest(1, 2, 3))
|
2016-05-07 16:56:44 +08:00
|
|
|
require.Len(t, c.Requests, 1)
|
2014-05-28 23:27:48 +08:00
|
|
|
// Posting this message should removing the pending Request.
|
2016-05-07 16:56:44 +08: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 23:27:48 +08:00
|
|
|
}
|