frostfs-api-go/pkg/owner/id_test.go
Leonard Lyubich 524280a5e8 [#140] sdk: Refactor reference types
Refactor v2-compatible reference types to be wrappers over corresponding
types from v2.

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-09-18 10:45:11 +03:00

23 lines
330 B
Go

package owner
import (
"crypto/rand"
"testing"
"github.com/stretchr/testify/require"
)
func TestIDV2(t *testing.T) {
id := NewID()
wallet := new(NEO3Wallet)
_, err := rand.Read(wallet.Bytes())
require.NoError(t, err)
id.SetNeo3Wallet(wallet)
idV2 := id.ToV2()
require.Equal(t, wallet.Bytes(), idV2.GetValue())
}