torrent/storage/file_test.go

39 lines
818 B
Go
Raw Normal View History

2016-03-28 09:38:30 +00:00
package storage
import (
"bytes"
"io"
"io/ioutil"
"os"
"path/filepath"
"testing"
2016-03-28 09:38:30 +00:00
"github.com/anacrolix/missinggo"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/anacrolix/torrent/metainfo"
)
func TestShortFile(t *testing.T) {
td, err := ioutil.TempDir("", "")
require.NoError(t, err)
defer os.RemoveAll(td)
s := NewFile(td)
info := &metainfo.Info{
Name: "a",
Length: 2,
PieceLength: missinggo.MiB,
2016-03-28 09:38:30 +00:00
}
ts, err := s.OpenTorrent(info, metainfo.Hash{})
assert.NoError(t, err)
f, err := os.Create(filepath.Join(td, "a"))
err = f.Truncate(1)
f.Close()
var buf bytes.Buffer
2016-03-28 09:38:30 +00:00
p := info.Piece(0)
n, err := io.Copy(&buf, io.NewSectionReader(ts.Piece(p), 0, p.Length()))
assert.EqualValues(t, 1, n)
assert.Equal(t, io.ErrUnexpectedEOF, err)
}