2022-05-12 19:37:38 +00:00
|
|
|
package native
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"math"
|
|
|
|
"time"
|
|
|
|
|
2023-03-07 14:53:17 +00:00
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/client"
|
|
|
|
frostfsecdsa "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/crypto/ecdsa"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-sdk-go/session"
|
2022-05-12 19:37:38 +00:00
|
|
|
"github.com/google/uuid"
|
|
|
|
"github.com/nspcc-dev/neo-go/pkg/crypto/keys"
|
|
|
|
"go.k6.io/k6/js/modules"
|
|
|
|
"go.k6.io/k6/metrics"
|
|
|
|
)
|
|
|
|
|
|
|
|
// RootModule is the global module object type. It is instantiated once per test
|
2022-12-29 14:52:55 +00:00
|
|
|
// run and will be used to create k6/x/frostfs/native module instances for each VU.
|
2022-05-12 19:37:38 +00:00
|
|
|
type RootModule struct{}
|
|
|
|
|
|
|
|
// Native represents an instance of the module for every VU.
|
|
|
|
type Native struct {
|
|
|
|
vu modules.VU
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ensure the interfaces are implemented correctly.
|
|
|
|
var (
|
|
|
|
_ modules.Instance = &Native{}
|
|
|
|
_ modules.Module = &RootModule{}
|
|
|
|
|
2022-11-29 13:08:58 +00:00
|
|
|
objPutTotal, objPutFails, objPutDuration *metrics.Metric
|
|
|
|
objGetTotal, objGetFails, objGetDuration *metrics.Metric
|
|
|
|
objDeleteTotal, objDeleteFails, objDeleteDuration *metrics.Metric
|
|
|
|
cnrPutTotal, cnrPutFails, cnrPutDuration *metrics.Metric
|
2022-05-12 19:37:38 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2022-12-29 14:52:55 +00:00
|
|
|
modules.Register("k6/x/frostfs/native", new(RootModule))
|
2022-05-12 19:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewModuleInstance implements the modules.Module interface and returns
|
|
|
|
// a new instance for each VU.
|
|
|
|
func (r *RootModule) NewModuleInstance(vu modules.VU) modules.Instance {
|
|
|
|
mi := &Native{vu: vu}
|
|
|
|
return mi
|
|
|
|
}
|
|
|
|
|
|
|
|
// Exports implements the modules.Instance interface and returns the exports
|
|
|
|
// of the JS module.
|
|
|
|
func (n *Native) Exports() modules.Exports {
|
|
|
|
return modules.Exports{Default: n}
|
|
|
|
}
|
|
|
|
|
2023-07-07 10:16:54 +00:00
|
|
|
func (n *Native) Connect(endpoint, hexPrivateKey string, dialTimeout, streamTimeout int, prepareLocally bool) (*Client, error) {
|
2022-05-12 19:37:38 +00:00
|
|
|
var (
|
|
|
|
cli client.Client
|
|
|
|
pk *keys.PrivateKey
|
|
|
|
err error
|
|
|
|
)
|
|
|
|
|
|
|
|
pk, err = keys.NewPrivateKey()
|
2022-06-17 12:50:24 +00:00
|
|
|
if len(hexPrivateKey) != 0 {
|
|
|
|
pk, err = keys.NewPrivateKeyFromHex(hexPrivateKey)
|
2022-05-12 19:37:38 +00:00
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid key: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var prmInit client.PrmInit
|
2023-03-07 14:53:17 +00:00
|
|
|
prmInit.ResolveFrostFSFailures()
|
2022-05-12 19:37:38 +00:00
|
|
|
prmInit.SetDefaultPrivateKey(pk.PrivateKey)
|
|
|
|
cli.Init(prmInit)
|
|
|
|
|
|
|
|
var prmDial client.PrmDial
|
|
|
|
prmDial.SetServerURI(endpoint)
|
2022-12-21 10:04:08 +00:00
|
|
|
|
2023-01-10 07:29:50 +00:00
|
|
|
if dialTimeout > 0 {
|
|
|
|
prmDial.SetTimeout(time.Duration(dialTimeout) * time.Second)
|
|
|
|
}
|
|
|
|
|
|
|
|
if streamTimeout > 0 {
|
|
|
|
prmDial.SetStreamTimeout(time.Duration(streamTimeout) * time.Second)
|
|
|
|
}
|
2022-05-12 19:37:38 +00:00
|
|
|
|
2023-05-23 08:16:59 +00:00
|
|
|
err = cli.Dial(n.vu.Context(), prmDial)
|
2022-05-12 19:37:38 +00:00
|
|
|
if err != nil {
|
2023-01-11 16:43:22 +00:00
|
|
|
return nil, fmt.Errorf("dial endpoint: %s %w", endpoint, err)
|
2022-05-12 19:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// generate session token
|
|
|
|
exp := uint64(math.MaxUint64)
|
|
|
|
var prmSessionCreate client.PrmSessionCreate
|
|
|
|
prmSessionCreate.SetExp(exp)
|
|
|
|
sessionResp, err := cli.SessionCreate(n.vu.Context(), prmSessionCreate)
|
|
|
|
if err != nil {
|
2023-01-11 16:43:22 +00:00
|
|
|
return nil, fmt.Errorf("dial endpoint: %s %w", endpoint, err)
|
2022-05-12 19:37:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
var id uuid.UUID
|
|
|
|
err = id.UnmarshalBinary(sessionResp.ID())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("session token: %w", err)
|
|
|
|
}
|
|
|
|
|
2022-12-29 14:52:55 +00:00
|
|
|
var key frostfsecdsa.PublicKey
|
2022-05-12 19:37:38 +00:00
|
|
|
err = key.Decode(sessionResp.PublicKey())
|
|
|
|
if err != nil {
|
|
|
|
return nil, fmt.Errorf("invalid public session key: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var tok session.Object
|
|
|
|
|
|
|
|
tok.SetID(id)
|
|
|
|
tok.SetAuthKey(&key)
|
|
|
|
tok.SetExp(exp)
|
|
|
|
|
|
|
|
// register metrics
|
|
|
|
registry := metrics.NewRegistry()
|
2022-12-29 14:52:55 +00:00
|
|
|
objPutTotal, _ = registry.NewMetric("frostfs_obj_put_total", metrics.Counter)
|
|
|
|
objPutFails, _ = registry.NewMetric("frostfs_obj_put_fails", metrics.Counter)
|
|
|
|
objPutDuration, _ = registry.NewMetric("frostfs_obj_put_duration", metrics.Trend, metrics.Time)
|
2022-05-12 19:37:38 +00:00
|
|
|
|
2022-12-29 14:52:55 +00:00
|
|
|
objGetTotal, _ = registry.NewMetric("frostfs_obj_get_total", metrics.Counter)
|
|
|
|
objGetFails, _ = registry.NewMetric("frostfs_obj_get_fails", metrics.Counter)
|
|
|
|
objGetDuration, _ = registry.NewMetric("frostfs_obj_get_duration", metrics.Trend, metrics.Time)
|
2022-05-12 19:37:38 +00:00
|
|
|
|
2022-12-29 14:52:55 +00:00
|
|
|
objDeleteTotal, _ = registry.NewMetric("frostfs_obj_delete_total", metrics.Counter)
|
|
|
|
objDeleteFails, _ = registry.NewMetric("frostfs_obj_delete_fails", metrics.Counter)
|
|
|
|
objDeleteDuration, _ = registry.NewMetric("frostfs_obj_delete_duration", metrics.Trend, metrics.Time)
|
2022-11-29 13:08:58 +00:00
|
|
|
|
2022-12-29 14:52:55 +00:00
|
|
|
cnrPutTotal, _ = registry.NewMetric("frostfs_cnr_put_total", metrics.Counter)
|
|
|
|
cnrPutFails, _ = registry.NewMetric("frostfs_cnr_put_fails", metrics.Counter)
|
|
|
|
cnrPutDuration, _ = registry.NewMetric("frostfs_cnr_put_duration", metrics.Trend, metrics.Time)
|
2022-06-17 12:50:24 +00:00
|
|
|
|
2022-05-12 19:37:38 +00:00
|
|
|
return &Client{
|
2023-07-07 10:16:54 +00:00
|
|
|
vu: n.vu,
|
|
|
|
key: pk.PrivateKey,
|
|
|
|
tok: tok,
|
|
|
|
cli: &cli,
|
|
|
|
prepareLocally: prepareLocally,
|
2022-05-12 19:37:38 +00:00
|
|
|
}, nil
|
|
|
|
}
|