mirror of
https://github.com/rclone/rclone.git
synced 2025-04-23 04:34:13 +08: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
51 lines
933 B
Go
51 lines
933 B
Go
package random
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestStringLength(t *testing.T) {
|
|
for i := range 100 {
|
|
s := String(i)
|
|
assert.Equal(t, i, len(s))
|
|
}
|
|
}
|
|
|
|
func TestStringDuplicates(t *testing.T) {
|
|
seen := map[string]bool{}
|
|
for range 100 {
|
|
s := String(8)
|
|
assert.False(t, seen[s])
|
|
assert.Equal(t, 8, len(s))
|
|
seen[s] = true
|
|
}
|
|
}
|
|
|
|
func TestPasswordLength(t *testing.T) {
|
|
for i := 0; i <= 128; i++ {
|
|
s, err := Password(i)
|
|
require.NoError(t, err)
|
|
// expected length is number of bytes rounded up
|
|
expected := i / 8
|
|
if i%8 != 0 {
|
|
expected++
|
|
}
|
|
// then converted to base 64
|
|
expected = (expected*8 + 5) / 6
|
|
assert.Equal(t, expected, len(s), i)
|
|
}
|
|
}
|
|
|
|
func TestPasswordDuplicates(t *testing.T) {
|
|
seen := map[string]bool{}
|
|
for range 100 {
|
|
s, err := Password(64)
|
|
require.NoError(t, err)
|
|
assert.False(t, seen[s])
|
|
seen[s] = true
|
|
}
|
|
}
|