mirror of
https://github.com/luxfi/crypto.git
synced 2026-07-27 01:54:50 +00:00
75 lines
1.5 KiB
Go
75 lines
1.5 KiB
Go
// Copyright (C) 2020-2025, Lux Industries Inc. All rights reserved.
|
|
// See the file LICENSE for licensing terms.
|
|
|
|
package cb58
|
|
|
|
import (
|
|
"bytes"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
// Test encoding bytes to a string and decoding back to bytes
|
|
func TestEncodeDecode(t *testing.T) {
|
|
require := require.New(t)
|
|
|
|
type test struct {
|
|
bytes []byte
|
|
str string
|
|
}
|
|
|
|
id := [32]byte{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32}
|
|
tests := []test{
|
|
{
|
|
nil,
|
|
"45PJLL",
|
|
},
|
|
{
|
|
[]byte{},
|
|
"45PJLL",
|
|
},
|
|
{
|
|
[]byte{0},
|
|
"1c7hwa",
|
|
},
|
|
{
|
|
[]byte{0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 255},
|
|
"1NVSVezva3bAtJesnUj",
|
|
},
|
|
{
|
|
id[:],
|
|
"SkB92YpWm4Q2ijQHH34cqbKkCZWszsiQgHVjtNeFF2HdvDQU",
|
|
},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
// Encode the bytes
|
|
strResult, err := Encode(test.bytes)
|
|
require.NoError(err)
|
|
// Make sure the string repr. is what we expected
|
|
require.Equal(test.str, strResult)
|
|
// Decode the string
|
|
bytesResult, err := Decode(strResult)
|
|
require.NoError(err)
|
|
// Make sure we got the same bytes back
|
|
require.True(bytes.Equal(test.bytes, bytesResult))
|
|
}
|
|
}
|
|
|
|
func FuzzEncodeDecode(f *testing.F) {
|
|
f.Fuzz(func(t *testing.T, data []byte) {
|
|
require := require.New(t)
|
|
|
|
// Encode bytes to string
|
|
dataStr, err := Encode(data)
|
|
require.NoError(err)
|
|
|
|
// Decode string to bytes
|
|
gotData, err := Decode(dataStr)
|
|
require.NoError(err)
|
|
|
|
require.Equal(data, gotData)
|
|
})
|
|
}
|