mirror of
https://github.com/rclone/rclone.git
synced 2025-06-04 01:06:05 +02:00
This commit modernizes Go usage. This was done with: go run golang.org/x/tools/gopls/internal/analysis/modernize/cmd/modernize@latest -fix -test ./... Then files needed to be `go fmt`ed and a few comments needed to be restored. The modernizations include replacing - if/else conditional assignment by a call to the built-in min or max functions added in go1.21 - sort.Slice(x, func(i, j int) bool) { return s[i] < s[j] } by a call to slices.Sort(s), added in go1.21 - interface{} by the 'any' type added in go1.18 - append([]T(nil), s...) by slices.Clone(s) or slices.Concat(s), added in go1.21 - loop around an m[k]=v map update by a call to one of the Collect, Copy, Clone, or Insert functions from the maps package, added in go1.21 - []byte(fmt.Sprintf...) by fmt.Appendf(nil, ...), added in go1.19 - append(s[:i], s[i+1]...) by slices.Delete(s, i, i+1), added in go1.21 - a 3-clause for i := 0; i < n; i++ {} loop by for i := range n {}, added in go1.22
89 lines
2.8 KiB
Go
89 lines
2.8 KiB
Go
package dbhash_test
|
|
|
|
import (
|
|
"encoding/hex"
|
|
"fmt"
|
|
"testing"
|
|
|
|
"github.com/rclone/rclone/backend/dropbox/dbhash"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func testChunk(t *testing.T, chunk int) {
|
|
data := make([]byte, chunk)
|
|
for i := range chunk {
|
|
data[i] = 'A'
|
|
}
|
|
for _, test := range []struct {
|
|
n int
|
|
want string
|
|
}{
|
|
{0, "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"},
|
|
{1, "1cd6ef71e6e0ff46ad2609d403dc3fee244417089aa4461245a4e4fe23a55e42"},
|
|
{2, "01e0655fb754d10418a73760f57515f4903b298e6d67dda6bf0987fa79c22c88"},
|
|
{4096, "8620913d33852befe09f16fff8fd75f77a83160d29f76f07e0276e9690903035"},
|
|
{4194303, "647c8627d70f7a7d13ce96b1e7710a771a55d41a62c3da490d92e56044d311fa"},
|
|
{4194304, "d4d63bac5b866c71620185392a8a6218ac1092454a2d16f820363b69852befa3"},
|
|
{4194305, "8f553da8d00d0bf509d8470e242888be33019c20c0544811f5b2b89e98360b92"},
|
|
{8388607, "83b30cf4fb5195b04a937727ae379cf3d06673bf8f77947f6a92858536e8369c"},
|
|
{8388608, "e08b3ba1f538804075c5f939accdeaa9efc7b5c01865c94a41e78ca6550a88e7"},
|
|
{8388609, "02c8a4aefc2bfc9036f89a7098001865885938ca580e5c9e5db672385edd303c"},
|
|
} {
|
|
d := dbhash.New()
|
|
var toWrite int
|
|
for toWrite = test.n; toWrite >= chunk; toWrite -= chunk {
|
|
n, err := d.Write(data)
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, chunk, n)
|
|
}
|
|
n, err := d.Write(data[:toWrite])
|
|
assert.Nil(t, err)
|
|
assert.Equal(t, toWrite, n)
|
|
got := hex.EncodeToString(d.Sum(nil))
|
|
assert.Equal(t, test.want, got, fmt.Sprintf("when testing length %d", n))
|
|
|
|
}
|
|
}
|
|
|
|
func TestHashChunk16M(t *testing.T) { testChunk(t, 16*1024*1024) }
|
|
func TestHashChunk8M(t *testing.T) { testChunk(t, 8*1024*1024) }
|
|
func TestHashChunk4M(t *testing.T) { testChunk(t, 4*1024*1024) }
|
|
func TestHashChunk2M(t *testing.T) { testChunk(t, 2*1024*1024) }
|
|
func TestHashChunk1M(t *testing.T) { testChunk(t, 1*1024*1024) }
|
|
func TestHashChunk64k(t *testing.T) { testChunk(t, 64*1024) }
|
|
func TestHashChunk32k(t *testing.T) { testChunk(t, 32*1024) }
|
|
func TestHashChunk2048(t *testing.T) { testChunk(t, 2048) }
|
|
func TestHashChunk2047(t *testing.T) { testChunk(t, 2047) }
|
|
|
|
func TestSumCalledTwice(t *testing.T) {
|
|
d := dbhash.New()
|
|
assert.NotPanics(t, func() { d.Sum(nil) })
|
|
d.Reset()
|
|
assert.NotPanics(t, func() { d.Sum(nil) })
|
|
assert.NotPanics(t, func() { d.Sum(nil) })
|
|
_, _ = d.Write([]byte{1})
|
|
assert.Panics(t, func() { d.Sum(nil) })
|
|
}
|
|
|
|
func TestSize(t *testing.T) {
|
|
d := dbhash.New()
|
|
assert.Equal(t, 32, d.Size())
|
|
}
|
|
|
|
func TestBlockSize(t *testing.T) {
|
|
d := dbhash.New()
|
|
assert.Equal(t, 64, d.BlockSize())
|
|
}
|
|
|
|
func TestSum(t *testing.T) {
|
|
assert.Equal(t,
|
|
[64]byte{
|
|
0x1c, 0xd6, 0xef, 0x71, 0xe6, 0xe0, 0xff, 0x46,
|
|
0xad, 0x26, 0x09, 0xd4, 0x03, 0xdc, 0x3f, 0xee,
|
|
0x24, 0x44, 0x17, 0x08, 0x9a, 0xa4, 0x46, 0x12,
|
|
0x45, 0xa4, 0xe4, 0xfe, 0x23, 0xa5, 0x5e, 0x42,
|
|
},
|
|
dbhash.Sum([]byte{'A'}),
|
|
)
|
|
}
|