torrent/issue97_test.go

27 lines
594 B
Go
Raw Normal View History

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