mirror of
https://github.com/status-im/keycard-go.git
synced 2025-01-20 16:59:09 +00:00
36 lines
597 B
Go
36 lines
597 B
Go
|
package derivationpath
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"testing"
|
||
|
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
)
|
||
|
|
||
|
func TestEncode(t *testing.T) {
|
||
|
scenarios := []struct {
|
||
|
path []uint32
|
||
|
expectedPath string
|
||
|
}{
|
||
|
{
|
||
|
path: []uint32{},
|
||
|
expectedPath: "m",
|
||
|
},
|
||
|
{
|
||
|
path: []uint32{0, 1, 2},
|
||
|
expectedPath: "m/0/1/2",
|
||
|
},
|
||
|
{
|
||
|
path: []uint32{hardenedStart + 10, 1, 2},
|
||
|
expectedPath: "m/10'/1/2",
|
||
|
},
|
||
|
}
|
||
|
|
||
|
for i, s := range scenarios {
|
||
|
t.Run(fmt.Sprintf("scenario %d", i), func(t *testing.T) {
|
||
|
path := Encode(s.path)
|
||
|
assert.Equal(t, s.expectedPath, path)
|
||
|
})
|
||
|
}
|
||
|
}
|