torrent/issue97_test.go

29 lines
632 B
Go
Raw Permalink Normal View History

2016-07-12 06:42:54 +00:00
package torrent
import (
"testing"
"github.com/anacrolix/log"
2019-08-21 10:58:40 +00:00
"github.com/stretchr/testify/require"
2016-07-12 06:42:54 +00:00
"github.com/anacrolix/torrent/internal/testutil"
"github.com/anacrolix/torrent/storage"
)
func TestHashPieceAfterStorageClosed(t *testing.T) {
td := t.TempDir()
2023-05-27 04:57:41 +00:00
cs := storage.NewFile(td)
defer cs.Close()
2018-01-25 06:10:37 +00:00
tt := &Torrent{
2023-05-27 04:57:41 +00:00
storageOpener: storage.NewClient(cs),
logger: log.Default,
chunkSize: defaultChunkSize,
2018-01-25 06:10:37 +00:00
}
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)
}