torrent/issue97_test.go

29 lines
635 B
Go
Raw Normal View History

2016-07-12 06:42:54 +00:00
package torrent
import (
"io/ioutil"
"os"
"testing"
"github.com/stretchr/testify/require"
"github.com/anacrolix/torrent/internal/testutil"
"github.com/anacrolix/torrent/storage"
)
func TestHashPieceAfterStorageClosed(t *testing.T) {
td, err := ioutil.TempDir("", "")
require.NoError(t, err)
defer os.RemoveAll(td)
cs := storage.NewClient(storage.NewFile(td))
2016-07-12 06:42:54 +00:00
tt := &Torrent{}
mi := testutil.GreetingMetaInfo()
info := mi.UnmarshalInfo()
tt.info = &info
2016-07-12 06:42:54 +00:00
tt.makePieces()
tt.storage, err = cs.OpenTorrent(tt.info, mi.HashInfoBytes())
2016-07-12 06:42:54 +00:00
require.NoError(t, err)
require.NoError(t, tt.storage.Close())
tt.hashPiece(0)
}