forked from TrueCloudLab/frostfs-api-go
36 lines
685 B
Go
36 lines
685 B
Go
|
package sessiontest
|
||
|
|
||
|
import (
|
||
|
"math/rand"
|
||
|
|
||
|
"github.com/google/uuid"
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/owner"
|
||
|
"github.com/nspcc-dev/neofs-api-go/pkg/session"
|
||
|
crypto "github.com/nspcc-dev/neofs-crypto"
|
||
|
"github.com/nspcc-dev/neofs-crypto/test"
|
||
|
)
|
||
|
|
||
|
// Generate returns random session.Token.
|
||
|
func Generate() *session.Token {
|
||
|
tok := session.NewToken()
|
||
|
|
||
|
uid, err := uuid.New().MarshalBinary()
|
||
|
if err != nil {
|
||
|
panic(err)
|
||
|
}
|
||
|
|
||
|
w := new(owner.NEO3Wallet)
|
||
|
rand.Read(w.Bytes())
|
||
|
|
||
|
ownerID := owner.NewID()
|
||
|
ownerID.SetNeo3Wallet(w)
|
||
|
|
||
|
keyBin := crypto.MarshalPublicKey(&test.DecodeKey(0).PublicKey)
|
||
|
|
||
|
tok.SetID(uid)
|
||
|
tok.SetOwnerID(ownerID)
|
||
|
tok.SetSessionKey(keyBin)
|
||
|
|
||
|
return tok
|
||
|
}
|